This repository has been archived by the owner on Jan 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
96 lines (96 loc) · 2.86 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
{
"name": "@dashevo/dpp",
"version": "0.21.0",
"description": "The JavaScript implementation of the Dash Platform Protocol",
"scripts": {
"lint": "eslint .",
"test": "npm run test:coverage && npm run test:browsers",
"build": "webpack --stats-error-details",
"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=94 --funcs=95 --lines=98 mocha 'test/unit/**/*.spec.js' 'test/integration/**/*.spec.js'",
"prepublishOnly": "npm run build"
},
"main": "lib/DashPlatformProtocol.js",
"contributors": [
{
"name": "Ivan Shumkov",
"email": "ivan@shumkov.ru",
"url": "https://github.com/shumkov"
},
{
"name": "Djavid Gabibiyan",
"email": "djavid@dash.org",
"url": "https://github.com/jawid-h"
},
{
"name": "Anton Suprunchuk",
"email": "anton.suprunchuk@dash.org",
"url": "https://github.com/antouhou"
},
{
"name": "Konstantin Shuplenkov",
"email": "konstantin.shuplenkov@dash.org",
"url": "https://github.com/shuplenkov"
}
],
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.4",
"@dashevo/dashpay-contract": "^1.0.0",
"@dashevo/dpns-contract": "~0.3.0",
"acorn": "^8.5.0",
"assert": "^2.0.0",
"babel-loader": "^8.2.2",
"buffer": "^6.0.3",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-exclude": "^2.1.0",
"chai-string": "^1.5.0",
"core-js": "^3.17.2",
"crypto-browserify": "^3.12.0",
"dirty-chai": "^2.0.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.2",
"https-browserify": "^1.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",
"node-inspect-extracted": "^1.0.8",
"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",
"stream-http": "^3.2.0",
"url": "^0.11.0",
"util": "^0.12.4",
"webpack": "^5.59.1",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^8.0.0",
"@dashevo/dashcore-lib": "~0.19.25",
"@dashevo/feature-flags-contract": "0.1.0",
"@dashevo/re2-wasm": "~1.0.4",
"ajv": "^8.6.0",
"ajv-formats": "^2.1.1",
"bignumber.js": "^9.0.1",
"bs58": "^4.0.1",
"cbor": "^8.0.0",
"json-schema-traverse": "^1.0.0",
"lodash.clonedeep": "^4.5.0",
"lodash.clonedeepwith": "^4.5.0",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2",
"long": "^4.0.0"
}
}