-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
39 lines (39 loc) · 1.01 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
{
"name": "basic-to-sharepoint-auth-http-proxy",
"version": "0.0.1",
"description": "HTTP proxy server that can access resources which use SharePoint HTTP authentication with credentials supplied by Basic HTTP authentication.",
"keywords": [
"http",
"proxy",
"Basic authentication",
"SharePoint authentication"
],
"license": "MIT",
"author": {
"name": "Stefan Kleeschulte",
"url": "https://github.com/skleeschulte"
},
"repository": {
"type": "git",
"url": "https://github.com/skleeschulte/basic-to-sharepoint-auth-http-proxy.git"
},
"main": "lib/server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint lib/"
},
"engines": {
"node": ">=10.16.0"
},
"dependencies": {
"agentkeepalive": "4.0.2",
"debug": "4.1.1",
"node-sp-auth": "2.5.7",
"supports-color": "7.0.0"
},
"devDependencies": {
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.17.2"
}
}