forked from dashpay/platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.5 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
{
"name": "@dashevo/platform-test-suite",
"private": true,
"version": "1.1.0-dev.1",
"description": "Dash Network end-to-end tests",
"scripts": {
"test": "yarn exec bin/test.sh",
"lint": "eslint .",
"test:e2e": "NODE_ENV=test mocha 'test/e2e/**/*.spec.js'",
"test:functional": "NODE_ENV=test mocha 'test/functional/**/*.spec.js'",
"test:browsers": "karma start ./karma.conf.js"
},
"bin": {
"test": "bin/test.sh"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/dashevo/platform-test-suite.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/dashevo/platform-test-suite/issues"
},
"homepage": "https://github.com/dashevo/platform-test-suite#readme",
"dependencies": {
"@dashevo/dapi-client": "workspace:*",
"@dashevo/dashcore-lib": "~0.21.3",
"@dashevo/dpns-contract": "workspace:*",
"@dashevo/feature-flags-contract": "workspace:*",
"@dashevo/grpc-common": "workspace:*",
"@dashevo/masternode-reward-shares-contract": "workspace:*",
"@dashevo/wallet-lib": "workspace:*",
"@dashevo/wasm-dpp": "workspace:*",
"@dashevo/withdrawals-contract": "workspace:*",
"assert": "^2.0.0",
"assert-browserify": "^2.0.0",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"bufferutil": "^4.0.6",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"crypto-browserify": "^3.12.0",
"dash": "workspace:*",
"dirty-chai": "^2.0.1",
"dotenv-safe": "^8.2.0",
"events": "^3.3.0",
"glob": "^10.3.4",
"https-browserify": "^1.0.0",
"js-merkle": "^0.1.5",
"karma": "^6.4.3",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^2.1.2",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^5.0.0",
"localforage": "^1.10.0",
"mocha": "^10.2.0",
"net": "^1.0.2",
"nodeforage": "^1.1.2",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"semver": "^7.5.3",
"setimmediate": "^1.0.5",
"sinon": "^17.0.1",
"sinon-chai": "^3.7.0",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"string_decoder": "^1.3.0",
"tls": "^0.0.1",
"url": "^0.11.3",
"utf-8-validate": "^5.0.9",
"util": "^0.12.4",
"webpack": "^5.76.1",
"ws": "^8.17.1"
},
"devDependencies": {
"eslint": "^8.53.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.0"
}
}