-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.05 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.05 KB
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": "@data-fair/sd-proxy",
"version": "1.0.2",
"description": "Apply simple-directory authentication through a minimalist reverse proxy.",
"main": "index.js",
"scripts": {
"start": "node server",
"dev": "NODE_ENV=development nodemon server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/data-fair/sd-proxy.git"
},
"author": "Alban Mouton <alban.mouton@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/data-fair/sd-proxy/issues"
},
"homepage": "https://github.com/data-fair/sd-proxy#readme",
"dependencies": {
"@data-fair/sd-express": "^1.2.0",
"config": "^3.2.2",
"cookie-parser": "^1.4.4",
"event-to-promise": "^0.8.0",
"express": "^4.17.1",
"http-proxy-middleware": "^2.0.1"
},
"devDependencies": {
"eslint": "^6.3.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"nodemon": "^1.19.2"
}
}