This repository has been archived by the owner on Jul 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.96 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
{
"name": "api-server",
"version": "1.0.0",
"description": "api-server",
"apidoc": {
"title": "API Documentation of the Blockchain Benchmark Tool",
"url": "https://bpt-lab.org/bp2017w1-bpchain"
},
"main": "index.js",
"scripts": {
"start": "nodemon --exec node -- src/index.js",
"lint": "eslint .",
"cover": "istanbul cover _mocha test --include-all-sources true --report lcovonly --default-excludes --",
"test": "rm -rf coverage && npm run lint && npm run cover",
"coveralls": "cat ./coverage/lcov.info | coveralls && cat ./coverage/lcov.info | codeclimate-test-reporter && rm -rf ./coverage",
"apidoc": "apidoc -i ./components && apidoc-markdown -p doc -o apidoc.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BPChain/api-server.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/BPChain/api-server/issues"
},
"homepage": "https://github.com/BPChain/api-server#readme",
"devDependencies": {
"apidoc": "^0.17.6",
"apidoc-markdown": "^0.2.0",
"assert": "^1.4.1",
"babel-eslint": "^8.2.2",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"codeclimate-test-reporter": "^0.5.0",
"coveralls": "^3.0.0",
"eslint": "^4.19.1",
"mocha-lcov-reporter": "^1.3.0"
},
"dependencies": {
"axios": "^0.17.1",
"body-parser": "^1.18.2",
"bunyan": "^1.8.12",
"connect-mongo": "^2.0.1",
"cors": "^2.8.4",
"crypto": "^1.0.1",
"execa": "^0.8.0",
"express": "^4.16.2",
"express-fileupload": "^0.4.0",
"express-session": "^1.15.6",
"fs-extra": "^4.0.2",
"helmet": "^3.12.0",
"helmet-csp": "^2.7.0",
"http": "0.0.0",
"isodate": "^0.1.4",
"istanbul": "^1.0.0-alpha.2",
"mocha": "^4.1.0",
"mongoose": "^4.13.11",
"morgan": "^1.9.0",
"node-cache": "^4.1.1",
"nodemon": "^1.17.5",
"sleepjs": "^3.0.0",
"socket.io": "^2.0.4",
"ws": "^3.3.3",
"xml2js": "^0.4.19"
}
}