-
Notifications
You must be signed in to change notification settings - Fork 245
/
package.json
45 lines (45 loc) · 1.39 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
{
"name": "@aragon/os",
"version": "5.0.0-rc.0",
"author": "Aragon Association <legal@aragon.org>",
"license": "(GPL-3.0-or-later OR MIT)",
"repository": "https://github.com/aragon/aragonOS",
"description": "Core contracts for Aragon",
"contributors": [
"Jorge Izquierdo <jorge@aragon.one>"
],
"files": [
"/abi",
"/artifacts",
"/contracts"
],
"scripts": {
"console": "buidler console",
"compile": "buidler compile --force",
"devchain": "buidler node",
"lint": "solium --dir ./contracts",
"test": "buidler test",
"test:gas": "REPORT_GAS=true yarn test --network localhost",
"test:gas:ci": "yarn test:gas && npx codechecks",
"coverage": "buidler coverage --network coverage",
"abi:extract": "buidler-extract --output abi/ --keys abi",
"prepublishOnly": "yarn compile && yarn abi:extract -- --no-compile"
},
"dependencies": {},
"devDependencies": {
"@aragon/contract-helpers-test": "^0.1.0",
"@codechecks/client": "^0.1.5",
"@nomiclabs/buidler": "^1.4.3",
"@nomiclabs/buidler-ganache": "^1.3.3",
"@nomiclabs/buidler-truffle5": "^1.3.4",
"@nomiclabs/buidler-web3": "^1.3.4",
"buidler-extract": "^1.0.0",
"buidler-gas-reporter": "^0.1.3",
"chai": "^4.2.0",
"eth-ens-namehash": "^2.0.8",
"ethereumjs-abi": "^0.6.5",
"solidity-coverage": "^0.7.9",
"solium": "^1.2.5",
"web3": "^1.2.11"
}
}