This repository has been archived by the owner on Jun 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
105 lines (105 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
104
105
{
"name": "dapple",
"version": "0.8.48",
"description": "Solidity developer multitool",
"keywords": [
"dapp",
"ethereum",
"solidity",
"EVM"
],
"license": "GPLv3",
"author": "Nexus Development <[email protected]>",
"contributors": [
{
"name": "Denis Erfurt",
"email": "[email protected]"
},
{
"name": "Ryan Casey",
"email": "[email protected]"
},
{
"name": "Nikolai Mushegian",
"email": "[email protected]"
},
{
"name": "Daniel Brockman"
}
],
"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/* && ./e2e_test.sh",
"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": {
"cli-color-tty": "^2.0.0",
"dapple-core": "0.1.38",
"dapple-pkg": "^0.0.12",
"dapple-script": "0.1.3",
"dapple-test": "0.0.23",
"deasync": "^0.1.7",
"docopt": "^0.6.2",
"file": "^0.2.2",
"fs-extra": "^0.26.3",
"gulp-filter": "^3.0.1",
"gulp-ignore": "^2.0.1",
"gulp-smake": "^0.2.2",
"gulp-util": "^3.0.7",
"inquirer": "^0.11.1",
"js-yaml": "^3.5.2",
"json-schema-defaults": "^0.1.1",
"lazreq": "^0.1.1",
"lodash": "^4.15.0",
"mkdirp": "^0.5.1",
"multimatch": "^2.1.0",
"read-yaml": "^1.0.0",
"semver": "^5.1.0",
"solc": "^0.4.3",
"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.16.0",
"write-yaml": "^0.2.2"
},
"engines": {
"node": ">=6.4.0"
},
"devDependencies": {
"eslint": "^1.10.3",
"groc": "^0.8.0",
"mocha": "^2.3.4",
"gulp": "^3.9.0",
"chai": "^3.4.1",
"dir-compare": "0.0.2",
"semistandard": "^7.0.5"
},
"semistandard": {
"ignore": [
"doc",
"test/_fixtures"
]
}
}