-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
46 lines (46 loc) · 1.28 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
{
"name": "basic-to-passport-auth-http-proxy",
"version": "0.2.0-beta.0",
"description": "HTTP proxy server that can access resources which use the Passport SSI Version 1.4 Protocol for authorization with credentials supplied by Basic HTTP authentication.",
"keywords": [
"http",
"proxy",
"Basic authentication",
"Passport 1.4 authentication"
],
"license": "MIT",
"author": {
"name": "Stefan Kleeschulte",
"url": "https://github.com/skleeschulte"
},
"repository": {
"type": "git",
"url": "https://github.com/skleeschulte/basic-to-passport-auth-http-proxy.git"
},
"main": "lib/server.js",
"scripts": {
"test:local": "mocha test/local/index.js",
"test:onedrive_litmus": "mocha test/onedrive_litmus/index.js",
"test": "npm run test:local && npm run test:onedrive_litmus",
"lint": "eslint lib/"
},
"engines": {
"node": ">=10.16.0"
},
"dependencies": {
"axios": "0.24.0",
"debug": "4.3.2",
"get-request-url": "0.1.1",
"http-proxy": "1.18.1",
"supports-color": "9.1.0",
"tough-cookie": "4.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"dotenv": "^10.0.0",
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.17.2",
"mocha": "^6.1.4"
}
}