-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.15 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
{
"name": "ntlm-parser",
"version": "1.0.9",
"description": "Check and understand the content of a NTLM message",
"main": "build/src/index.js",
"bin": "bin/ntlm-parser.js",
"scripts": {
"test": "mocha",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"pretest": "npm.cmd run compile",
"posttest": "npm.cmd run lint",
"release": "standard-version",
"check": "ts-node bin/ntlm-parser.ts"
},
"keywords": [
"ntlm",
"authentication",
"base64",
"SPNEGO",
"Negotiate",
"SSO"
],
"author": "Jean-Louis GUENEGO <jlguenego@gmail.com>",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/jlguenego/ntlm-parser.git"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/jlguenego"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/mocha": "^8.0.4",
"@types/node": "^14.11.2",
"gts": "^3.0.2",
"mocha": "^8.2.1",
"standard-version": "^9.0.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"dependencies": {
"commander": "^6.2.0",
"debug": "^4.2.0"
}
}