-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
58 lines (58 loc) · 1.35 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
{
"name": "cudos-token",
"version": "1.0.0",
"description": "Cudos Smart Contracts",
"directories": {
"test": "test"
},
"scripts": {
"test": "npx buidler test",
"compile": "npx buidler compile",
"test-with-gas": "REPORT_GAS=true npx buidler test --network localhost",
"coverage": "npx buidler coverage",
"fix": "yarn run standard --fix"
},
"devDependencies": {
"@openzeppelin/test-helpers": "^0.5.4",
"chai": "^4.2.0",
"coveralls": "^3.0.9",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"standard": "^14.3.1"
},
"license": "MIT",
"engines": {
"node": ">=10.0.0",
"npm": ">=6.0.0"
},
"standard": {
"globals": [
"describe",
"context",
"before",
"beforeEach",
"after",
"afterEach",
"it",
"expect",
"artifacts",
"web3",
"contract"
]
},
"dependencies": {
"@nomiclabs/buidler": "^1.4.8",
"@nomiclabs/buidler-ethers": "^2.0.2",
"@nomiclabs/buidler-solhint": "^1.3.3",
"@nomiclabs/buidler-truffle5": "^1.3.4",
"@nomiclabs/buidler-waffle": "^2.1.0",
"@nomiclabs/buidler-web3": "^1.3.4",
"@openzeppelin/contracts": "^3.2.0",
"buidler-gas-reporter": "^0.1.4",
"dotenv": "^8.2.0",
"ethereum-waffle": "^3.1.1",
"ethers": "^5.0.17",
"solidity-coverage": "^0.7.11",
"web3": "1.2.4"
}
}