Skip to content

Commit

Permalink
Merge pull request ethjs#4 from legobeat/deprecate-nodev6
Browse files Browse the repository at this point in the history
deprecate nodejs < v8.17, npm < v6
  • Loading branch information
legobeat authored Dec 15, 2022
2 parents 6051bda + ec51d11 commit c9e5127
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docs/developer-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ After build staging it is the `lib` folder which actually gets published to NPM.
## NPM/Node Version Requirements

`ethjs` requires you have:
- `nodejs` -v 6.5.0+
- `npm` -v 3.0+
- `nodejs` -v 8.17.0+
- `npm` -v 6.0+

This is a requirement to run, test, lint and build this module.

Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@
"webpack": "2.1.0-beta.15"
},
"engines": {
"node": ">=6.5.0",
"npm": ">=3"
"node": ">=8.17.0",
"npm": ">=6"
},
"eslintConfig": {
"parser": "babel-eslint",
Expand Down Expand Up @@ -209,7 +209,7 @@
"lint:js": "npm run lint:eslint -- . ",
"lint:staged": "lint-staged",
"prebuild": "npm run build:clean && npm run test",
"prepublish": "npm run build",
"prepare": "npm run build",
"pretest": "npm run lint",
"release": "npmpub",
"start": "npm test",
Expand Down

0 comments on commit c9e5127

Please sign in to comment.