This repository has been archived by the owner on Jul 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
82 lines (82 loc) · 2.58 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
{
"name": "dash",
"version": "3.22.0-dev.2",
"description": "Dash library for JavaScript/TypeScript ecosystem (Wallet, DAPI, Primitives, BLS, ...)",
"main": "build/src/index.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": "npm run build:web",
"build:web": "npm run build:ts && webpack --stats-error-details",
"build:ts": "tsc",
"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",
"prepare": "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.21.2",
"@dashevo/dashcore-lib": "~0.19.26",
"@dashevo/dpp": "~0.21.0",
"@dashevo/grpc-common": "~0.5.4",
"@dashevo/wallet-lib": "~7.22.0-dev.2",
"bs58": "^4.0.1",
"node-inspect-extracted": "1.0.7"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/dirty-chai": "^2.0.2",
"@types/expect": "^24.3.0",
"@types/mocha": "^8.0.3",
"@types/node": "^14.6.0",
"@types/sinon": "^9.0.4",
"@types/sinon-chai": "^3.2.4",
"assert": "^2.0.0",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"chai": "^4.2.0",
"chance": "^1.1.6",
"crypto-browserify": "^3.12.0",
"dirty-chai": "^2.0.1",
"dotenv-safe": "^8.2.0",
"https-browserify": "^1.0.0",
"karma": "^5.1.1",
"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": "^5.0.0",
"mocha": "^8.1.1",
"nodemon": "^2.0.4",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"rimraf": "^3.0.2",
"sinon": "^9.0.3",
"sinon-chai": "^3.5.0",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"ts-loader": "^8.0.2",
"ts-mock-imports": "^1.3.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.5",
"url": "^0.11.0",
"util": "^0.12.4",
"webpack": "^5.59.1",
"webpack-cli": "^4.9.1"
}
}