-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
52 lines (52 loc) · 1.04 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
{
"name": "node-uma",
"description": "Module for implementing an UMA-compliant (User-Managed Access) Server/Provider with Express in Node.js",
"version": "1.0.0",
"keywords": [
"uma",
"oauth",
"oauth2",
"openid",
"oidc"
],
"author": {
"name": "Gianluca Brigandi",
"email": "[email protected]"
},
"contributors": [
{
"name": "Gianluca Brigandi",
"email": "[email protected]"
}
],
"main": "lib/umaserver.js",
"dependencies": {
"basic-auth": "~0.0.1",
"q": "~0.9.6",
"jwt-simple": "~0.1.0",
"node-uuid": "~1.4.3"
},
"devDependencies": {
"body-parser": "~1.3.1",
"express": "~4.4.3",
"mocha": "~1.20.1",
"should": "~4.0.4",
"supertest": "~0.13.0"
},
"licenses": [
{
"type": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
}
],
"engines": {
"node": ">=0.8"
},
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/atricore/node-uma.git"
}
}