-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.67 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
60
61
62
63
{
"name": "arc.js-scripts",
"version": "0.0.0-alpha.0",
"description": "scripts that run against @daostack/arc.js",
"scripts": {
"clean": "rimraf build/**/*",
"build": "npm run clean && tsc",
"help": "node ./build/scripts/arcScript.js -h",
"script": "node ./build/scripts/arcScript.js",
"ganache": "npm explore @daostack/arc.js -- npm start ganache",
"migrateContracts": "npm explore @daostack/arc.js -- npm start migrateContracts",
"createGenesisDao": "npm explore @daostack/arc.js -- npm start createGenesisDao"
},
"bin": {
"arcScript": "./scripts/arcScript.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dkent600/arc.js-scripts.git"
},
"keywords": [
"DAOstack",
"Arc.js",
"Arc",
"Ethereum",
"blockchain",
"DAO",
"javascript",
"smart",
"contracts"
],
"author": "Doug Kent",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/dkent600/arc.js-scripts/issues"
},
"homepage": "https://github.com/dkent600/arc.js-scripts#readme",
"files": [
"scripts/",
"custom_typings/",
"tsconfig.json"
],
"dependencies": {
"@daostack/arc.js": "0.0.0-alpha.106",
"@types/node": "^10.5.2",
"axios": "^0.18.0",
"command-line-args": "^5.0.2",
"command-line-usage": "^5.0.5",
"cwd": "^0.10.0",
"es6-promisify": "^6.0.0",
"fs-extra": "^7.0.0",
"ganache-cli": "^6.2.3",
"growl": "~> 1.10.0",
"rimraf": "^2.6.2",
"truffle-hdwallet-provider": "0.0.6",
"typescript": "^2.9.2",
"valid-url": "^1.0.9",
"web3-provider-engine": "github:MetaMask/provider-engine"
},
"devDependencies": {
"tslint": "^5.12.0"
}
}