forked from plasma-group/plasma-chain-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.82 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
{
"name": "plasma-chain",
"version": "0.0.17",
"description": "Plasma operator & simple REST server",
"main": "index.js",
"scripts": {
"plasma-chain": "./bin/plasma-chain.js",
"clean": "rm -rf db",
"interactive": "node",
"test": "env CONFIG='./config-test.json' NODE_ENV='test' mocha --timeout 200000 --recursive",
"test-debug": "env CONFIG='./config-test.json' NODE_ENV='test' mocha debug --timeout 200000 --recursive"
},
"bin": {
"plasma-chain": "./bin/plasma-chain.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/plasma-group/plasma-chain-operator.git"
},
"keywords": [
"plasma",
"chain",
"operator"
],
"author": "Plasma Group",
"license": "MIT",
"bugs": {
"url": "https://github.com/plasma-group/plasma-chain-operator/issues"
},
"homepage": "https://github.com/plasma-group/plasma-chain-operator#readme",
"devDependencies": {
"chai-http": "^4.2.0",
"eslint": "^5.10.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^5.2.0"
},
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"chai": "^4.2.0",
"colors": "^1.3.3",
"commander": "^2.19.0",
"cors": "^2.8.5",
"debug": "^4.1.1",
"decimal.js-light": "^2.5.0",
"express": "^4.16.4",
"fs-extra": "^7.0.1",
"inquirer": "^6.2.1",
"leveldown": "^4.0.1",
"levelup": "^3.1.1",
"lodash": "^4.17.11",
"plasma-contracts": "git+https://github.com/plasma-group/plasma-contracts.git",
"plasma-explorer": "git+https://github.com/plasma-group/plasma-explorer.git",
"plasma-utils": "git+https://github.com/plasma-group/plasma-utils.git",
"web3": "1.0.0-beta.37"
}
}