-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
50 lines (50 loc) · 1.2 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
{
"author": "Richard Moore <[email protected]>",
"dependencies": {
"@adraffy/ens-normalize": "^1.9.0",
"@ensdomains/eth-ens-namehash": "^2.0.15",
"@ethereumjs/common": "^2.6.3",
"@ethereumjs/tx": "^3.5.1",
"bip32": "^3.0.1",
"bip39": "^3.0.4",
"eth-sig-util": "^3.0.1",
"ethereumjs-icap": "^0.3.2",
"ethereumjs-util": "^7.1.4",
"ethers": "^5.6.0",
"js-sha3": "^0.8.0",
"rlp": "^3.0.0",
"solc": "0.8.13",
"tiny-secp256k1": "^2.2.1",
"web3": "^1.7.1"
},
"description": "Test Generation Scripts for Ethers.",
"devDependencies": {
"@types/node": "^17.0.18",
"typescript": "4.6.2"
},
"keywords": [
"ethers",
"testcases"
],
"license": "MIT",
"main": "./lib/index.js",
"name": "ethers-test-generator",
"private": true,
"publishConfig": {
"access": "private",
"tag": "no-publish"
},
"repository": {
"type": "git",
"url": "git://github.com/ethers-io/ancillary-exchain.git"
},
"scripts": {
"auto-build": "npm run build -- -w",
"build": "tsc --build ./tsconfig.json",
"generate": "node lib/index"
},
"sideEffects": false,
"type": "module",
"types": "./lib/index.d.ts",
"version": "6.0.0-beta.1"
}