This repository has been archived by the owner on Jan 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
73 lines (73 loc) · 2.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
{
"name": "@dashevo/wallet-lib",
"version": "7.22.0-dev.2",
"description": "Light wallet library for Dash",
"main": "src/index.js",
"unpkg": "dist/wallet-lib.min.js",
"scripts": {
"build": "webpack --display-error-details",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test:unit": "nyc mocha 'src/**/*.spec.js'",
"test:functional": "nyc mocha 'tests/functional/*.js'",
"test:integration": "nyc mocha 'tests/integration/**/*.spec.js'",
"test:browsers": "karma start ./karma.conf.js --single-run",
"test": "npm run test:unit && npm run test:integration && npm run test:functional && npm run test:browsers",
"prepublishOnly": "npm run build"
},
"files": [
"dist",
"docs",
"examples",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dashevo/wallet-lib.git"
},
"keywords": [
"cryptocurrency",
"dash",
"wallet"
],
"author": "Dash Core Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/dashevo/wallet-lib/issues"
},
"homepage": "https://github.com/dashevo/wallet-lib#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",
"cbor": "^7.0.5",
"crypto-js": "^4.0.0",
"lodash": "^4.17.19",
"pbkdf2": "^3.1.1",
"setimmediate": "^1.0.5",
"winston": "^3.2.1"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"dotenv-safe": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"karma": "^5.0.9",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.2",
"localforage": "^1.7.3",
"mocha": "^7.2.0",
"node-inspect-extracted": "1.0.7",
"nyc": "^15.0.0",
"sinon": "^9.0.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
}
}