Skip to content

Commit

Permalink
chore: Drop support for node < 10
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Pact-js no longer officially supports node less than 10 (10 is only supported by nodejs for another few months anyway, so I doubt this will affect many users)
  • Loading branch information
TimothyJones committed May 21, 2021
1 parent 672236a commit 328de85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"clean:native": "rimraf native/target",
"coverage": "nyc report --reporter=lcov",
"dist": "tsc && copyfiles package.json ./dist",
"lint": "eslint --config .eslintrc.json \"{src,test}/**/*.ts\"",
"lint": "eslint --config .eslintrc.json \"{src,test}/**/*.ts'",
"lint:fix": "npm run lint -- --fix",
"format:base": "prettier \"{src,test,examples}/**/*.{ts,js}\"",
"format:fix": "npm run format:base -- --write",
Expand All @@ -31,7 +31,7 @@
"url": "git+https://github.com/pact-foundation/pact-js.git"
},
"engines": {
"node": ">=6"
"node": ">=10"
},
"keywords": [
"pact",
Expand Down

0 comments on commit 328de85

Please sign in to comment.