-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·68 lines (68 loc) · 1.9 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
{
"name": "@axerunners/dapi",
"version": "0.0.1",
"description": "A Decentralized API for AXE Masternodes",
"scripts": {
"start": "node lib/app.js",
"test": "nyc --check-coverage --lines=51 --branches=27 --functions=50 mocha --recursive test/unit",
"test:full-reporting": "nyc --check-coverage --reporter=html --reporter=text --lines=42 --branches=20 --functions=40 mocha test/ --recursive",
"test:integration": "node test/integration/",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"oas:generate": "swagger-jsdoc -d doc/swaggerDef.js lib/rpcServer/**/*.js -o doc/swagger.json"
},
"nyc": {
"include": [
"lib/**/*.js"
],
"exclude": [
"**/node_modules/**",
"**/test/**",
"**/coverage/**"
],
"all": true
},
"dependencies": {
"@axerunners/axecore-lib": "0.17.0",
"@axerunners/axecore-p2p": "^1.1.9",
"@axerunners/axed-rpc": "^1.3.0",
"ajv": "^6.4.0",
"bloom-filter": "^0.2.0",
"cbor": "^4.1.5",
"dotenv": "^6.0.0",
"jayson": "^2.0.4",
"lodash": "^4.17.4",
"node-cache": "^4.1.1",
"request": "^2.87.0",
"request-promise-native": "^1.0.5",
"zeromq": "^5.1.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"dirty-chai": "^2.0.1",
"eslint": "^5.12.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"istanbul": "^0.4.5",
"mocha": "^4.1.0",
"nodemon": "^1.18.9",
"nyc": "^13.3.0",
"proxyquire": "^2.1.0",
"should": "^13.2.3",
"sinon": "^7.2.3",
"sinon-chai": "^3.3.0",
"swagger-jsdoc": "^3.2.6"
},
"main": "lib/app.js",
"repository": {
"type": "git",
"url": "git+https://github.com/axerunners/dapi.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/axerunners/dapi/issues"
},
"homepage": "https://github.com/axerunners/dapi#readme"
}