Skip to content
This repository has been archived by the owner on Dec 12, 2022. It is now read-only.

Commit

Permalink
Switch istanbul to babel-istanbul
Browse files Browse the repository at this point in the history
jbinto committed Jan 9, 2016
1 parent ca7617c commit f2587e0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -15,11 +15,11 @@
"start": "babel-node index.js",
"test": "npm run test:coverage",
"test:nocoverage": "mocha --compilers js:babel-core/register --recursive --require ./test/test_helper.js",
"test:coverage": "babel-node ./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha -- --recursive --require ./test/test_helper.js",
"test:coverage": "babel-node ./node_modules/.bin/babel-istanbul cover ./node_modules/mocha/bin/_mocha -- --recursive --require ./test/test_helper.js",
"test:watch": "npm run test:nocoverage -- --watch",
"lint": "eslint src/ test/ || true",
"repl": "babel-node",
"coveralls": "rm -rf ./coverage/rerun; istanbul report --root coverage --dir coverage/rerun; cat ./coverage/rerun/lcov.info | ./node_modules/.bin/coveralls"
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"repository": {
"type": "git",
@@ -40,6 +40,7 @@
"devDependencies": {
"babel-cli": "^6.4.0",
"babel-core": "^6.3.13",
"babel-istanbul": "^0.6.0",
"babel-preset-es2015": "^6.3.13",
"chai": "^3.4.1",
"chai-immutable": "^1.5.3",
@@ -48,7 +49,6 @@
"eslint": "^1.10.3",
"eslint-config-airbnb": "^2.0.0",
"eslint-plugin-react": "^3.11.3",
"istanbul": "^1.0.0-alpha",
"lodash": "^3.10.1",
"mocha": "^2.3.4",
"shuffle-array": "^0.1.1"

0 comments on commit f2587e0

Please sign in to comment.