This repository has been archived by the owner on Jan 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
88 lines (88 loc) · 2.54 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
{
"name": "@dashevo/dapi-client",
"version": "0.21.2",
"description": "Client library used to access Dash DAPI endpoints",
"main": "lib/DAPIClient.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": "~0.21.0",
"@dashevo/dashcore-lib": "~0.19.26",
"@dashevo/dpp": "~0.21.0",
"@dashevo/grpc-common": "~0.5.4",
"@grpc/grpc-js": "^1.3.7",
"axios": "^0.21.1",
"bs58": "^4.0.1",
"cbor": "^7.0.5",
"lodash.sample": "^4.2.1",
"node-inspect-extracted": "^1.0.7"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"assert-browserify": "^2.0.0",
"babel-loader": "^8.0.6",
"buffer": "^6.0.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"core-js": "^3.6.4",
"crypto-browserify": "^3.12.0",
"dirty-chai": "^2.0.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsdoc": "^27.0.0",
"karma": "^6.3.4",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^2.1.1",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-webpack": "^5.0.0",
"mocha": "^9.1.1",
"nyc": "^15.1.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"sinon": "^11.1.2",
"sinon-chai": "^3.7.0",
"stream-browserify": "^3.0.0",
"url": "^0.11.0",
"webpack": "^5.52.1",
"webpack-cli": "^4.8.0"
},
"files": [
"docs",
"lib"
],
"scripts": {
"build": "webpack",
"lint": "eslint .",
"test": "npm run test:coverage && npm 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=95 mocha 'test/unit/**/*.spec.js' 'test/integration/**/*.spec.js'",
"prepublishOnly": "npm run build"
},
"license": "MIT"
}