-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1 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-duo",
"version": "0.1.2",
"description": "Duo authentication strategy for Passport.",
"keywords": [
"passport",
"duo",
"duo-security",
"auth",
"two-factor",
"authentication"
],
"repository": {
"type": "git",
"url": "git://github.com/basharal/passport-duo.git"
},
"bugs": {
"url": "http://github.com/basharal/passport-duo/issues"
},
"author": {
"name": "Bashar Al-Rawi",
"email": "[email protected]"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
}
],
"main": "./lib",
"dependencies": {
"@duosecurity/duo_web": "^1.0.5",
"passport": ">=0.1.18",
"pkginfo": "0.2.x",
"url": ">=0.10.3",
"util": ">=0.10.3"
},
"devDependencies": {
"mocha": "1.x.x",
"chai": "1.x.x"
},
"scripts": {
"test": "NODE_PATH=./lib node_modules/.bin/mocha --reporter spec --require test/bootstrap/node test/*.test.js"
},
"engines": {
"node": ">= 0.4.0"
}
}