Skip to content

Commit

Permalink
Restrict supported Node.js versions to ^8.17
Browse files Browse the repository at this point in the history
- deprecate npm <6
  • Loading branch information
legobeat committed Nov 15, 2023
1 parent 8149c73 commit 0cea4e7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/developer-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,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
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,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

0 comments on commit 0cea4e7

Please sign in to comment.