This repository has been archived by the owner on Jan 13, 2025. It is now read-only.
forked from ethers-io/ethers.js
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
115 lines (115 loc) · 6 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@hashgraph/hethers",
"version": "1.2.6",
"private": true,
"repository": {
"type": "git",
"url": "git@github.com:hashgraph/hethers.js.git"
},
"common": {},
"scripts": {
"preinstall": "npm run bootstrap-hoist",
"postinstall": "node ./misc/admin/lib/cmds/update-depgraph && npm run bootstrap-link",
"bootstrap-hoist": "node ./misc/admin/lib/cmds/hoist",
"bootstrap-link": "node ./misc/admin/lib/cmds/link",
"auto-build": "node ./misc/admin/lib/cmds/set-build-option cjs && npm run build -- -w",
"auto-build-esm": "node ./misc/admin/lib/cmds/set-build-option esm && npm run build -- -w",
"build": "tsc --build ./tsconfig.project.json",
"_build-cjs": "node ./misc/admin/lib/cmds/echo 'Building CommonJS libraries...' && node ./misc/admin/lib/cmds/set-build-option cjs && npm run build",
"_build-esm": "node ./misc/admin/lib/cmds/echo 'Building ES modules libraries...' && node ./misc/admin/lib/cmds/set-build-option esm && npm run build",
"clean": "node ./misc/admin/lib/cmds/echo 'Cleaning all build files...' && rm -rf packages/*/lib packages/*/lib._esm packages/*/lib.esm packages/*/node_modules packages/*/dist/*.js packages/*/tsconfig.tsbuildinfo node_modules .package_node_modules package-lock.json",
"_test-dist": "rollup -c rollup-tests.config.js && node ./misc/admin/lib/cmds/setup-karma-tests",
"_test-browser-umd": "karma start --single-run --browsers HeadlessLittleLiar karma-umd.conf.js",
"_test-browser-esm": "karma start --single-run --browsers HeadlessLittleLiar karma-esm.conf.js",
"test-browser-umd": "npm run _test-dist && npm run _test-browser-umd",
"test-browser-esm": "npm run _test-dist && npm run _test-browser-esm",
"test-coverage": "nyc --report-dir=output --reporter=lcov --reporter=text mocha --exit --reporter ./packages/tests/reporter-keepalive ./packages/tests/lib/index.spec.js | tee output/summary.txt",
"test-node": "mocha --no-colors --reporter ./packages/tests/reporter ./packages/tests/lib/index.spec.js",
"test-react": "npm run _test-dist && pushd misc/ReactNativeTestApp && ./run-tests.sh && popd",
"test": "npm run build-all && npm run test-node",
"build-docs": "flatworm docs.wrm docs",
"serve-docs": "node ./misc/admin/lib/cmds/serve-docs.js",
"upload-docs": " node ./misc/admin/lib/cmds/upload-docs.js",
"spell-check": "node ./misc/admin/lib/cmds/spell-check.js",
"_reset-build": "node ./misc/admin/lib/cmds/set-build-option cjs",
"_esm-alias-nodesafe": "node ./misc/admin/lib/cmds/echo 'Bundling ESM elliptic (lib._esm/browser-elliptic.js)...' && node misc/admin/lib/cmds/esm-alias",
"_esm-alias": "node ./misc/admin/lib/cmds/npm-skip-node8.js || npm run _esm-alias-nodesafe",
"build-libs": "node ./misc/admin/lib/cmds/update-exports.js && node ./misc/admin/lib/cmds/bundle-testcases && npm run _build-cjs && npm run _build-esm && npm run _reset-build && npm run _esm-alias",
"build-dist-libs": "rollup -c rollup-dist.config.js && terser packages/hethers/dist/hethers.umd.js --output packages/hethers/dist/hethers.umd.min.js --source-map content='packages/hethers/dist/hethers.umd.js.map' && terser packages/hethers/dist/hethers.esm.js --output packages/hethers/dist/hethers.esm.min.js --source-map content='packages/hethers/dist/hethers.esm.js.map'",
"_build-dist-nodesafe": "node ./misc/admin/lib/cmds/echo 'Building dist files...' && npm run build-dist-libs",
"build-dist": "node ./misc/admin/lib/cmds/npm-skip-node8.js || npm run _build-dist-nodesafe",
"build-all": "npm run build-libs && npm run build-dist",
"update-versions": "npm run clean && npm install && npm run build-all && node ./misc/admin/lib/cmds/bump-versions && npm run build-all && node ./misc/admin/lib/cmds/update-hashes && node ./misc/admin/lib/cmds/update-changelog",
"auto-update-minor-or-major": "node ./misc/admin/lib/cmds/auto-update-minor-or-major",
"publish-all": "node ./misc/admin/lib/cmds/publish",
"auto-publish-all": "node ./misc/admin/lib/cmds/auto-publish",
"TODO-sync-github": "node ./admin/cmds/cache-github",
"local-ci": "npm run build-all && npm run test-node"
},
"devDependencies": {
"@rollup/plugin-commonjs": "15.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "9.0.0",
"@rollup/plugin-replace": "2.3.3",
"@types/assert": "^1.4.1",
"@types/mocha": "^5.2.0",
"@types/node": "^12.20.37",
"@types/semver": "^7.3.4",
"@types/shelljs": "^0.8.11",
"aes-js": "3.0.0",
"aws-sdk": "^2.1095.0",
"diff": "4.0.1",
"flatworm": "0.0.2-beta.7",
"jison": "0.4.18",
"karma": "^6.3.17",
"karma-chrome-launcher": "3.1.0",
"karma-mocha": "2.0.1",
"libnpmpublish": "3.0.1",
"mocha": "^9.1.3",
"nyc": "15.1.0",
"rollup": "2.33.2",
"rollup-plugin-node-polyfills": "0.2.1",
"rollup-plugin-sourcemaps": "0.6.3",
"scrypt-js": "3.0.1",
"semver": "^5.6.0",
"terser": "^5.10.0",
"ts-node": "^10.4.0",
"typescript": "4.4.4",
"uglify-es": "3.3.9"
},
"dependencies": {
"@ethersproject/abi": "5.5.0",
"@ethersproject/base64": "5.5.0",
"@ethersproject/basex": "5.5.0",
"@ethersproject/bignumber": "5.5.0",
"@ethersproject/bytes": "5.5.0",
"@ethersproject/hash": "5.5.0",
"@ethersproject/keccak256": "5.5.0",
"@ethersproject/pbkdf2": "5.5.0",
"@ethersproject/properties": "5.5.0",
"@ethersproject/random": "5.5.0",
"@ethersproject/sha2": "5.7.0",
"@ethersproject/solidity": "5.5.0",
"@ethersproject/strings": "5.5.0",
"@ethersproject/web": "5.5.0",
"@ethersproject/wordlists": "5.5.0",
"@hashgraph/proto": "2.9.0",
"@hashgraph/sdk": "^2.19.0",
"@types/axios": "^0.14.0",
"@types/mocha": "^5.2.0",
"aes-js": "3.0.0",
"axios": "^0.24.0",
"bech32": "1.1.4",
"bn.js": "^4.11.9",
"elliptic": "6.5.4",
"hash.js": "1.1.7",
"scrypt-js": "3.0.1",
"shelljs": "^0.8.5",
"tiny-inflate": "1.0.3",
"ws": "7.4.6"
},
"peerDependencies": {
"@hashgraph/proto": "2.9.0",
"@hashgraph/sdk": "^2.19.0"
}
}