forked from hermeznetwork/HEZToken
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 2.28 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
{
"name": "buidler-boilerplate",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"task:accounts": "npx buidler accounts",
"clean": "npx buidler clean && rm -rf cache coverage node_modules yarn.lock coverage.json",
"deploy": "npx buidler run scripts/deploy.js",
"deploy:rinkeby": "npx buidler run scripts/deploy.js --network rinkeby",
"compile": "npx buidler compile",
"test": "npx buidler test",
"test:gas": "scripts/run-gas-reporter.sh",
"test:gas:token": "scripts/run-gas-reporter.sh \"test/HEZToken/*.test.js\" \"test/HEZToken/.solcover.js\"",
"test:gas:HermezVesting": "scripts/run-gas-reporter.sh \"test/HermezVesting/*.test.js\" \"test/HermezVesting/.solcover.js\"",
"test:gas:distribution": "scripts/run-gas-reporter.sh \"test/Distribution/*.test.js\" \"test/Distribution/.solcover.js\"",
"test:token": "npx buidler test test/HEZToken/*.test.js",
"test:vestingVault": "npx buidler test test/VestingVault/*",
"test:HermezVesting": "npx buidler test test/HermezVesting/*",
"test:coverage": "npx buidler coverage --network coverage",
"test:coverage:token": "npx buidler coverage --testfiles test/TokenHEZ --solcoverjs test/HEZToken/.solcover.js --network coverage",
"test:coverage:HermezVesting": "npx buidler coverage --testfiles test/HermezVesting --solcoverjs test/HermezVesting/.solcover.js --network coverage",
"lint:sol": "npx buidler check",
"doc": "yarn run solidity-docgen"
},
"keywords": [],
"author": "",
"license": "GPL-3.0",
"devDependencies": {
"@nomiclabs/buidler": "^1.4.2",
"@nomiclabs/buidler-ethers": "^2.0.0",
"@nomiclabs/buidler-etherscan": "^2.1.0",
"@nomiclabs/buidler-solhint": "^1.3.3",
"@nomiclabs/buidler-waffle": "^2.0.0",
"@openzeppelin/contracts": "^3.2.0",
"@openzeppelin/test-helpers": "^0.5.6",
"buidler-deploy": "^0.6.0-beta.16",
"buidler-gas-reporter": "^0.1.3",
"buidler-spdx-license-identifier": "^1.0.2",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"eth-gas-reporter": "^0.2.17",
"ethereum-waffle": "^3.0.2",
"ethereumjs-util": "^7.0.6",
"ethers": "^5.0.7",
"mocha": "^8.0.1",
"prettier": "^2.0.5",
"prettier-plugin-solidity": "^1.0.0-alpha.55",
"rpl": "^0.8.0",
"solidity-coverage": "^0.7.9"
}
}