This repository has been archived by the owner on Jun 10, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
76 lines (76 loc) · 2.03 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
75
76
{
"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",
"lint": "prettier --check '{src,test,bin}/**/*.js'",
"fix": "prettier --write '{src,test,bin}/**/*.js'"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"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",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"mocha": "^5.2.0",
"prettier": "^1.16.4"
},
"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": "^0.0.4-beta.2",
"plasma-utils": "^0.0.4-beta.2",
"web3": "1.0.0-beta.37"
}
}