forked from bitcoinjs/bolt11
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.16 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
{
"name": "@lamassu/bolt11",
"version": "1.5.1",
"description": "Fork from the bitcoinjs/bolt11 lib, remove types for node6 support",
"main": "payreq.js",
"scripts": {
"coverage-report": "nyc report --reporter=lcov --reporter=html",
"coverage": "nyc --check-coverage --statements 100 --branches 100 --functions 100 --lines 100 npm run unit",
"standard": "standard",
"test": "npm run standard && npm run coverage",
"unit": "tape test/*.js"
},
"devDependencies": {
"nyc": "^15.0.0",
"standard": "*",
"tap-dot": "*",
"tape": "^4.13.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bitcoinjs/bolt11.git"
},
"keywords": [
"invoice",
"payment",
"request",
"lightning",
"network",
"bolt11",
"bech32"
],
"author": "Jonathan Underwood",
"license": "MIT",
"bugs": {
"url": "https://github.com/bitcoinjs/bolt11/issues"
},
"homepage": "https://github.com/bitcoinjs/bolt11#readme",
"dependencies": {
"bech32": "^1.1.2",
"bitcoinjs-lib": "4.0.3",
"bn.js": "^4.11.8",
"create-hash": "^1.2.0",
"lodash": "^4.17.11",
"safe-buffer": "^5.1.1"
}
}