-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
38 lines (38 loc) · 857 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
{
"name": "passport-2fa-totp",
"version": "0.0.1",
"description": "TOTP based Two-Factor Authentication for Passport and Node.js",
"main": "./lib",
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ilich/passport-2fa-totp.git"
},
"keywords": [
"totp",
"opt",
"auth",
"authentication",
"security",
"passport"
],
"author": "Ilya Verbitskiy",
"license": "MIT",
"bugs": {
"url": "https://github.com/ilich/passport-2fa-totp/issues"
},
"homepage": "https://github.com/ilich/passport-2fa-totp#readme",
"dependencies": {
"notp": "^2.0.3",
"passport-strategy": "^1.0.0",
"qr-image": "^3.1.0",
"thirty-two": "^1.0.1"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-passport-strategy": "^1.0.0",
"mocha": "^2.4.5"
}
}