-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·50 lines (50 loc) · 942 Bytes
/
package.json
File metadata and controls
executable file
·50 lines (50 loc) · 942 Bytes
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
{
"name": "openid-request",
"description": "OpenID for Node.js, based in (node-openid and request)",
"keywords": [
"openid",
"request",
"auth",
"authentication",
"identity",
"identifier",
"relying",
"party",
"1.1",
"2.0",
"library"
],
"author": {
"name": "Rodrigo Montano",
"email": "bambamx@hp.com",
"web": "https://github.com/bambamx"
},
"version": "0.1.4",
"repository": {
"type": "git",
"url": "https://github.com/bambamx/node-openid-request.git"
},
"bugs": "https://github.com/bambamx/node-openid-request/issues",
"licenses": [
{
"type": "MIT"
}
],
"directories": {
"lib": "./lib"
},
"main": "./openid-request.js",
"scripts": {
"test": "nodeunit test/"
},
"engines": [
"node >= 0.6.0"
],
"dependencies": {
"request" : "~2.36.0"
},
"devDependencies": {
"nodeunit": "~0.8.4",
"sinon": "~1.8.1"
}
}