forked from dashevo/dapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.39 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": "@dashevo/dapi",
"version": "0.21.0",
"description": "A decentralized API for the Dash network",
"scripts": {
"api": "node scripts/api.js",
"tx-filter-stream": "node scripts/tx-filter-stream.js",
"test": "(EXIT_CODE=0; npm run test:coverage || EXIT_CODE=$?; npm run test:functional || EXIT_CODE=$?; exit $EXIT_CODE)",
"test:coverage": "nyc --check-coverage --lines=50 --branches=50 --functions=50 mocha --recursive test/unit test/integration",
"test:unit": "mocha --recursive test/unit",
"test:integration": "mocha --recursive test/integration",
"test:functional": "mocha --recursive test/functional",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"oas:setversion": "jq -r .version package.json | xargs -I{} sed -i \"s/version:.*/version: '{}',/\" doc/swaggerDef.js",
"oas:generate": "npm run oas:setversion && 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": {
"@dashevo/dapi-grpc": "~0.21.0",
"@dashevo/dashcore-lib": "~0.19.26",
"@dashevo/dashd-rpc": "^2.3.0",
"@dashevo/dpp": "~0.21.0",
"@dashevo/grpc-common": "~0.5.4",
"@grpc/grpc-js": "^1.3.6",
"ajv": "^8.6.0",
"bs58": "^4.0.1",
"cbor": "^4.1.5",
"dotenv": "^6.0.0",
"dotenv-expand": "^5.1.0",
"dotenv-safe": "^8.2.0",
"jayson": "^2.0.4",
"lodash": "^4.17.19",
"request": "^2.87.0",
"request-promise-native": "^1.0.5",
"ws": "^7.5.3",
"zeromq": "5.2.0"
},
"devDependencies": {
"@dashevo/dapi-client": "~0.21.0",
"@dashevo/dp-services-ctl": "github:dashevo/js-dp-services-ctl#v0.19-dev",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"dirty-chai": "^2.0.1",
"eslint": "^5.8.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.20.0",
"mocha": "^8.1.3",
"mocha-sinon": "^2.1.0",
"nyc": "^14.0.0",
"semver": "^7.3.2",
"sinon": "^7.5.0",
"sinon-chai": "^3.4.0",
"swagger-jsdoc": "^3.5.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dashevo/dapi.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/dashevo/dapi/issues"
},
"homepage": "https://github.com/dashevo/dapi#readme"
}