-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.38 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": "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 --outDir build",
"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.78",
"@types/node": "^10.5.2",
"command-line-args": "^5.0.2",
"command-line-usage": "^5.0.5",
"es6-promisify": "^6.0.0",
"fs-extra": "^7.0.0",
"growl": "~> 1.10.0",
"rimraf": "^2.6.2",
"typescript": "^2.9.2",
"valid-url": "^1.0.9"
},
"devDependencies": {}
}