-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (54 loc) · 1.27 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": "passport-oauth-wrap",
"title": "Passport OAuth WRAP Strategy",
"description": "OAuth WRAP authentication strategy for Passport and Node.js.",
"homepage": "https://github.com/rabchev/passport-oauth-wrap",
"author": "Boyan Rabchev <boyan@rabchev.comm>",
"contributors": [
{
"name": "Boyan Rabchev",
"email": "boyan@rabchev.comm"
}
],
"version": "0.1.4",
"main": "./lib",
"dependencies": {
"passport": "*"
},
"devDependencies": {
"mocha": "*",
"chai": "*"
},
"scripts": {
"test": "mocha"
},
"keywords": [
"passport",
"auth",
"authentication",
"authz",
"authorization",
"http",
"swt",
"simple",
"web",
"token",
"oauth",
"wrap"
],
"repository": {
"type": "git",
"url": "https://github.com/rabchev/passport-oauth-wrap.git"
},
"bugs": {
"email": "boyan@rabchev.comm",
"url": "https://github.com/rabchev/passport-oauth-wrap/issues"
},
"license": {
"type": "MIT",
"url": "http://github.com/rabchev/passport-oauth-wrap/blob/master/LICENSE"
},
"engines": {
"node": ">= 0.4.0"
}
}