nodejs 12 package.json update

This commit is contained in:
Victor Baranov 2019-11-24 23:07:39 +03:00
parent daa90360e3
commit 7446039f3c
4 changed files with 1770 additions and 560 deletions

2
.gitignore vendored
View File

@ -1,3 +1,3 @@
**/.DS_Store
/node_modules
/coverage
.nyc_output/

View File

@ -1,9 +1,9 @@
language: node_js
node_js:
- "8"
- "12"
cache:
directories:
- node_modules
script:
- npm run lint && npm run test && npm run coveralls
- npm run lint && npm run coveralls

2310
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -7,14 +7,14 @@
"test": "test"
},
"dependencies": {
"chai": "^4.1.2"
"chai": "^4.2.0"
},
"devDependencies": {
"coveralls": "^3.0.2",
"eslint": "^5.8.0",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0"
"coveralls": "^3.0.8",
"eslint": "^6.7.0",
"mocha": "^6.2.2",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^14.1.1"
},
"homepage": "https://github.com/poanetwork/eth-net-props#readme",
"repository": {
@ -24,7 +24,7 @@
"scripts": {
"test": "mocha",
"lint": "./node_modules/.bin/eslint .",
"coveralls": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
},
"keywords": [
"ethereum"