-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Simplify to enumerables + symbols and inherit statics (#24)
- Loading branch information
Showing
5 changed files
with
83 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
sudo: false | ||
language: node_js | ||
node_js: | ||
- "8" | ||
- "6" | ||
- "4" | ||
- "0.12" | ||
- "0.10" | ||
after_success: | ||
- "npm run cover" | ||
- "cat artifacts/lcov.info | ./node_modules/coveralls/bin/coveralls.js" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,17 +10,25 @@ | |
"scripts": { | ||
"cover": "node node_modules/istanbul/lib/cli.js cover --dir artifacts -- ./node_modules/mocha/bin/_mocha tests/unit/ --recursive --compilers js:babel/register --reporter spec", | ||
"lint": "eslint ./index.js", | ||
"test": "mocha tests/unit/ --recursive --compilers js:babel/register --reporter spec" | ||
"test": "mocha tests/unit/ --recursive --compilers js:babel-register --reporter spec" | ||
}, | ||
"author": "Michael Ridgway <[email protected]>", | ||
"license": "BSD-3-Clause", | ||
"devDependencies": { | ||
"babel": "^5.0.7", | ||
"chai": "^3.0.0", | ||
"babel": "^6.23.0", | ||
"babel-cli": "^6.24.1", | ||
"babel-plugin-transform-class-properties": "^6.24.1", | ||
"babel-plugin-transform-react-jsx-source": "^6.22.0", | ||
"babel-preset-es2015": "^6.24.1", | ||
"babel-preset-es2016": "^6.24.1", | ||
"babel-preset-react": "^6.24.1", | ||
"babel-register": "^6.24.1", | ||
"chai": "^4.0.1", | ||
"coveralls": "^2.11.1", | ||
"create-react-class": "^15.5.3", | ||
"eslint": "^3.8.0", | ||
"istanbul": "^0.3.2", | ||
"mocha": "^2.0.1", | ||
"istanbul": "^0.4.5", | ||
"mocha": "^3.4.2", | ||
"pre-commit": "^1.0.7", | ||
"react": "^15.0.0" | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"presets": ["es2015", "es2016", "react"], | ||
"plugins": [ | ||
"transform-class-properties" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters