Skip to content

Commit

Permalink
Fix: stop using ESLint under Node 0.x in Travis CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mysticatea committed Jul 3, 2016
1 parent fd9369b commit 37e53ba
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"clean": "rimraf coverage",
"build": "node scripts/generate-index.js",
"test": "run-s -sn clean build test:*",
"test:lint": "eslint lib tests/lib index.js",
"test:lint": "if-node-version \">=4\" eslint lib tests/lib index.js",
"test:mocha": "istanbul cover node_modules/mocha/bin/_mocha -- tests/lib/**/*.js --reporter progress",
"coveralls": "cat coverage/lcov.info | coveralls"
},
Expand All @@ -28,12 +28,13 @@
"minimatch": "^3.0.2",
"object-assign": "^4.0.1",
"resolve": "^1.1.7",
"semver": "5.1.0"
"semver": "5.2.0"
},
"devDependencies": {
"coveralls": "^2.11.4",
"eslint": "^3.0.0",
"eslint-config-mysticatea": "^5.0.0",
"if-node-version": "^0.1.0",
"istanbul": "^0.4.0",
"mocha": "^2.3.4",
"npm-run-all": "^2.0.0",
Expand Down

0 comments on commit 37e53ba

Please sign in to comment.