forked from dashpay/platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.05 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@dashevo/drive",
"private": true,
"version": "0.23.0-dev.4",
"description": "Replicated state machine for Dash Platform",
"engines": {
"node": ">=12"
},
"contributors": [
{
"name": "Ivan Shumkov",
"email": "[email protected]",
"url": "https://github.com/shumkov"
},
{
"name": "Djavid Gabibiyan",
"email": "[email protected]",
"url": "https://github.com/jawid-h"
},
{
"name": "Anton Suprunchuk",
"email": "[email protected]",
"url": "https://github.com/antouhou"
},
{
"name": "Konstantin Shuplenkov",
"email": "[email protected]",
"url": "https://github.com/shuplenkov"
}
],
"scripts": {
"abci": "node scripts/abci",
"lint": "eslint .",
"test": "yarn run test:coverage",
"test:coverage": "nyc --check-coverage --stmts=93 --branch=85 --funcs=90 --lines=90 yarn run mocha './test/unit/**/*.spec.js' './test/integration/**/*.spec.js'",
"test:unit": "mocha './test/unit/**/*.spec.js'",
"test:integration": "mocha './test/integration/**/*.spec.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dashevo/js-drive.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/dashevo/js-drive/issues"
},
"homepage": "https://github.com/dashevo/js-drive",
"devDependencies": {
"@dashevo/dp-services-ctl": "github:dashevo/js-dp-services-ctl#v0.19-dev",
"@types/pino": "^6.3.0",
"babel-eslint": "^10.1.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-string": "^1.5.0",
"dirty-chai": "^2.0.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.2",
"levelup": "^4.4.0",
"memdown": "^5.1.0",
"mocha": "^9.1.2",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"sinon": "^11.1.2",
"sinon-chai": "^3.7.0"
},
"dependencies": {
"@dashevo/abci": "~0.23.0-dev.1",
"@dashevo/dapi-grpc": "workspace:~",
"@dashevo/dashcore-lib": "~0.19.39",
"@dashevo/dashd-rpc": "^2.3.2",
"@dashevo/dashpay-contract": "workspace:~",
"@dashevo/dpns-contract": "workspace:~",
"@dashevo/dpp": "workspace:~",
"@dashevo/feature-flags-contract": "workspace:~",
"@dashevo/grpc-common": "workspace:~",
"@dashevo/masternode-reward-shares-contract": "workspace:~",
"@dashevo/rs-drive": "0.23.0-dev.5.pr.114.5",
"ajv": "^8.6.0",
"ajv-keywords": "^5.0.0",
"awilix": "^4.2.6",
"blake3": "^2.1.4",
"browserify": "^16.5.1",
"bs58": "^4.0.1",
"cbor": "^8.0.0",
"chalk": "^4.1.0",
"dotenv-expand": "^5.1.0",
"dotenv-safe": "^8.2.0",
"find-my-way": "^2.2.2",
"js-merkle": "^0.1.5",
"lodash.clonedeep": "^4.5.0",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2",
"long": "^5.2.0",
"lru-cache": "^5.1.1",
"node-graceful": "^3.0.1",
"pino": "^6.4.0",
"pino-multi-stream": "^5.2.0",
"pino-pretty": "^4.0.3",
"rimraf": "^3.0.2",
"setimmediate": "^1.0.5",
"through2": "^3.0.1",
"zeromq": "^5.2.8"
}
}