forked from dashevo/js-dash-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.12 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
{
"name": "dash",
"version": "3.13.3",
"description": "Dash library for JavaScript/TypeScript ecosystem (Wallet, DAPI, Primitives, BLS, ...)",
"main": "dist/dash.cjs.js",
"unpkg": "dist/dash.min.js",
"types": "dist/src/index.d.ts",
"scripts": {
"start:dev": "nodemon --exec 'npm run build && npm run test:unit'",
"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": "npm run test:unit && npm run test:functional && npm run test:browsers",
"test:browsers": "karma start ./karma.conf.js --single-run",
"test:unit": "mocha -r ts-node/register \"src/**/*.spec.ts\"",
"test:functional": "npm run build && mocha --recursive tests/functional/**/*.js",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dashevo/DashJS.git"
},
"author": "Dash Core Group <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dashevo/DashJS/issues"
},
"homepage": "https://github.com/dashevo/DashJS#readme",
"dependencies": {
"@dashevo/dapi-client": "^0.13.2",
"@dashevo/dashcore-lib": "^0.18.4",
"@dashevo/wallet-lib": "7.13.3",
"@dashevo/dpp": "^0.13.1",
"bs58": "^4.0.1"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.13",
"chai": "^4.2.0",
"chance": "^1.1.6",
"dotenv-safe": "^8.2.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": "^8.0.1",
"nodemon": "^2.0.4",
"rimraf": "^3.0.2",
"ts-loader": "^7.0.5",
"ts-node": "^8.10.2",
"typescript": "^3.9.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-node-externals": "^1.7.2"
}
}