This repository has been archived by the owner on Dec 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
67 lines (67 loc) · 2.02 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
{
"name": "@dashevo/platform-test-suite",
"version": "0.21.0",
"description": "Dash Network end-to-end tests",
"private": true,
"scripts": {
"test": "mocha './test/**/*.spec.js'",
"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 --single-run"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/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": {
"browserify-zlib": "^0.2.0",
"@dashevo/dashcore-lib": "~0.19.26",
"@dashevo/dpns-contract": "^0.4.0",
"@dashevo/dpp": "~0.21.0",
"@dashevo/feature-flags-contract": "^0.2.1",
"@dashevo/grpc-common": "~0.5.4",
"@dashevo/merk": "github:dashevo/node-merk",
"@dashevo/wallet-lib": "~7.21.0",
"assert-browserify": "^2.0.0",
"blake3": "^2.1.4",
"buffer": "^6.0.3",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"crypto-browserify": "^3.12.0",
"dash": "~3.21.2",
"dirty-chai": "^2.0.1",
"dotenv-safe": "^8.2.0",
"github-api": "^3.3.0",
"https-browserify": "^1.0.0",
"js-merkle": "^0.1.5",
"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",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"semver": "^7.3.2",
"sinon": "^9.2.0",
"sinon-chai": "^3.5.0",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"url": "^0.11.0",
"webpack": "^5.55.1"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2"
}
}