forked from bitpay/bitcore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.47 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
{
"name": "bitcore-wallet-client",
"description": "Client for bitcore-wallet-service",
"author": "BitPay Inc",
"version": "10.5.1",
"license": "MIT",
"main": "ts_build/index.js",
"types": "ts_build/index.d.js",
"keywords": [
"bitcoin",
"copay",
"multisig",
"wallet",
"client",
"bitcore",
"BWS",
"BWC"
],
"engines": {
"node": ">=18.0.0"
},
"repository": {
"url": "[email protected]:bitpay/bitcore-wallet-client.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/bitpay/bitcore-wallet-client/issues"
},
"dependencies": {
"ajv": "6.12.0",
"async": "0.9.2",
"bip38": "1.4.0",
"bitcore-mnemonic": "^10.3.0",
"crypto-wallet-core": "^10.3.0",
"json-stable-stringify": "1.0.1",
"lodash": "4.17.20",
"preconditions": "2.2.3",
"sjcl": "1.0.3",
"source-map-loader": "0.2.4",
"source-map-support": "0.5.19",
"superagent": "5.2.2",
"typescript": "4.9.4"
},
"devDependencies": {
"@types/lodash": "^4.14.136",
"@types/node": "^18.11.18",
"bitcore-wallet-service": "^10.5.1",
"browserify": "^13.1.0",
"chai": "^1.9.1",
"coveralls": "^3.0.2",
"istanbul": "*",
"kbpgp": "^2.1.4",
"mocha": "^5.2.0",
"mongodb": "^3.5.9",
"prettier": "^2.1.2",
"request-promise": "^4.2.4",
"sinon": "^7.1.1",
"supertest": "*",
"ts-node": "^8.0.3",
"tslint": "^5.14.0",
"typescript-eslint-parser": "^22.0.0",
"uuid": "^2.0.1"
},
"scripts": {
"start": "npm run clean && npm run tsc && node app.js",
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --reporter spec test",
"test": "npm run compile && mocha --exit",
"test:ci": "npm run test",
"docs": "TODO ./node_modules/.bin/tsdoc src/lib/* src/lib/common src/lib/errors -o docs && cat README.header.md docs/*.md LICENSE > README.md",
"coveralls": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"compile": "npm run tsc",
"tsc": "npm run clean && tsc",
"build": "tsc && npm run lint",
"clean": "rm -rf ./ts_build",
"lint": "tslint -c ../../tslint.json 'src/**/*.ts'",
"fix": "tslint --fix -c ../../tslint.json 'src/**/*.ts'",
"pub": "npm run build && npm publish",
"precommit": "npm run fix && npm run lint"
},
"gitHead": "e091d99915d099863ad3e78dbe867aa7780191e4"
}