forked from dashevo/js-dpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.09 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
{
"name": "@dashevo/dpp",
"version": "0.9.0-dev.3",
"description": "The JavaScript implementation of the Dash Platform Protocol",
"scripts": {
"lint": "eslint .",
"test": "npm run test:coverage && npm run test:browsers",
"build": "webpack --display-error-details",
"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)",
"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",
"author": "",
"license": "MIT",
"publishConfig": {
"tag": "dev"
},
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.2.0",
"@dashevo/dp-services-ctl": "^0.7.3",
"@dashevo/dpns-contract": "^0.1.0",
"babel-loader": "^8.0.4",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"dirty-chai": "^2.0.1",
"dotenv": "^7.0.0",
"eslint": "^5.6.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.13.0",
"karma": "^4.0.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-webpack": "^3.0.5",
"mocha": "^5.2.0",
"mocha-sinon": "^2.1.0",
"nyc": "^14.1.0",
"rewiremock": "^3.12.3",
"sinon": "^7.2.7",
"sinon-chai": "^3.2.0",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"@dashevo/dashcore-lib": "^0.17.8",
"ajv": "^6.5.4",
"bs58": "^4.0.1",
"cbor": "^4.1.1",
"lodash.get": "^4.4.2",
"lodash.mergewith": "^4.6.2",
"lodash.set": "^4.3.2",
"multihashes": "^0.4.13"
}
}