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-
31language : node_js
42node_js :
5- - " 6.5"
63 - " 8"
74 - " 10"
85 - " 12"
96
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-
197after_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.
1414$ npm install regexpp
1515```
1616
17- - require Node.js 6.5.0 or newer.
17+ - require Node.js 8 or newer.
1818
1919## 📖 Usage
2020
Original file line number Diff line number Diff line change 11{
22 "name" : " regexpp" ,
33 "version" : " 2.0.1" ,
4- "description" : " Regular expression parser for ECMAScript 2018 ." ,
4+ "description" : " Regular expression parser for ECMAScript." ,
55 "engines" : {
6- "node" : " >=6.5.0 "
6+ "node" : " >=8 "
77 },
88 "main" : " index" ,
99 "files" : [
3939 "lint" : " eslint scripts src test --ext .ts" ,
4040 "pretest" : " run-s build lint" ,
4141 "test" : " nyc _mocha \" test/*.ts\" --reporter dot --timeout 10000" ,
42- "test:node6" : " _mocha \" test/*.ts\" --require ts-node/register --reporter dot --timeout 10000" ,
4342 "update:test" : " ts-node scripts/update-fixtures.ts" ,
4443 "update:ids" : " ts-node scripts/update-unicode-ids.ts" ,
4544 "preversion" : " npm test" ,
6766 " es2016" ,
6867 " es2017" ,
6968 " es2018" ,
69+ " es2019" ,
70+ " es2020" ,
7071 " annexB"
7172 ],
7273 "author" : " Toru Nagashima (https://github.com/mysticatea)" ,
You can’t perform that action at this time.
0 commit comments