forked from ForgeRock/node-openam-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 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
{
"name": "openam-agent",
"version": "3.0.0",
"description": "OpenAM Policy Agent implementation for Express",
"main": "lib/index.js",
"scripts": {
"demo": "node test/server.js",
"test": "mocha",
"jsdoc": "jsdoc -c jsdoc.json -r"
},
"author": "Zoltan Tarcsay <tarcsay.zoltan@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/zoltantarcsay/node-openam-agent.git"
},
"bugs": {
"url": "https://github.com/zoltantarcsay/node-openam-agent/issues"
},
"homepage": "https://github.com/zoltantarcsay/node-openam-agent",
"license": "MIT",
"keywords": [
"OpenAM",
"Policy",
"Agent"
],
"dependencies": {
"assert": "^1.4.1",
"basic-auth": "^1.0.3",
"bluebird": "^3.4.6",
"body-parser": "^1.13.3",
"cookie": "^0.2.0",
"express": "^4.13.3",
"handlebars": "^4.0.5",
"openam-agent-cache-simple": "^1.0.1",
"request-promise": "^0.4.3",
"shortid": "^2.2.2",
"shutdown-handler": "^1.0.1",
"util": "^0.10.3",
"winston": "^1.0.2",
"xml2js": "^0.4.12",
"xmlbuilder": "^2.6.4"
},
"devDependencies": {
"jsdoc": "^3.4.0",
"mocha": "^2.3.0",
"should": "^8.0.2",
"should-sinon": "0.0.3",
"sinon": "^1.16.1"
},
"engines": {
"node": ">=0.11"
}
}