forked from ejhayes/passport-otp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 976 Bytes
/
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
{
"name": "passport-otp-strategy",
"version": "1.0.1",
"description": "TOTP authentication strategy for Passport.",
"keywords": [
"passport",
"otp",
"oath",
"totp",
"auth",
"authn",
"authentication"
],
"repository": {
"type": "git",
"url": "git://github.com/ejhayes/passport-otp.git"
},
"bugs": {
"url": "http://github.com/ejhayes/passport-otp/issues"
},
"author": {
"name": "Eric Hayes",
"email": "[email protected]",
"url": "https://github.com/ejhayes"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
}
],
"main": "./lib",
"dependencies": {
"otplib": "^11.0.0",
"passport-strategy": "^1.0.0",
"pkginfo": "^0.4.1"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^6.1.4"
},
"scripts": {
"test": "NODE_PATH=./lib node_modules/.bin/mocha --reporter spec --require test/bootstrap/node test/*.test.js"
}
}