forked from aragon/aragonOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 2.07 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
59
{
"name": "@aragon/os",
"version": "4.2.1",
"description": "Core contracts for Aragon",
"scripts": {
"compile": "truffle compile",
"test": "TRUFFLE_TEST=true npm run ganache-cli:test",
"test:gas": "GAS_REPORTER=true npm test",
"test:gas:ci": "npm run test:gas && npx codechecks",
"lint": "solium --dir ./contracts",
"coverage": "SOLIDITY_COVERAGE=true npm run ganache-cli:test",
"console": "truffle dev",
"ganache-cli:test": "scripts/ganache-cli.sh",
"deploy:devnet:ens": "truffle compile && truffle exec --network devnet scripts/deploy-beta-ens.js",
"deploy:devnet:apm": "truffle compile && truffle exec --network devnet scripts/deploy-beta-apm.js",
"abi:extract": "truffle-extract --output abi/ --keys abi",
"bytecode:extract": "truffle-bytecode extract -o bytecode",
"bytecode:extract:new": "truffle-bytecode extract -o bytecode_new",
"bytecode:compare": "npm run bytecode:extract:new && truffle-bytecode compare bytecode bytecode_new",
"prepublishOnly": "truffle compile --all && npm run abi:extract -- --no-compile"
},
"files": [
"/abi",
"/build",
"/contracts",
"/scripts",
"/test",
"/truffle-config.js"
],
"author": "Aragon Association <[email protected]>",
"contributors": [
"Jorge Izquierdo <[email protected]>"
],
"repository": "https://github.com/aragon/aragonOS",
"license": "(GPL-3.0-or-later OR MIT)",
"devDependencies": {
"@codechecks/client": "^0.1.5",
"coveralls": "^2.13.3",
"eth-ens-namehash": "^2.0.8",
"eth-gas-reporter": "^0.2.9",
"ethereumjs-abi": "^0.6.5",
"ganache-cli": "^6.4.2",
"mocha-lcov-reporter": "^1.3.0",
"solidity-coverage": "^0.6.2",
"solium": "^1.2.3",
"truffle": "4.1.14",
"truffle-bytecode-manager": "^1.1.1",
"truffle-extract": "^1.2.1",
"web3-eth-abi": "1.0.0-beta.33",
"web3-utils": "1.0.0-beta.33"
},
"dependencies": {
"mkdirp": "^0.5.1",
"truffle-flattener": "^1.2.9",
"homedir": "^0.6.0",
"truffle-hdwallet-provider": "0.0.3",
"truffle-hdwallet-provider-privkey": "0.3.0"
}
}