-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
40 lines (40 loc) · 980 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
38
39
40
{
"name": "doorman-proxy",
"version": "0.4.1",
"description": "Provides an authentication/authorization layer in front of other http/websocket services",
"keywords": [
"oauth",
"proxy",
"doorman"
],
"homepage": "https://github.com/movableink/doorman",
"author": "Michael Nutt ([email protected])",
"repository": {
"type": "git",
"url": "http://github.com/movableink/doorman.git"
},
"scripts": {
"start": "node app.js",
"test": "./node_modules/.bin/mocha tests/*_spec.js"
},
"dependencies": {
"body-parser": "1.8.0",
"cookie-session": "1.0.2",
"cookie-parser": "1.3.3",
"express-flash": "0.0.2",
"everyauth": "0.4.9",
"express": "4.8.8",
"http-proxy": "1.11.1",
"jade": "1.6.0"
},
"bugs": {
"url": "https://github.com/movableink/doorman/issues"
},
"main": "app.js",
"devDependencies": {
"chai": "3.4.1",
"mocha": "2.3.4",
"supertest": "1.1.0"
},
"license": "MIT"
}