forked from dapphub/dapple
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 2.36 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
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
{
"name": "dapple",
"version": "0.7.2",
"description": "Solidity developer multitool",
"keywords": [
"dapp",
"ethereum",
"solidity",
"EVM"
],
"license": "MIT",
"author": "Nikolai Mushegian <[email protected]>",
"contributors": [
{
"name": "Ryan Casey",
"email": "[email protected]"
},
{
"name": "Denis Erfurt"
}
],
"homepage": "dapple.info",
"repository": {
"type": "git",
"url": "https://github.com/nexusdev/dapple.git"
},
"bugs": {
"url": "https://github.com/nexusdev/dapple/issues"
},
"scripts": {
"test": "./node_modules/semistandard/bin/cmd.js && ./node_modules/mocha/bin/mocha --recursive test/*",
"compileTests": "solc test/_fixtures/mocktest.sol --combined-json bin,abi,interface > test/_fixtures/mocktest.json"
},
"main": "lib.js",
"bin": {
"dapple": "cmd/main.js"
},
"directories": {
"lib": "lib",
"bin": "cmd",
"doc": "docs",
"defaults": "defaults"
},
"dependencies": {
"chai": "^3.4.1",
"cli-color-tty": "^2.0.0",
"dapphub": "0.0.7",
"deasync": "^0.1.4",
"dir-compare": "0.0.2",
"docopt": "^0.6.2",
"ethereumjs-lib": "^3.0.0",
"ethersim": "git+https://github.com/nexusdev/EtherSim.git",
"file": "^0.2.2",
"fs-extra": "^0.26.3",
"fs-readdir-recursive": "^1.0.0",
"geth": "^0.1.4",
"glob-fs": "^0.1.6",
"gulp-filter": "^3.0.1",
"gulp-ignore": "^2.0.1",
"gulp-smake": "^0.2.2",
"gulp-util": "^3.0.7",
"inquirer": "^0.11.1",
"ipfs-api": "^2.13.1",
"ipfs-js": "0.0.8",
"jison": "^0.4.17",
"js-yaml": "^3.5.2",
"json-schema-defaults": "^0.1.1",
"lazreq": "^0.1.1",
"lodash": "^3.10.1",
"mkdirp": "^0.5.1",
"mocha": "^2.3.4",
"multimatch": "^2.1.0",
"read-yaml": "^1.0.0",
"semver": "^5.1.0",
"shelljs": "^0.6.0",
"solc": "^0.3.1-1",
"stream-combiner": "^0.2.2",
"through2": "^2.0.0",
"tmp": "0.0.28",
"tv4": "^1.2.7",
"user-home": "^2.0.0",
"vinyl": "^1.1.1",
"vinyl-buffer": "^1.0.0",
"vinyl-fs": "^2.2.1",
"web3": "^0.15.1",
"write-yaml": "^0.2.2"
},
"engines": {
"node": ">=5.0.0"
},
"devDependencies": {
"eslint": "^1.10.3",
"groc": "^0.8.0",
"gulp": "^3.9.0",
"semistandard": "^7.0.5"
},
"semistandard": {
"ignore": [
"doc",
"test/_fixtures"
]
}
}