forked from FrankyBoy/request-ntlm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.41 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
{
"name": "request-ntlm-continued",
"version": "0.1.5",
"description": "NTLM auth for NodeJS - continued from Colyn Brown's project",
"main": "index.js",
"repository": "https://github.com/FrankyBoy/request-ntlm",
"scripts": {
"test": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"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": "ISC",
"dependencies": {
"agentkeepalive": "^4.1.3",
"async": "^3.2.0",
"lodash": "^4.17.20",
"request": "^2.88.2"
},
"devDependencies": {
"coveralls": "*",
"istanbul": "*",
"mocha": "*",
"mocha-lcov-reporter": "*",
"should": "*"
},
"keywords" : [
"ntlm",
"authentication",
"auth",
"login",
"windows",
"microsoft",
"request",
"http",
"https"
]
}