forked from bitpay/bitcore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.82 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
{
"name": "bitcore-wallet-client",
"description": "Client for bitcore-wallet-service",
"author": "BitPay Inc",
"version": "8.25.27",
"license": "MIT",
"main": "ts_build/index.js",
"types": "ts_build/index.d.js",
"keywords": [
"bitcoin",
"copay",
"multisig",
"wallet",
"client",
"bitcore",
"BWS",
"BWC"
],
"engine": "node >= 8.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.10.0",
"async": "^0.9.0",
"awesome-typescript-loader": "^5.2.1",
"bip38": "^1.3.0",
"bitcore-mnemonic": "^8.25.25",
"crypto-wallet-core": "^8.25.27",
"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.1.0",
"typescript": "^3.9.3"
},
"devDependencies": {
"@types/lodash": "^4.14.136",
"@types/node": "^10.0.2",
"bitcore-wallet-service": "^8.25.27",
"browserify": "^13.1.0",
"chai": "^1.9.1",
"coveralls": "^3.0.2",
"istanbul": "*",
"kbpgp": "^2.1.4",
"mocha": "^5.2.0",
"mongodb": "^2.0.27",
"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",
"fix": "npm run fix:style && npm run fix:lint",
"pub": "npm run build && npm publish",
"precommit": "npm run fix && npm run lint",
"lint": "npm run lint:ts && npm run lint:style",
"lint:ts": "tslint -c ../../tslint.json 'src/**/*.ts'",
"lint:style": "prettier --check 'src/**/*.ts'",
"fix:lint": "tslint --fix -c ../../tslint.json 'src/**/*.ts'",
"fix:style": "prettier --write 'src/**/*.ts'"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid"
},
"gitHead": "012cc0216a9bc6b195035855bd17149bad41acd1"
}