Skip to content

Commit

Permalink
chore(ci): use Node 6 on Travis
Browse files Browse the repository at this point in the history
  • Loading branch information
bahmutov committed May 30, 2017
1 parent 55f4af2 commit a262694
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 15 deletions.
6 changes: 2 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,9 @@ cache:
directories:
- node_modules
notifications:
email: false
email: true
node_js:
- '4'
before_install:
- npm i -g npm@^2.0.0
- '6'
before_script:
- npm prune
script:
Expand Down
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,6 @@
"contributors": [
"Eric Wooley <[email protected]>"
],
"files": [
"*.js",
"!Gruntfile.js",
"src"
],
"dependencies": {
"espree": "3.0.0-alpha-1",
"quote": "0.4.0"
Expand All @@ -53,14 +48,19 @@
"engines": {
"node": "> 0.10.*"
},
"files": [
"*.js",
"!Gruntfile.js",
"src"
],
"homepage": "https://github.com/bahmutov/eslint-rules",
"keywords": [
"custom",
"eslint",
"lint",
"javascript",
"lint",
"rule",
"rules",
"custom"
"rules"
],
"license": "MIT",
"main": "index.js",
Expand All @@ -70,11 +70,11 @@
},
"scripts": {
"build": "grunt",
"test": "gt test/test.js test/is-constant.js",
"no-long-files": "eslint --rulesdir . -c test/long-file.json test/long-file.js",
"commit": "git-issues && commit-wizard",
"issues": "git-issues",
"no-long-files": "eslint --rulesdir . -c test/long-file.json test/long-file.js",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";"
"size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";",
"test": "gt test/test.js test/is-constant.js"
}
}

0 comments on commit a262694

Please sign in to comment.