forked from wbobeirne/eth-balance-checker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.41 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
{
"name": "eth-balance-checker",
"version": "0.1.1",
"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": {
"chai": "4.2.0",
"dotenv": "6.0.0",
"eth-gas-reporter": "0.1.12",
"openzeppelin-solidity": "1.12.0",
"truffle-hdwallet-provider": "0.0.6",
"typescript": "3.1.3"
},
"dependencies": {
"@types/web3": "1.0.10",
"ethers": "4.0.7",
"truffle": "^4.1.14",
"web3": "1.0.0-beta.36"
},
"files": [
"lib",
"abis",
"contracts"
]
}