-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
113 lines (113 loc) · 3.71 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "dash",
"version": "4.8.0",
"description": "Dash library for JavaScript/TypeScript ecosystem (Wallet, DAPI, Primitives, BLS, ...)",
"main": "build/index.js",
"unpkg": "dist/dash.min.js",
"browser": "dist/dash.min.js",
"types": "build/index.d.ts",
"scripts": {
"start:dev": "nodemon --exec 'yarn run build && yarn run test:unit'",
"start:ts": "tsc -p tsconfig.build.json --watch",
"build": "yarn run build:ts && webpack --stats-error-details",
"build:ts": "tsc -p tsconfig.build.json",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "yarn run test:types && yarn run test:unit && yarn run test:browsers",
"test:browsers": "karma start ./karma/karma.conf.js --single-run",
"test:browsers:functional": "LOAD_ENV=true karma start ./karma/karma.functional.conf.js --single-run",
"test:unit": "ts-mocha -p tsconfig.mocha.json src/**/*.spec.ts",
"test:functional": "yarn run build:ts && LOAD_ENV=true mocha --recursive tests/functional/**/*.js",
"test:types": "yarn pnpify tsd",
"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/bls": "~1.2.9",
"@dashevo/dapi-client": "workspace:*",
"@dashevo/dapi-grpc": "workspace:*",
"@dashevo/dashcore-lib": "~0.22.0",
"@dashevo/dashpay-contract": "workspace:*",
"@dashevo/dpns-contract": "workspace:*",
"@dashevo/grpc-common": "workspace:*",
"@dashevo/masternode-reward-shares-contract": "workspace:*",
"@dashevo/wallet-lib": "workspace:*",
"@dashevo/wasm-dpp": "workspace:*",
"@dashevo/withdrawals-contract": "workspace:*",
"bs58": "^4.0.1",
"node-inspect-extracted": "^1.0.8",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/dirty-chai": "^2.0.2",
"@types/mocha": "^8.0.3",
"@types/node": "^14.6.0",
"@types/sinon": "^9.0.4",
"@types/sinon-chai": "^3.2.4",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"@yarnpkg/pnpify": "^4.0.0-rc.42",
"assert": "^2.0.0",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"chance": "^1.1.6",
"crypto-browserify": "^3.12.0",
"dirty-chai": "^2.0.1",
"dotenv-safe": "^8.2.0",
"eslint": "^8.53.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.29.0",
"events": "^3.3.0",
"https-browserify": "^1.0.0",
"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-webpack": "^5.0.0",
"mocha": "^10.2.0",
"net": "^1.0.2",
"nodemon": "^2.0.20",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"rimraf": "^3.0.2",
"sinon": "^17.0.1",
"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": "^9.5.0",
"ts-mocha": "^10.0.0",
"ts-mock-imports": "^1.3.0",
"ts-node": "^10.4.0",
"tsd": "^0.28.1",
"typescript": "^3.9.5",
"url": "^0.11.3",
"util": "^0.12.4",
"webpack": "^5.94.0",
"webpack-cli": "^4.9.1"
}
}