forked from aragon/aragon-id
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.55 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
{
"name": "@aragon/id",
"version": "2.1.1",
"description": "",
"scripts": {
"compile": "truffle compile",
"coverage": "cross-env SOLIDITY_COVERAGE=true ./test.sh",
"develop": "truffle develop",
"lint": "solium --dir contracts",
"migrate": "truffle migrate",
"test": "./test.sh",
"deploy:devnet": "truffle compile --all; truffle exec --network devnet scripts/deploy-beta-aragonid.js",
"abi:extract": "truffle-extract --output abi/ --keys abi",
"prepublishOnly": "truffle compile --all && npm run abi:extract -- --no-compile"
},
"author": "Aragon Association <legal@aragon.org>",
"contributors": [
"Brett Sun <brett@aragon.one>",
"Jorge Izquierdo <jorge@aragon.one>"
],
"files": [
"index.js",
"abi/",
"build/",
"contracts/",
"scripts/"
],
"license": "GPL-3.0-or-later",
"devDependencies": {
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"coveralls": "^3.0.0",
"cross-env": "^5.1.1",
"eslint": "^4.11.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"eth-ens-namehash": "^2.0.0",
"ethereumjs-testrpc": "^6.0.1",
"homedir": "^0.6.0",
"js-sha3": "^0.7.0",
"solidity-coverage": "^0.5.8",
"solium": "^1.1.8",
"truffle": "4.1.14",
"truffle-extract": "^1.2.1",
"truffle-hdwallet-provider": "0.0.3"
},
"dependencies": {
"@aragon/os": "^4.0.0"
}
}