forked from trufflesuite/ganache-cli-archive
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
32 lines (32 loc) · 915 Bytes
/
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
{
"name": "ethereumjs-testrpc",
"version": "6.0.1",
"bin": {
"testrpc": "./build/cli.node.js"
},
"main": "./build/lib.node.js",
"directories": {
"lib": "./lib"
},
"scripts": {
"start": "./build/cli.node.js",
"test": "mocha",
"build": "npm run build-cli && npm run build-server && npm run build-provider && npm run build-lib",
"build-cli": "webpack --config ./webpack/cli.webpack.config.js",
"build-server": "webpack --config ./webpack/server.webpack.config.js",
"build-provider": "webpack --config ./webpack/provider.webpack.config.js",
"build-lib": "webpack --config ./webpack/lib.webpack.config.js",
"prepublish": "npm run build"
},
"devDependencies": {
"ganache-core": "2.0.0",
"yargs": "^7.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/ethereumjs/testrpc"
},
"dependencies": {
"webpack": "^3.0.0"
}
}