This repository has been archived by the owner on Dec 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
103 lines (103 loc) · 2.91 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
{
"name": "@dashevo/drive",
"version": "0.21.1",
"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": "npm run test:coverage",
"test:coverage": "nyc --check-coverage --stmts=93 --branch=85 --funcs=90 --lines=92 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",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-string": "^1.5.0",
"dirty-chai": "^2.0.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"levelup": "^4.4.0",
"memdown": "^5.1.0",
"mocha": "^7.1.1",
"nyc": "^15.0.0",
"sinon": "^9.0.1",
"sinon-chai": "^3.5.0"
},
"dependencies": {
"@dashevo/abci": "~0.21.0",
"@dashevo/dapi-grpc": "~0.21.0",
"@dashevo/dashcore-lib": "~0.19.26",
"@dashevo/dashd-rpc": "^2.3.1",
"@dashevo/dashd-zmq": "^1.2.1",
"@dashevo/dpp": "~0.21.0",
"@dashevo/feature-flags-contract": "~0.2.1",
"@dashevo/grpc-common": "~0.5.4",
"@dashevo/merk": "github:dashevo/node-merk",
"ajv": "^8.6.0",
"ajv-keywords": "^5.0.0",
"awilix": "^4.2.5",
"blake3": "^2.1.4",
"browserify": "^16.5.1",
"bs58": "^4.0.1",
"cbor": "^5.0.1",
"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",
"level-rocksdb": "^4.0.0",
"level-transactions": "^2.1.4",
"lodash.escaperegexp": "^4.1.2",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2",
"long": "^4.0.0",
"lru-cache": "^5.1.1",
"mongodb": "^3.5.5",
"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.0"
}
}