Skip to content

Commit 7889a0a

Browse files
committed
Only support Node versions in LTS
1 parent 4673524 commit 7889a0a

File tree

2 files changed

+9
-15
lines changed

2 files changed

+9
-15
lines changed

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
language: node_js
22
node_js:
3+
- "6"
34
- "8"
5+
- "10"
46
after_success:
57
- npm run coveralls

package.json

Lines changed: 7 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,18 @@
33
"version": "4.0.0",
44
"author": "Omer Ganim <ganimomer@gmail.com>",
55
"description": "Lodash specific linting rules for ESLint",
6-
"main": "lib/index.js",
6+
"main": "src/index.js",
77
"scripts": {
88
"coveralls": "nyc report --reporter=text-lcov | coveralls",
9-
"clean": "rimraf lib",
10-
"lint": "eslint ./",
9+
"lint": "eslint .",
1110
"test": "npm run lint && npm run unit-test",
12-
"unit-test": "cross-env NODE_ENV=test nyc mocha tests/**/*.js --reporter=dot",
13-
"babel": "babel src -d lib",
14-
"build": "npm run clean && npm run babel",
15-
"prepublish": "npm run build"
11+
"unit-test": "cross-env NODE_ENV=test nyc mocha tests/**/*.js --reporter=dot"
1612
},
1713
"files": [
1814
"LICENSE",
1915
"README.md",
20-
"lib"
16+
"src",
17+
"docs"
2118
],
2219
"repository": {
2320
"type": "git",
@@ -32,10 +29,6 @@
3229
"lodash": "4.17.11"
3330
},
3431
"devDependencies": {
35-
"babel-cli": "6.26.0",
36-
"babel-plugin-istanbul": "5.1.0",
37-
"babel-preset-es2015": "6.24.1",
38-
"babel-register": "6.26.0",
3932
"coveralls": "3.0.2",
4033
"cross-env": "5.2.0",
4134
"eslint": "5.9.0",
@@ -44,11 +37,10 @@
4437
"eslint-traverser": "1.5.2",
4538
"istanbul": "^0.4.4",
4639
"mocha": "5.2.0",
47-
"nyc": "13.1.0",
48-
"rimraf": "2.6.2"
40+
"nyc": "13.1.0"
4941
},
5042
"engines": {
51-
"node": ">=0.12.0"
43+
"node": ">=6"
5244
},
5345
"keywords": [
5446
"eslint",

0 commit comments

Comments
 (0)