forked from sc-forks/testrpc-sc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.11 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
{
"name": "ganache-cli",
"version": "6.1.2",
"bin": {
"ganache-cli": "./build/cli.node.js"
},
"main": "./build/lib.node.js",
"directories": {
"lib": "./lib"
},
"scripts": {
"start": "./build/cli.node.js",
"build": "npm run build-cli && npm run build-server && npm run build-provider && npm run build-lib",
"build-cli": "webpack-cli --config ./webpack/cli.webpack.config.js",
"build-server": "webpack-cli --config ./webpack/server.webpack.config.js",
"build-provider": "webpack-cli --config ./webpack/provider.webpack.config.js",
"build-lib": "webpack-cli --config ./webpack/lib.webpack.config.js",
"prepare": "npm run build"
},
"devDependencies": {
"ganache-core": "hosho/ganache-core-sc",
"on-build-webpack": "^0.1.0",
"prepend-file": "^1.3.1",
"shebang-loader": "0.0.1",
"web3": "^1.0.0-beta.30",
"webpack": "^4.0.1",
"yargs": "^11.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/trufflesuite/ganache-cli"
},
"dependencies": {
"source-map-support": "^0.5.3",
"webpack-cli": "^2.0.9"
},
"license": "MIT"
}