Skip to content

Commit 284967f

Browse files
committed
package.json: Restrict versions of dependencies that fail on node v12 and v14 due to problems with ?? operator
1 parent 15f272b commit 284967f

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"homepage": "https://github.com/ethereum/solc-js#readme",
4848
"dependencies": {
4949
"command-exists": ">=1.1.0",
50-
"commander": ">=8.0.0 <13.0.0",
50+
"commander": ">=8.0.0 <12.0.0",
5151
"follow-redirects": ">=1.0.0",
5252
"js-sha3": ">=0.8.0",
5353
"memorystream": ">=0.3.0",
@@ -59,19 +59,19 @@
5959
"@types/semver": ">=7.1.0",
6060
"@types/tape": ">=4.2.27",
6161
"@types/tmp": ">=0.2.0",
62-
"@typescript-eslint/eslint-plugin": ">=5.0.0",
63-
"@typescript-eslint/parser": ">=5.0.0",
62+
"@typescript-eslint/eslint-plugin": ">=5.0.0 <6.0.0",
63+
"@typescript-eslint/parser": ">=5.0.0 <6.0.0",
6464
"coveralls": ">=3.0.0",
65-
"eslint": ">=7.12.1",
66-
"eslint-config-standard": ">=16.0.3",
65+
"eslint": ">=7.12.1 <8.0.0",
66+
"eslint-config-standard": ">=16.0.3 <17.0.0",
6767
"eslint-plugin-import": ">=2.25.0",
6868
"eslint-plugin-node": ">=11.1.0",
69-
"eslint-plugin-promise": ">=5.0.0",
69+
"eslint-plugin-promise": ">=5.0.0 <7.0.0",
7070
"nyc": ">=15.0.0",
7171
"tape": ">=4.11.0",
7272
"tape-spawn": ">=1.0.0",
7373
"ts-node": ">=10.0.0",
74-
"typescript": ">=4.2.2"
74+
"typescript": ">=4.2.2 <5.0.0"
7575
},
7676
"nyc": {
7777
"exclude": [

0 commit comments

Comments
 (0)