Skip to content

Commit c94d152

Browse files
committed
feat: use fixed dependency versions
1 parent 40e705b commit c94d152

File tree

10 files changed

+201
-471
lines changed

10 files changed

+201
-471
lines changed

package.json

+32-40
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"test-no-bail": "lerna run test --no-bail --scope @renproject/*",
1313
"cov:all": "lerna run cov --scope @renproject/*",
1414
"test:all": "lerna run test --scope @renproject/*",
15-
"cov": "run-s build test:unit cov:html && open-cli coverage/index.html",
15+
"cov": "run-s build test:unit cov:html && echo \"\n\nTo see coverage, run: 'open coverage/index.html'\n\n\"",
1616
"cov:html": "nyc report --reporter=html",
1717
"test": "yarn test:unit",
1818
"test:unit": "nyc ./node_modules/ts-mocha/bin/ts-mocha --sort --exit --timeout 180000 --paths -p ./tsconfig.json ./packages/*/test/**/*.spec.ts ./packages/chains/*/test/**/*.spec.ts",
@@ -23,50 +23,42 @@
2323
"doc:publish": "yarn doc:build && gh-pages --repo [email protected]:renproject/ren-js-v3-docs.git -m \"[ci skip] Updates\" -d docs"
2424
},
2525
"devDependencies": {
26-
"@istanbuljs/nyc-config-typescript": "^1.0.2",
27-
"@types/chai": "^4.3.1",
28-
"@types/chai-as-promised": "^7.1.5",
29-
"@types/mocha": "^9.1.1",
30-
"@typescript-eslint/eslint-plugin": "^5.32.0",
31-
"@typescript-eslint/parser": "^5.32.0",
32-
"babel-core": "^6.26.3",
33-
"babel-loader": "^8.2.5",
34-
"babel-plugin-import": "^1.13.5",
26+
"@istanbuljs/nyc-config-typescript": "1.0.2",
27+
"@types/chai": "4.3.1",
28+
"@types/mocha": "9.1.1",
29+
"@typescript-eslint/eslint-plugin": "5.32.0",
30+
"@typescript-eslint/parser": "5.32.0",
31+
"babel-core": "6.26.3",
32+
"babel-loader": "8.2.5",
3533
"babel-polyfill": "^6.26.0",
36-
"babel-runtime": "^6.26.0",
37-
"bignumber.js": "^9.0.2",
34+
"bignumber.js": "9.0.2",
3835
"chai": "4.3.6",
39-
"chai-as-promised": "^7.1.1",
4036
"chalk": "4.1.2",
41-
"codecov": "^3.8.3",
42-
"cross-env": "^7.0.3",
43-
"cz-conventional-changelog": "^3.3.0",
44-
"dotenv": "^16.0.1",
45-
"eslint": "^8.21.0",
46-
"eslint-config-prettier": "^8.5.0",
47-
"eslint-plugin-import": "^2.26.0",
48-
"eslint-plugin-jsdoc": "^39.3.4",
49-
"eslint-plugin-no-null": "^1.0.2",
50-
"eslint-plugin-react": "^7.30.1",
51-
"eslint-plugin-security": "^1.5.0",
52-
"ethers": "^5.6.9",
53-
"gh-pages": "^4.0.0",
54-
"lerna": "^5.3.0",
55-
"mocha": "^10.0.0",
56-
"npm-run-all": "^4.1.5",
57-
"nyc": "^15.1.0",
58-
"open-cli": "^7.0.1",
59-
"prettier": "^2.7.1",
60-
"rimraf": "^3.0.2",
61-
"send-crypto": "^0.2.37",
62-
"throat": "^6.0.1",
63-
"ts-loader": "^9.3.1",
64-
"ts-mocha": "^10.0.0",
65-
"typedoc": "^0.23.10",
37+
"codecov": "3.8.3",
38+
"cz-conventional-changelog": "3.3.0",
39+
"dotenv": "16.0.1",
40+
"eslint": "8.21.0",
41+
"eslint-config-prettier": "8.5.0",
42+
"eslint-plugin-import": "2.26.0",
43+
"eslint-plugin-jsdoc": "39.3.4",
44+
"eslint-plugin-no-null": "1.0.2",
45+
"eslint-plugin-react": "7.30.1",
46+
"eslint-plugin-security": "1.5.0",
47+
"gh-pages": "4.0.0",
48+
"lerna": "5.3.0",
49+
"mocha": "10.0.0",
50+
"npm-run-all": "4.1.5",
51+
"nyc": "15.1.0",
52+
"prettier": "2.7.1",
53+
"rimraf": "3.0.2",
54+
"send-crypto": "0.2.37",
55+
"ts-loader": "9.3.1",
56+
"ts-mocha": "10.0.0",
57+
"typedoc": "0.23.10",
6658
"typescript": "4.7.4",
6759
"webpack": "5.74.0",
68-
"webpack-cli": "^4.10.0",
69-
"webpack-node-externals": "^3.0.0"
60+
"webpack-cli": "4.10.0",
61+
"webpack-node-externals": "3.0.0"
7062
},
7163
"workspaces": [
7264
"packages/*",

packages/chains/chains-bitcoin/package.json

+13-13
Original file line numberDiff line numberDiff line change
@@ -35,27 +35,27 @@
3535
"test": "run-s test:* lint",
3636
"test:unit": "nyc ../../../node_modules/ts-mocha/bin/ts-mocha --bail --sort --exit --timeout 180000 --paths -p ./tsconfig.json ./test/*.spec.ts ./test/**/*.spec.ts --ignore ./test/testutils/chai.d.ts",
3737
"watch": "run-s build:main && run-s \"build:main -- -w\"",
38-
"cov": "run-s build:main test:unit cov:html && open-cli coverage/index.html",
38+
"cov": "run-s build:main test:unit cov:html && echo \"\n\nTo see coverage, run: 'open coverage/index.html'\n\n\"",
3939
"cov:html": "nyc report --reporter=html",
4040
"cov:send": "nyc report --reporter=lcov && codecov",
4141
"cov:check": "nyc report && nyc check-coverage --lines 0 --functions 0 --branches 0",
4242
"prepare": "yarn build"
4343
},
4444
"dependencies": {
4545
"@noble/hashes": "1.1.2",
46-
"@renproject/utils": "^3.4.4",
47-
"@types/bchaddrjs": "^0.4.0",
48-
"@types/bs58": "^4.0.1",
46+
"@renproject/utils": "3.4.4",
47+
"@types/bchaddrjs": "0.4.0",
48+
"@types/bs58": "4.0.1",
4949
"@types/bs58check": "2.1.0",
50-
"@types/cashaddrjs": "^0.3.0",
51-
"bchaddrjs": "^0.5.2",
52-
"bech32": "^2.0.0",
53-
"bignumber.js": "^9.0.2",
54-
"bs58": "^5.0.0",
55-
"bs58check": "^2.1.2",
56-
"cashaddrjs": "^0.4.4",
57-
"qs": "^6.11.0",
58-
"wallet-address-validator": "^0.2.4"
50+
"@types/cashaddrjs": "0.3.0",
51+
"bchaddrjs": "0.5.2",
52+
"bech32": "2.0.0",
53+
"bignumber.js": "9.0.2",
54+
"bs58": "5.0.0",
55+
"bs58check": "2.1.2",
56+
"cashaddrjs": "0.4.4",
57+
"qs": "6.11.0",
58+
"wallet-address-validator": "0.2.4"
5959
},
6060
"nyc": {
6161
"extends": "@istanbuljs/nyc-config-typescript",

packages/chains/chains-ethereum/package.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -35,21 +35,21 @@
3535
"test": "run-s test:* lint",
3636
"test:unit": "nyc ../../../node_modules/ts-mocha/bin/ts-mocha --bail --sort --exit --timeout 180000 --paths -p ./tsconfig.json ./test/*.spec.ts ./test/**/*.spec.ts --ignore ./test/testutils/chai.d.ts",
3737
"watch": "run-s build:main && run-s \"build:main -- -w\"",
38-
"cov": "run-s build:main test:unit cov:html && open-cli coverage/index.html",
38+
"cov": "run-s build:main test:unit cov:html && echo \"\n\nTo see coverage, run: 'open coverage/index.html'\n\n\"",
3939
"cov:html": "nyc report --reporter=html",
4040
"cov:send": "nyc report --reporter=lcov && codecov",
4141
"cov:check": "nyc report && nyc check-coverage --lines 0 --functions 0 --branches 0",
4242
"prepare": "yarn build"
4343
},
4444
"dependencies": {
45-
"@ethersproject/abi": "^5.6.4",
46-
"@ethersproject/bytes": "^5.6.1",
47-
"@ethersproject/providers": "^5.6.8",
48-
"@renproject/utils": "^3.4.4",
49-
"@types/elliptic": "^6.4.14",
50-
"bignumber.js": "^9.0.2",
51-
"elliptic": "^6.5.4",
52-
"ethers": "^5.6.9"
45+
"@ethersproject/abi": "5.6.4",
46+
"@ethersproject/bytes": "5.6.1",
47+
"@ethersproject/providers": "5.6.8",
48+
"@renproject/utils": "3.4.4",
49+
"@types/elliptic": "6.4.14",
50+
"bignumber.js": "9.0.2",
51+
"elliptic": "6.5.4",
52+
"ethers": "5.6.9"
5353
},
5454
"nyc": {
5555
"extends": "@istanbuljs/nyc-config-typescript",

packages/chains/chains-filecoin/package.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -35,21 +35,21 @@
3535
"test": "run-s test:* lint",
3636
"test:unit": "nyc ../../../node_modules/ts-mocha/bin/ts-mocha --bail --sort --exit --timeout 180000 --paths -p ./tsconfig.json ./test/*.spec.ts ./test/**/*.spec.ts --ignore ./test/testutils/chai.d.ts",
3737
"watch": "run-s build:main && run-s \"build:main -- -w\"",
38-
"cov": "run-s build:main test:unit cov:html && open-cli coverage/index.html",
38+
"cov": "run-s build:main test:unit cov:html && echo \"\n\nTo see coverage, run: 'open coverage/index.html'\n\n\"",
3939
"cov:html": "nyc report --reporter=html",
4040
"cov:send": "nyc report --reporter=lcov && codecov",
4141
"cov:check": "nyc report && nyc check-coverage --lines 0 --functions 0 --branches 0",
4242
"prepare": "yarn build"
4343
},
4444
"dependencies": {
45-
"@glif/filecoin-address": "^1.1.0",
46-
"@glif/filecoin-rpc-client": "^1.1.0",
47-
"@renproject/utils": "^3.4.4",
48-
"@types/elliptic": "^6.4.14",
49-
"bignumber.js": "^9.0.2",
50-
"blakejs": "^1.2.1",
51-
"elliptic": "^6.5.4",
52-
"multiformats": "^9.7.1"
45+
"@glif/filecoin-address": "1.1.0",
46+
"@glif/filecoin-rpc-client": "1.1.0",
47+
"@renproject/utils": "3.4.4",
48+
"@types/elliptic": "6.4.14",
49+
"bignumber.js": "9.0.2",
50+
"blakejs": "1.2.1",
51+
"elliptic": "6.5.4",
52+
"multiformats": "9.7.1"
5353
},
5454
"nyc": {
5555
"extends": "@istanbuljs/nyc-config-typescript",

packages/chains/chains-terra/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -35,19 +35,19 @@
3535
"test": "run-s test:* lint",
3636
"test:unit": "nyc ../../../node_modules/ts-mocha/bin/ts-mocha --bail --sort --exit --timeout 180000 --paths -p ./tsconfig.json ./test/*.spec.ts ./test/**/*.spec.ts --ignore ./test/testutils/chai.d.ts",
3737
"watch": "run-s build:main && run-s \"build:main -- -w\"",
38-
"cov": "run-s build:main test:unit cov:html && open-cli coverage/index.html",
38+
"cov": "run-s build:main test:unit cov:html && echo \"\n\nTo see coverage, run: 'open coverage/index.html'\n\n\"",
3939
"cov:html": "nyc report --reporter=html",
4040
"cov:send": "nyc report --reporter=lcov && codecov",
4141
"cov:check": "nyc report && nyc check-coverage --lines 0 --functions 0 --branches 0",
4242
"prepare": "yarn build"
4343
},
4444
"dependencies": {
45-
"@renproject/utils": "^3.4.4",
45+
"@renproject/utils": "3.4.4",
4646
"@terra-money/terra.js": "3.1.5",
47-
"@types/elliptic": "^6.4.14",
48-
"bech32": "^2.0.0",
49-
"bignumber.js": "^9.0.2",
50-
"elliptic": "^6.5.4"
47+
"@types/elliptic": "6.4.14",
48+
"bech32": "2.0.0",
49+
"bignumber.js": "9.0.2",
50+
"elliptic": "6.5.4"
5151
},
5252
"nyc": {
5353
"extends": "@istanbuljs/nyc-config-typescript",

packages/chains/chains/package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -35,19 +35,19 @@
3535
"test": "run-s test:* lint",
3636
"test:unit": "nyc ../../../node_modules/ts-mocha/bin/ts-mocha --bail --sort --exit --timeout 180000 --paths -p ./tsconfig.json ./test/*.spec.ts ./test/**/*.spec.ts --ignore ./test/testutils/chai.d.ts",
3737
"watch": "run-s build:main && run-s \"build:main -- -w\"",
38-
"cov": "run-s build:main test:unit cov:html && open-cli coverage/index.html",
38+
"cov": "run-s build:main test:unit cov:html && echo \"\n\nTo see coverage, run: 'open coverage/index.html'\n\n\"",
3939
"cov:html": "nyc report --reporter=html",
4040
"cov:send": "nyc report --reporter=lcov && codecov",
4141
"cov:check": "nyc report && nyc check-coverage --lines 0 --functions 0 --branches 0",
4242
"prepare": "yarn build"
4343
},
4444
"dependencies": {
45-
"@renproject/chains-bitcoin": "^3.4.4",
46-
"@renproject/chains-ethereum": "^3.4.4",
47-
"@renproject/chains-filecoin": "^3.4.4",
48-
"@renproject/chains-solana": "^3.4.4",
49-
"@renproject/chains-terra": "^3.4.4",
50-
"@renproject/utils": "^3.4.4"
45+
"@renproject/chains-bitcoin": "3.4.4",
46+
"@renproject/chains-ethereum": "3.4.4",
47+
"@renproject/chains-filecoin": "3.4.4",
48+
"@renproject/chains-solana": "3.4.4",
49+
"@renproject/chains-terra": "3.4.4",
50+
"@renproject/utils": "3.4.4"
5151
},
5252
"nyc": {
5353
"extends": "@istanbuljs/nyc-config-typescript",

packages/provider/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -36,16 +36,16 @@
3636
"test": "run-s test:* lint",
3737
"test:unit": "nyc ../../node_modules/ts-mocha/bin/ts-mocha --bail --sort --exit --timeout 180000 --paths -p ./tsconfig.json ./test/*.spec.ts ./test/**/*.spec.ts --ignore ./test/testutils/chai.d.ts",
3838
"watch": "run-s build:main && run-s \"build:main -- -w\"",
39-
"cov": "run-s build:main test:unit cov:html && open-cli coverage/index.html",
39+
"cov": "run-s build:main test:unit cov:html && echo \"\n\nTo see coverage, run: 'open coverage/index.html'\n\n\"",
4040
"cov:html": "nyc report --reporter=html",
4141
"cov:send": "nyc report --reporter=lcov && codecov",
4242
"cov:check": "nyc report && nyc check-coverage --lines 0 --functions 0 --branches 0",
4343
"prepare": "yarn build"
4444
},
4545
"dependencies": {
46-
"@renproject/utils": "^3.4.4",
47-
"axios": "^0.27.2",
48-
"bignumber.js": "^9.0.2"
46+
"@renproject/utils": "3.4.4",
47+
"axios": "0.27.2",
48+
"bignumber.js": "9.0.2"
4949
},
5050
"nyc": {
5151
"extends": "@istanbuljs/nyc-config-typescript",

packages/ren/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -49,18 +49,18 @@
4949
"test-all": "ALL_TESTS=true run-s build:main test:unit lint",
5050
"test:unit": "nyc ../../node_modules/ts-mocha/bin/ts-mocha --sort --exit --timeout 180000 --paths -p ./tsconfig.json ./test/*.spec.ts ./test/**/*.spec.ts",
5151
"watch": "run-s build:main && run-s \"build:main -- -w\"",
52-
"cov": "run-s build:main test:unit cov:html && open-cli coverage/index.html",
52+
"cov": "run-s build:main test:unit cov:html && echo \"\n\nTo see coverage, run: 'open coverage/index.html'\n\n\"",
5353
"cov:html": "nyc report --reporter=html",
5454
"cov:send": "nyc report --reporter=lcov && codecov",
5555
"cov:check": "nyc report && nyc check-coverage --lines 0 --functions 0 --branches 0",
5656
"prepare": "yarn build"
5757
},
5858
"dependencies": {
59-
"@renproject/provider": "^3.4.4",
60-
"@renproject/utils": "^3.4.4",
61-
"bignumber.js": "^9.0.2",
62-
"events": "^3.3.0",
63-
"immutable": "^4.1.0"
59+
"@renproject/provider": "3.4.4",
60+
"@renproject/utils": "3.4.4",
61+
"bignumber.js": "9.0.2",
62+
"events": "3.3.0",
63+
"immutable": "4.1.0"
6464
},
6565
"nyc": {
6666
"extends": "@istanbuljs/nyc-config-typescript",

packages/utils/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"test": "run-s test:* lint",
3636
"test:unit": "nyc ../../node_modules/ts-mocha/bin/ts-mocha --bail --sort --exit --timeout 180000 --paths -p ./tsconfig.json ./src/*.spec.ts ./src/**/*.spec.ts ./test/*.spec.ts ./test/**/*.spec.ts --ignore ./test/testutils/chai.d.ts",
3737
"watch": "run-s build:main && run-s \"build:main -- -w\"",
38-
"cov": "run-s test:unit cov:html && open-cli coverage/index.html",
38+
"cov": "run-s test:unit cov:html && echo \"\n\nTo see coverage, run: 'open coverage/index.html'\n\n\"",
3939
"cov:html": "nyc report --reporter=html",
4040
"cov:send": "nyc report --reporter=lcov && codecov",
4141
"cov:check": "nyc report && nyc check-coverage --lines 0 --functions 0 --branches 0",
@@ -44,11 +44,11 @@
4444
"dependencies": {
4545
"@noble/hashes": "1.1.2",
4646
"@types/events": "3.0.0",
47-
"axios": "^0.27.2",
48-
"base64-js": "^1.5.1",
49-
"bignumber.js": "^9.0.2",
50-
"events": "^3.3.0",
51-
"immutable": "^4.1.0"
47+
"axios": "0.27.2",
48+
"base64-js": "1.5.1",
49+
"bignumber.js": "9.0.2",
50+
"events": "3.3.0",
51+
"immutable": "4.1.0"
5252
},
5353
"nyc": {
5454
"extends": "@istanbuljs/nyc-config-typescript",

0 commit comments

Comments
 (0)