forked from trufflesuite/ganache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.42 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
{
"name": "ganache-core",
"version": "2.2.1",
"main": "./index.js",
"engines": {
"node": ">=8.9.0"
},
"directories": {
"lib": "./lib"
},
"scripts": {
"build": "npm run build-core",
"build-core": "webpack-cli --config ./webpack/node/core.webpack.config.js",
"build-provider": "webpack-cli --config ./webpack/node/provider.webpack.config.js",
"build-server": "webpack-cli --config ./webpack/node/server.webpack.config.js",
"build-web": "webpack-cli --config ./webpack/web-experimental/core.webpack.config.js && webpack-cli --config ./webpack/web-experimental/server.webpack.config.js && webpack-cli --config ./webpack/web-experimental/provider.webpack.config.js",
"prepublishOnly": "npm run test && npm run build && npm run test-build",
"test": "mocha --check-leaks --recursive --globals _scratch,sanitizedData",
"test-build": "cross-env TEST_BUILD=node mocha --check-leaks --recursive --globals _scratch,sanitizedData",
"test-web-experimental": "cross-env TEST_BUILD=web-experimental mocha --check-leaks --recursive --globals _scratch,sanitizedData"
},
"dependencies": {
"abstract-leveldown": "3.0.0",
"async": "2.6.1",
"bip39": "2.5.0",
"bn.js": "4.11.8",
"cachedown": "1.0.0",
"clone": "2.1.2",
"debug": "3.1.0",
"encoding-down": "5.0.4",
"eth-sig-util": "2.0.2",
"ethereumjs-abi": "0.6.5",
"ethereumjs-account": "2.0.5",
"ethereumjs-block": "1.2.2",
"ethereumjs-tx": "1.3.4",
"ethereumjs-util": "5.2.0",
"ethereumjs-vm": "2.4.0",
"heap": "0.2.6",
"intercept-require": "^1.1.0",
"level-sublevel": "6.6.4",
"levelup": "3.1.1",
"lodash": "4.17.10",
"merkle-patricia-tree": "2.3.1",
"seedrandom": "2.4.4",
"tmp": "0.0.33",
"web3-provider-engine": "^14.0.6",
"websocket": "1.0.26"
},
"devDependencies": {
"ethereumjs-wallet": "0.6.2",
"assert-match": "1.1.1",
"browserfs": "1.4.3",
"cross-env": "5.2.0",
"memdown": "1.3.1",
"mocha": "5.2.0",
"pify": "4.0.0",
"solc": "0.4.24",
"source-map-support": "^0.5.9",
"temp": "0.8.3",
"webpack": "4.17.1",
"webpack-bundle-size-analyzer": "2.7.0",
"webpack-cli": "3.1.0",
"web3": "1.0.0-beta.35"
},
"optionalDependencies": {
"ethereumjs-wallet": "0.6.2",
"web3": "1.0.0-beta.35"
},
"repository": {
"type": "git",
"url": "https://github.com/trufflesuite/ganache-core"
},
"license": "MIT"
}