forked from chill117/lnurl-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.3 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
{
"name": "lnurl",
"version": "0.18.1",
"description": "Node.js implementation of lnurl",
"main": "index.js",
"scripts": {
"test": "npm run test:unit ; npm run test:integration",
"test:integration": "./node_modules/.bin/mocha --timeout 10000 --recursive ./test/integration",
"test:unit": "./node_modules/.bin/mocha --recursive ./test/unit"
},
"bin": {
"lnurl": "cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chill117/lnurl-node.git"
},
"keywords": [
"lnurl",
"bitcoin",
"lightning",
"lightning network"
],
"author": {
"name": "Charles Hill",
"email": "[email protected]"
},
"license": "MIT",
"funding": {
"type": "individual",
"url": "https://degreesofzero.com/donate.html?project=lnurl-node"
},
"bugs": {
"url": "https://github.com/chill117/lnurl-node/issues"
},
"homepage": "https://github.com/chill117/lnurl-node",
"dependencies": {
"async": "3.2.1",
"bech32": "2.0.0",
"bignumber.js": "9.0.1",
"bolt11": "1.3.2",
"commander": "8.1.0",
"debug": "4.3.2",
"express": "4.17.1",
"secp256k1": "4.0.2",
"underscore": "1.13.1"
},
"devDependencies": {
"chai": "4.3.4",
"dotenv": "10.0.0",
"mocha": "9.1.1"
},
"readmeFilename": "README.md"
}