forked from aragon/aragon-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
149 lines (149 loc) · 3.9 KB
/
package.json
File metadata and controls
149 lines (149 loc) · 3.9 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
{
"name": "@aragon/cli",
"version": "5.4.0",
"description": "Aragon command-line tools",
"main": "dist/cli.js",
"bin": {
"aragon": "./dist/cli.js",
"dao": "./aliases/dao"
},
"scripts": {
"build": "npm run extract-roles && babel -d dist src --copy-files",
"prepare": "npm run build",
"test": "ava",
"lint": "eslint src test/commands && documentation lint src",
"extract-roles": "node scripts/extract-roles"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aragon/aragon-dev-cli.git"
},
"keywords": [
"cli",
"aragon",
"ethereum"
],
"author": "Aragon Association <legal@aragon.org>",
"contributors": [
"Jorge Izquierdo <jorge@aragon.one>",
"Luis Cuende <luis@aragon.one>",
"Oliver Nordbjerg <oliver@aragon.one>"
],
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/aragon/aragon-dev-cli/issues"
},
"homepage": "https://github.com/aragon/aragon-dev-cli#readme",
"dependencies": {
"@aragon/apm": "^2.0.2",
"@aragon/apps-shared-minime": "^1.0.1",
"@aragon/aragen": "^2.0.3",
"@aragon/os": "^4.0.0",
"@aragon/templates-beta": "^1.1.3",
"@aragon/wrapper": "^3.0.0-beta.4",
"@babel/polyfill": "^7.0.0",
"ajv": "^6.6.2",
"bignumber.js": "^7.1.0",
"chalk": "^2.1.0",
"cli-table": "^0.3.1",
"colors": "^1.2.4",
"dev-null": "^0.1.1",
"eth-ens-namehash": "^2.0.8",
"execa": "^0.10.0",
"figures": "^2.0.0",
"find-up": "^2.1.0",
"fs-extra": "^4.0.2",
"ganache-core": "2.2.1",
"get-installed-path": "^4.0.8",
"git-clone": "^0.1.0",
"global-modules-path": "^2.3.0",
"go-ipfs": "0.4.17",
"ignore": "^3.3.7",
"ipfs-api": "^21.0.0",
"js-sha3": "^0.7.0",
"listr": "^0.13.0",
"listr-input": "0.1.3",
"listr-silent-renderer": "^1.1.1",
"listr-update-renderer": "^0.4.0",
"listr-verbose-renderer": "^0.4.1",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"opn": "^5.3.0",
"rimraf": "^2.6.2",
"semver": "^5.4.1",
"tmp-promise": "^1.0.4",
"truffle": "4.1.14",
"truffle-flattener": "^1.2.9",
"truffle-hdwallet-provider": "^1.0.2",
"truffle-hdwallet-provider-privkey": "^0.3.0",
"web3": "1.0.0-beta.34",
"yargs": "^10.1.0"
},
"devDependencies": {
"@aragon/apps-finance": "^2.0.0",
"@aragon/apps-token-manager": "^2.0.0",
"@aragon/apps-vault": "^3.0.0",
"@aragon/apps-voting": "^2.0.0",
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/register": "^7.0.0",
"ava": "^0.22.0",
"babel-eslint": "^10.0.1",
"coveralls": "^3.0.0",
"documentation": "^9.0.0-alpha.0",
"eslint": "^5.9.0",
"eslint-config-prettier": "^3.3.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-ava": "^5.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^1.2.0",
"lint-staged": "^8.1.0",
"prettier": "^1.15.3"
},
"engines": {
"node": ">=8.0.0"
},
"ava": {
"require": [
"@babel/polyfill",
"@babel/register"
],
"files": [
"test/commands/**/*.js"
]
},
"aragon": {
"clientVersion": "b64f184910de7c5bcc19f87b32de4b6768c448fd",
"clientPort": "3000",
"defaultGasPrice": "10000000000"
},
"yargs": {
"short-option-groups": true,
"camel-case-expansion": true,
"dot-notation": true,
"parse-numbers": false,
"boolean-negation": true
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run lint && npm run test"
}
},
"lint-staged": {
"linters": {
"*.js": [
"eslint --fix",
"documentation lint",
"git add"
]
}
}
}