forked from zeppelinos/zos-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 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
{
"name": "zos",
"version": "1.1.0",
"description": "ZeppelinOS command line interface",
"main": "lib/index.js",
"scripts": {
"prepack": "truffle compile && rm -rf lib && babel src --out-dir lib",
"test": "./node_modules/.bin/truffle test",
"gen-docs": "babel-node docs/bin/docs.js"
},
"bin": {
"zos": "./lib/bin/zos-cli.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/zeppelinos/zos-cli.git"
},
"keywords": [
"zos",
"zeppelinos",
"cli"
],
"files": [
"lib",
"examples"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/zeppelinos/zos-cli/issues"
},
"homepage": "https://github.com/zeppelinos/zos-cli#readme",
"dependencies": {
"chalk": "^2.4.1",
"commander": "^2.15.1",
"lockfile": "^1.0.4",
"lodash": "^4.17.5",
"npm-programmatic": "0.0.10",
"semver": "^5.5.0",
"truffle": "^4.1.13",
"truffle-config": "^1.0.6",
"truffle-core": "^4.1.13",
"truffle-workflow-compile": "^1.0.6",
"zos-lib": "^1.3.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^2.0.2",
"mock-stdlib": "file:./test/mocks/mock-stdlib",
"mock-stdlib-2": "file:./test/mocks/mock-stdlib-2",
"mock-stdlib-invalid": "file:./test/mocks/mock-stdlib-invalid",
"mock-stdlib-undeployed": "file:./test/mocks/mock-stdlib-undeployed",
"react": "^16.3.2",
"react-dom": "^16.3.2"
}
}