chore: update node to 12.22.1 and drop support for node 8

This commit is contained in:
Jim Jenkins 2021-05-11 15:48:34 -04:00
parent c9afd4d7cc
commit 032b6e6cdb
4 changed files with 3835 additions and 4093 deletions

2
.nvmrc
View file

@ -1 +1 @@
12.14.0
12.22.1

View file

@ -2,11 +2,10 @@ language: node_js
node_js:
- "node" # Latest node version
- "lts/*" # Latest LTS version
- "14"
- "12"
- "10"
- "8"
before_install: npm i -g npm@6.13.4
before_install: npm i -g npm@6.14.12
script:
- npm run commitlint

7885
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -5,7 +5,7 @@
"main": "src/js/index.js",
"scripts": {
"prepare": "grunt build",
"test": "check-node-version --npm 6.13.4 && ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- -R spec 'tests/**/*.test.js'",
"test": "check-node-version --npm 6.14.12 && ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- -R spec 'tests/**/*.test.js'",
"commitlint": "commitlint --from ad805e8"
},
"author": "Jeremy Thomerson",