-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.84 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.84 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@dashevo/dapi-client",
"version": "3.1.0-dev.1",
"description": "Client library used to access Dash DAPI endpoints",
"main": "lib/index.js",
"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"
}
],
"dependencies": {
"@dashevo/dapi-grpc": "workspace:*",
"@dashevo/dash-spv": "workspace:*",
"@dashevo/dashcore-lib": "~0.22.0",
"@dashevo/grpc-common": "workspace:*",
"@dashevo/wasm-dpp": "workspace:*",
"bs58": "^4.0.1",
"cbor": "^8.0.0",
"google-protobuf": "^3.12.2",
"lodash": "^4.17.23",
"node-fetch": "^2.6.7",
"node-inspect-extracted": "^1.0.8",
"wasm-x11-hash": "~0.0.2",
"winston": "^3.2.1"
},
"devDependencies": {
"@babel/core": "^7.26.10",
"assert-browserify": "^2.0.0",
"babel-loader": "^9.1.3",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"comment-parser": "^0.7.6",
"core-js": "^3.33.1",
"crypto-browserify": "^3.12.1",
"dirty-chai": "^2.0.1",
"eslint": "^9.18.0",
"events": "^3.3.0",
"karma": "^6.4.3",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^2.1.2",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-webpack": "^5.0.0",
"mocha": "^11.1.0",
"nyc": "^15.1.0",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"setimmediate": "^1.0.5",
"sinon": "^18.0.1",
"sinon-chai": "^3.7.0",
"stream-browserify": "^3.0.0",
"string_decoder": "^1.3.0",
"url": "^0.11.3",
"util": "^0.12.4",
"webpack": "^5.104.0",
"webpack-cli": "^4.9.1"
},
"files": [
"docs",
"lib",
"polyfills",
"dist"
],
"scripts": {
"build:web": "webpack",
"lint": "eslint .",
"test": "yarn run test:coverage && yarn run test:browsers",
"test:unit": "mocha './test/unit/**/*.spec.js'",
"test:integration": "mocha './test/integration/**/*.spec.js'",
"test:node": "NODE_ENV=test mocha",
"test:browsers": "karma start ./karma.conf.js --single-run",
"test:coverage": "NODE_ENV=test nyc --check-coverage --stmts=98 --branch=98 --funcs=98 --lines=89 yarn run mocha 'test/unit/**/*.spec.js' 'test/integration/**/*.spec.js'",
"prepublishOnly": "yarn run build:web"
},
"ultra": {
"concurrent": [
"clean"
]
},
"license": "MIT"
}