-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.49 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.49 KB
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
77
78
79
80
81
82
83
84
{
"name": "@dashevo/dapi",
"private": true,
"version": "3.1.0-dev.1",
"description": "A decentralized API for the Dash network",
"scripts": {
"api": "node scripts/api.js",
"core-streams": "node scripts/core-streams.js",
"test": "yarn run test:coverage && yarn run test:functional",
"test:coverage": "nyc --check-coverage --lines=50 --branches=50 --functions=50 yarn run 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": "yarn run oas:setversion && swagger-jsdoc -d doc/swaggerDef.js lib/rpcServer/**/*.js -o doc/swagger.json"
},
"ultra": {
"concurrent": [
"test"
]
},
"nyc": {
"include": [
"lib/**/*.js"
],
"exclude": [
"**/node_modules/**",
"**/test/**",
"**/coverage/**"
],
"all": true
},
"dependencies": {
"@dashevo/bls": "~1.2.9",
"@dashevo/dapi-grpc": "workspace:*",
"@dashevo/dashcore-lib": "~0.22.0",
"@dashevo/dashd-rpc": "^19.0.0",
"@dashevo/grpc-common": "workspace:*",
"@dashevo/wasm-dpp": "workspace:*",
"@grpc/grpc-js": "^1.14.3",
"@pshenmic/zeromq": "6.0.0-beta.22",
"ajv": "^8.18.0",
"bs58": "^4.0.1",
"cbor": "^8.0.0",
"dotenv": "^8.6.0",
"dotenv-expand": "^5.1.0",
"dotenv-safe": "^8.2.0",
"google-protobuf": "^3.12.2",
"jayson": "^4.1.0",
"lodash": "^4.17.23",
"lru-cache": "^5.1.1",
"pino": "^9.13.0",
"pino-pretty": "^10.2.3",
"ws": "^8.17.1"
},
"devDependencies": {
"@babel/core": "^7.26.10",
"@dashevo/dapi-client": "workspace:*",
"@dashevo/dp-services-ctl": "github:dashevo/js-dp-services-ctl#v0.19-dev",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"dirty-chai": "^2.0.1",
"eslint": "^9.18.0",
"mocha": "^11.1.0",
"mocha-sinon": "^2.1.2",
"nyc": "^15.1.0",
"semver": "^7.5.3",
"sinon": "^18.0.1",
"sinon-chai": "^3.7.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"
}