Skip to content

Commit c9e5127

Browse files
authored
Merge pull request ethjs#4 from legobeat/deprecate-nodev6
deprecate nodejs < v8.17, npm < v6
2 parents 6051bda + ec51d11 commit c9e5127

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

docs/developer-guide.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@ After build staging it is the `lib` folder which actually gets published to NPM.
7575
## NPM/Node Version Requirements
7676

7777
`ethjs` requires you have:
78-
- `nodejs` -v 6.5.0+
79-
- `npm` -v 3.0+
78+
- `nodejs` -v 8.17.0+
79+
- `npm` -v 6.0+
8080

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

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,8 @@
132132
"webpack": "2.1.0-beta.15"
133133
},
134134
"engines": {
135-
"node": ">=6.5.0",
136-
"npm": ">=3"
135+
"node": ">=8.17.0",
136+
"npm": ">=6"
137137
},
138138
"eslintConfig": {
139139
"parser": "babel-eslint",
@@ -209,7 +209,7 @@
209209
"lint:js": "npm run lint:eslint -- . ",
210210
"lint:staged": "lint-staged",
211211
"prebuild": "npm run build:clean && npm run test",
212-
"prepublish": "npm run build",
212+
"prepare": "npm run build",
213213
"pretest": "npm run lint",
214214
"release": "npmpub",
215215
"start": "npm test",

0 commit comments

Comments
 (0)