This repository has been archived by the owner on Oct 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.35 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
{
"name": "@dashevo/js-drive-light-client",
"version": "0.0.1",
"description": "a light client for Dash platform",
"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"
},
{
"name": "Cofresi",
"email": "[email protected]",
"url": "https://github.com/Cofresi"
}
],
"scripts": {
"lint": "eslint .",
"test": "npm run test:coverage && npm run test:browsers",
"test:coverage": "nyc --check-coverage --stmts=95 --branch=86 --funcs=93 --lines=95 mocha './test/unit/**/*.spec.js'",
"test:unit": "mocha './test/unit/**/*.spec.js'",
"test:node": "NODE_ENV=test mocha",
"test:browsers": "karma start ./karma.conf.js --single-run",
"check-package": "npm run check-package:name && npm run check-package:version",
"check-package:name": "test $(jq -r .name package.json) = $(jq -r .name package-lock.json)",
"check-package:version": "test $(jq -r .version package.json) = $(jq -r .version package-lock.json)"
},
"license": "MIT",
"dependencies": {
"@dashevo/dashcore-lib": "~0.19.11"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@dashevo/dpp": "~0.17.0-dev.2",
"babel-loader": "^8.0.6",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"core-js": "^3.6.4",
"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": "^5.0.9",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^1.3.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-webpack": "^4.0.2",
"mocha": "^7.2.0",
"nyc": "^15.1.0",
"sinon": "^8.1.1",
"sinon-chai": "^3.4.0",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dashevo/js-drive-light-client.git"
}
}