-
Notifications
You must be signed in to change notification settings - Fork 83
/
package.json
57 lines (57 loc) · 1.43 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
{
"name": "eth-balance-checker",
"version": "0.2.0",
"description": "Ethereum smart contract and library for efficient ERC20 and Ether balance checks.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"sideEffects": false,
"author": "Will O'Beirne <[email protected]>",
"contributors": [
"Henry Nguyen"
],
"license": "MIT",
"homepage": "https://github.com/wbobeirne/eth-balance-checker",
"bugs": {
"url": "https://github.com/wbobeirne/eth-balance-checker/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/wbobeirne/eth-balance-checker.git"
},
"keywords": [
"ethereum",
"ether",
"erc20",
"balance",
"solidity"
],
"scripts": {
"build": "npm run build:contract && npm run build:lib",
"build:lib": "tsc",
"build:contract": "truffle compile && node scripts/export-abi",
"test": "npm run test:lib && npm run test:contract",
"test:lib": "echo 'no tests yet'",
"test:contract": "truffle test",
"prepublish": "npm run build"
},
"devDependencies": {
"@truffle/hdwallet-provider": "^2.0.4",
"chai": "^4.3.6",
"dotenv": "^16.0.0",
"eth-gas-reporter": "^0.2.24",
"ethers": "^5.6.0",
"openzeppelin-solidity": "^1.12.0",
"truffle": "^5.5.4",
"typescript": "^4.6.2",
"web3": "^1.7.1"
},
"peerDependencies": {
"ethers": "^5.4.0",
"web3": "^1.4.0"
},
"files": [
"lib",
"abis",
"contracts"
]
}