-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 953 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 953 Bytes
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
{
"name": "token-test-suite",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "mocha tests/*",
"build": "cd contracts && solc --combined-json abi,bin *.sol > ../dist/contracts.json",
"solcover": "./node_modules/.bin/solidity-coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jsonsivar/token-test-suite.git"
},
"author": "@kidwai @stuarth1 @jsonsivar",
"license": "ISC",
"bugs": {
"url": "https://github.com/jsonsivar/token-test-suite/issues"
},
"homepage": "https://github.com/jsonsivar/token-test-suite#readme",
"dependencies": {
"assert": "^1.4.1",
"bn.js": "^4.11.8",
"csv-parser": "^1.11.0",
"eslint": "^4.9.0",
"ethereumjs-tx": "^1.3.3",
"ethers": "^2.1.2",
"prompt": "^1.0.0",
"web3": "0.19.0"
},
"devDependencies": {
"solidity-coverage": "^0.2.7"
}
}