forked from trufflesuite/ganache-cli-archive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.18 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
{
"name": "ganache-cli",
"version": "6.1.7",
"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": {
"bn.js": "^4.11.6",
"ganache-core": "2.2.1",
"babel-cli": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"on-build-webpack": "^0.1.0",
"prepend-file": "^1.3.1",
"shebang-loader": "0.0.1",
"webpack": "^4.0.1",
"webpack-cli": "^3.0.6",
"yargs": "^11.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/trufflesuite/ganache-cli"
},
"dependencies": {
"source-map-support": "^0.5.3"
},
"license": "MIT"
}