forked from FrankyBoy/request-ntlm
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
executable file
·71 lines (71 loc) · 1.56 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "request-ntlm-promise",
"version": "1.2.3",
"description": "Make easy requests with NTLM authentication",
"main": "index.js",
"repository": "https://github.com/matrus2/request-ntlm",
"scripts": {
"test": "nyc mocha",
"lint": "node_modules/.bin/eslint ."
},
"author": "Bogusz Przybyslawski <[email protected]>",
"contributors": [
{
"name": "Colyn Brown",
"email": "[email protected]"
},
{
"name": "Immanuel Hayden",
"email": "[email protected]"
},
{
"name": "Brett Profitt",
"email": "[email protected]"
},
{
"name": "Andreas Pizsa",
"url": "https://github.com/AndreasPizsa"
},
{
"name": "Adam Nielsen",
"url": "https://github.com/adam-nielsen"
},
{
"name": "Ygal Bellaiche",
"url": "https://github.com/ygalbel"
}
],
"license": "MIT",
"dependencies": {
"agentkeepalive": "^4.1.0",
"request": "^2.88.2",
"request-promise": "^4.2.5"
},
"devDependencies": {
"@types/request-promise": "^4.1.46",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^6.2.3",
"nock": "^10.0.3",
"nyc": "^14.1.1"
},
"keywords": [
"ntlm",
"authentication",
"auth",
"login",
"windows",
"microsoft",
"request",
"http",
"https"
],
"engines": {
"node": ">=8"
},
"typings": "./index.d.ts"
}