-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
48 lines (48 loc) · 1.22 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
{
"name": "passport-lnurl-auth",
"version": "1.6.0",
"description": "Passport strategy that uses lnurl-auth",
"main": "index.js",
"scripts": {
"test": "npm run test:integration ; npm run test:unit",
"test:integration": "./node_modules/.bin/mocha --recursive ./test/integration",
"test:unit": "./node_modules/.bin/mocha --recursive ./test/unit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chill117/passport-lnurl-auth.git"
},
"keywords": [
"passport",
"strategy",
"lnurl-auth",
"lnurl",
"auth"
],
"author": {
"name": "Charles Hill",
"email": "chill@degreesofzero.com"
},
"license": "MIT",
"funding": {
"type": "individual",
"url": "https://degreesofzero.com/donate.html?project=passport-lnurl-auth"
},
"bugs": {
"url": "https://github.com/chill117/passport-lnurl-auth/issues"
},
"homepage": "https://github.com/chill117/passport-lnurl-auth#readme",
"dependencies": {
"debug": "4.3.4",
"handlebars": "4.7.8",
"lnurl": "0.26.0",
"passport-strategy": "1.0.0",
"qrcode": "1.5.3"
},
"devDependencies": {
"express": "4.19.2",
"express-session": "1.18.0",
"mocha": "10.4.0",
"passport": "0.7.0"
}
}