forked from havard/node-openid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 978 Bytes
/
package.json
File metadata and controls
51 lines (51 loc) · 978 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
51
{
"name": "ignum-openid",
"description": "OpenID 1.1/2.0 library for node.js",
"keywords": [
"openid",
"auth",
"authentication",
"identity",
"identifier",
"relying",
"party",
"1.1",
"2.0",
"library"
],
"author": {
"name": "Håvard Stranden",
"email": "havard.stranden@gmail.com",
"web": "http://ox.no"
},
"version": "2.0.7",
"repository": {
"type": "git",
"url": "http://github.com/elendirx/node-openid.git"
},
"bugs": "http://github.com/havard/node-openid/issues",
"licenses": [
{
"type": "MIT",
"url": "http://github.com/havard/node-openid/raw/master/LICENSE"
}
],
"directories": {
"lib": "./lib"
},
"main": "./openid.js",
"scripts": {
"test": "nodeunit test/"
},
"engines": [
"node >= 0.6.0"
],
"devDependencies": {
"nodeunit": "~0.9.1",
"sinon": "~1.13.0",
"nock": "~1.1.0"
},
"dependencies": {
"request": "^2.61.0"
}
}