forked from franck-eyraud/AAAforREST
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
37 lines (37 loc) · 902 Bytes
/
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
{
"name": "aaaforrest",
"description": "An HTTP reverse proxy to bring authentication, authorization and accounting to RESTful applications",
"version": "2.10.0",
"repository": {
"type": "git",
"url": "git+https://github.com/Hypertopic/AAAforREST.git"
},
"scripts": {
"start": "node app/proxy.js",
"test": "jest --verbose"
},
"main": "app/index.js",
"files": [
"app/ldap.js",
"app/index.js"
],
"dependencies": {
"basic-auth": "^2.0.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-http-proxy": "^1.6.0",
"express-robots-txt": "^1.0.0",
"express-session": "^1.17.1",
"fs": "0.0.1-security",
"ldapjs": "^2.2.0",
"memoizee": "^0.4.15",
"morgan": "^1.9.1",
"node-fetch": "^2.6.1",
"yaml": "^1.7.2"
},
"devDependencies": {
"frisby": "^2.1.2",
"jest": "^29.7.0"
}
}