-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 1.31 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
{
"name": "node-client-ntlm",
"version": "0.0.6",
"description": "An http(s) NTLM client with NO dependencies",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"files": [
"lib/"
],
"scripts": {
"test": "jest --coverage",
"lint": "eslint ./src --ext .ts",
"doc": "npx typedoc src/*.ts",
"build": "tsc -p ./tsconfig.json && tsc -p ./tsconfig.cjs.json"
},
"keywords": [
"http",
"https",
"ntlm",
"ntlmv2",
"client",
"request",
"node",
"native"
],
"author": "[email protected]",
"license": "ISC",
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^16.18.80",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"body-parser": "^1.20.2",
"eslint": "^8.2.0",
"eslint-config-google": "^0.14.0",
"express": "^4.18.2",
"express-ntlm": "^2.7.0",
"jest": "^27.3.1",
"tough-cookie": "^4.0.0",
"ts-jest": "^27.0.7",
"typedoc": "^0.22.9",
"typescript": "^4.4.4"
},
"repository": {
"type": "git",
"url": "https://github.com/m0rtadelo/ntlm-client.git"
},
"bugs": {
"url": "https://github.com/m0rtadelo/ntlm-client/issues"
},
"homepage": "https://m0rtadelo.github.io/ntlm-client/",
"dependencies": {
"js-md4": "^0.3.2"
}
}