forked from chill117/lnurl-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.09 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.09 KB
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
{
"name": "@daimgood/lnurl",
"version": "0.26.0",
"description": "Node.js implementation of lnurl",
"main": "index.js",
"scripts": {
"test": "npm run test:unit",
"test:unit": "./node_modules/.bin/mocha --recursive ./test/unit"
},
"bin": {
"lnurl": "cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MakePrisms/lnurl-node.git"
},
"keywords": [
"lnurl",
"bitcoin",
"lightning",
"lightning network"
],
"author": {
"name": "Charles Hill",
"email": "chill@degreesofzero.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/MakePrisms/lnurl-node/issues"
},
"homepage": "https://github.com/MakePrisms/lnurl-node",
"dependencies": {
"async": "3.2.4",
"bech32": "2.0.0",
"bignumber.js": "9.0.2",
"bolt11": "1.3.4",
"commander": "9.3.0",
"debug": "4.3.4",
"express": "4.18.1",
"lightning-backends": "1.5.1",
"lnurl-offline": "1.1.1",
"secp256k1": "4.0.3"
},
"devDependencies": {
"dotenv": "16.0.1",
"mocha": "10.0.0"
},
"readmeFilename": "README.md"
}