forked from dashpay/platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 3.04 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
97
98
{
"name": "dash",
"version": "3.23.0-dev.4",
"description": "Dash library for JavaScript/TypeScript ecosystem (Wallet, DAPI, Primitives, BLS, ...)",
"main": "build/src/index.js",
"unpkg": "dist/dash.min.js",
"browser": "dist/dash.min.js",
"types": "dist/src/index.d.ts",
"scripts": {
"start:dev": "nodemon --exec 'yarn run build && yarn run test:unit'",
"start:ts": "tsc --watch",
"build": "yarn run build:ts && webpack --stats-error-details",
"build:ts": "tsc",
"lint": "",
"test": "yarn run test:unit && yarn run test:functional && yarn run test:browsers",
"test:browsers": "karma start ./karma.conf.js --single-run",
"test:unit": "TS_NODE_COMPILER_OPTIONS={\"target\":\"es6\"} ts-mocha \"src/**/*.spec.ts\"",
"test:functional": "yarn run build && mocha --recursive tests/functional/**/*.js",
"prepublishOnly": "yarn run build",
"prepare": "yarn run build"
},
"ultra": {
"concurrent": [
"test"
]
},
"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": "workspace:~",
"@dashevo/dashcore-lib": "~0.19.39",
"@dashevo/dashpay-contract": "workspace:~",
"@dashevo/dpns-contract": "workspace:~",
"@dashevo/dpp": "workspace:~",
"@dashevo/grpc-common": "workspace:~",
"@dashevo/masternode-reward-shares-contract": "workspace:~",
"@dashevo/wallet-lib": "workspace:~",
"bs58": "^4.0.1",
"node-inspect-extracted": "^1.0.8"
},
"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.3.4",
"chance": "^1.1.6",
"crypto-browserify": "^3.12.0",
"dirty-chai": "^2.0.1",
"dotenv-safe": "^8.2.0",
"events": "^3.3.0",
"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.2",
"net": "^1.0.2",
"nodemon": "^2.0.4",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"rimraf": "^3.0.2",
"sinon": "^11.1.2",
"sinon-chai": "^3.7.0",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"string_decoder": "^1.3.0",
"terser-webpack-plugin": "^5.3.1",
"tls": "^0.0.1",
"ts-loader": "^8.0.2",
"ts-mocha": "^8.0.0",
"ts-mock-imports": "^1.3.0",
"ts-node": "^10.4.0",
"typescript": "^3.9.5",
"url": "^0.11.0",
"util": "^0.12.4",
"webpack": "^5.59.1",
"webpack-cli": "^4.9.1"
}
}