-
Notifications
You must be signed in to change notification settings - Fork 89
/
Copy pathpackage.json
57 lines (57 loc) · 1.21 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
{
"name": "httpntlm",
"description": "httpntlm is a Node.js library to do HTTP NTLM authentication",
"version": "1.8.13",
"dependencies": {
"des.js": "^1.0.1",
"httpreq": ">=0.4.22",
"js-md4": "^0.3.2",
"underscore": "~1.12.1"
},
"author": {
"name": "Sam Decrock",
"url": "https://github.com/SamDecrock/"
},
"contributors": [
{
"name": "Martin Andreas Ullrich",
"url": "https://github.com/dasMulli"
}
],
"bugs": {
"url": "https://github.com/SamDecrock/node-http-ntlm/issues"
},
"engines": {
"node": ">=10.4.0"
},
"repository": {
"type": "git",
"url": "git://github.com/SamDecrock/node-http-ntlm.git"
},
"main": "./httpntlm",
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"scripts": {
"test": "mocha"
},
"funding": [
{
"type": "paypal",
"url": "https://www.paypal.com/donate/?hosted_button_id=2CKNJLZJBW8ZC"
},
{
"type": "buymeacoffee",
"url": "https://www.buymeacoffee.com/samdecrock"
}
],
"devDependencies": {
"express": "^4.18.2",
"express-ntlm": "^2.6.2",
"mocha": "^10.2.0",
"rewire": "^6.0.0"
}
}