File tree Expand file tree Collapse file tree 3 files changed +6
-20
lines changed Expand file tree Collapse file tree 3 files changed +6
-20
lines changed Original file line number Diff line number Diff line change 1
- sudo : false
2
-
3
1
language : node_js
4
2
node_js :
5
- - " 6.5"
6
3
- " 8"
7
4
- " 10"
8
5
- " 12"
9
6
10
- script :
11
- # eslint and nyc don't support Node 6.
12
- - |
13
- if [ $TRAVIS_NODE_VERSION != "6.5" ]; then
14
- npm test
15
- else
16
- npm run -s test:node6
17
- fi
18
-
19
7
after_success :
20
- - |
21
- if [ $TRAVIS_NODE_VERSION != "6.5" ]; then
22
- npm run coveralls
23
- fi
8
+ - npm run coveralls
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ The regular expression parser for ECMAScript.
14
14
$ npm install regexpp
15
15
```
16
16
17
- - require Node.js 6.5.0 or newer.
17
+ - require Node.js 8 or newer.
18
18
19
19
## 📖 Usage
20
20
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " regexpp" ,
3
3
"version" : " 2.0.1" ,
4
- "description" : " Regular expression parser for ECMAScript 2018 ." ,
4
+ "description" : " Regular expression parser for ECMAScript." ,
5
5
"engines" : {
6
- "node" : " >=6.5.0 "
6
+ "node" : " >=8 "
7
7
},
8
8
"main" : " index" ,
9
9
"files" : [
39
39
"lint" : " eslint scripts src test --ext .ts" ,
40
40
"pretest" : " run-s build lint" ,
41
41
"test" : " nyc _mocha \" test/*.ts\" --reporter dot --timeout 10000" ,
42
- "test:node6" : " _mocha \" test/*.ts\" --require ts-node/register --reporter dot --timeout 10000" ,
43
42
"update:test" : " ts-node scripts/update-fixtures.ts" ,
44
43
"update:ids" : " ts-node scripts/update-unicode-ids.ts" ,
45
44
"preversion" : " npm test" ,
67
66
" es2016" ,
68
67
" es2017" ,
69
68
" es2018" ,
69
+ " es2019" ,
70
+ " es2020" ,
70
71
" annexB"
71
72
],
72
73
"author" : " Toru Nagashima (https://github.com/mysticatea)" ,
You can’t perform that action at this time.
0 commit comments