Skip to content

Commit 81ca8e4

Browse files
committed
feat: Support ESLint 7.x
BREAKING CHANGE: Requires Node@^10.12.x || 12.x BREAKING CHANGE: Requires ESLint@^7.x
1 parent 93d082c commit 81ca8e4

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.travis.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
language: node_js
22
node_js:
3-
- '6'
4-
- '8'
5-
- '9'
6-
- '10'
7-
- '11'
3+
- 10.12
4+
- 10
5+
- 12.0
6+
- 12
7+
- 14

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -34,19 +34,19 @@
3434
"chai": "^4.1.0",
3535
"dirty-chai": "^2.0.1",
3636
"escope": "^3.6.0",
37-
"eslint": "^7.0.0-alpha.3",
37+
"eslint": "^7.0.0",
3838
"eslint-config-not-an-aardvark": "^2.1.0",
3939
"eslint-plugin-node": "^11.1.0",
4040
"eslint-plugin-self": "^1.0.1",
41-
"espree": "^6.2.1",
41+
"espree": "^7.0.0",
4242
"estraverse": "^5.0.0",
4343
"lodash": "^4.17.2",
4444
"mocha": "^7.1.1"
4545
},
4646
"peerDependencies": {
47-
"eslint": ">=5.0.0"
47+
"eslint": "^7.0.0"
4848
},
4949
"engines": {
50-
"node": "^6.14.0 || ^8.10.0 || >=9.10.0"
50+
"node": "^10.12.0 || >=12.0.0"
5151
}
5252
}

0 commit comments

Comments
 (0)