forked from zkfriendly/bip47
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.45 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
{
"name": "@spsina/bip47",
"version": "1.0.1",
"description": "bip47 utility functions",
"keywords": [
"bitcoin",
"bitcoinjs",
"bitcoinjs-lib",
"paynyms",
"payment-codes",
"bip47",
"bip-47"
],
"main": "./src/index.js",
"types": "./types/index.d.ts",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"build": "tsc -p ./tsconfig.json",
"format": "npm run prettier -- --write",
"format:ci": "npm run prettier -- --check",
"lint": "tslint -p tsconfig.json -c tslint.json",
"prettier": "prettier 'ts-src/**/*.ts' --ignore-path ./.prettierignore",
"test": "mocha -r ts-node/register tests/**/*.test.ts",
"coverage": "npm run build && nyc -r lcov -e .ts -x \"*.test.ts\" npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spsina/bip47.git"
},
"files": [
"src",
"types"
],
"dependencies": {
"bip32": "^3.0.1",
"bip39": "^3.0.4",
"bitcoinjs-lib": "^6.0.1",
"bs58check": "^2.1.1",
"create-hmac": "^1.1.7",
"ecpair": "^2.0.1",
"tiny-secp256k1": "^1.1.6"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"chai": "^4.3.6",
"mocha": "^9.2.1",
"nyc": "^15.1.0",
"prettier": "^2.5.1",
"ts-node": "^10.6.0",
"tslint": "^6.1.3",
"typescript": "^4.6.2"
},
"author": "Sina Parvizi",
"license": "MIT",
"bugs": {
"url": "https://github.com/spsina/bip47/issues"
}
}