-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
98 lines (98 loc) · 2.84 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "node-expose-sspi",
"version": "0.1.60",
"description": "Expose the Microsoft Windows SSPI interface in order to do NTLM and Kerberos authentication.",
"keywords": [
"SSPI",
"SSO",
"Single Sign On",
"node-addon",
"kerberos",
"NTLM",
"Negotiate",
"SPNEGO",
"authentication",
"auth",
"Microsoft",
"Windows"
],
"repository": {
"type": "git",
"url": "https://github.com/jlguenego/node-expose-sspi.git"
},
"bugs": {
"url": "https://github.com/jlguenego/node-expose-sspi/issues"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/jlguenego"
},
"license": "ISC",
"author": "Jean-Louis GUENEGO <[email protected]> (http://jlg-consulting.com/)",
"main": "dist/index.js",
"scripts": {
"build": "node-gyp rebuild -j 8 && node ./scripts/move-binary.js",
"build:arch": "ts-node ./scripts/build.ts",
"build:doc": "typedoc ./src/sso ./lib",
"build:ts": "tsc -p src",
"build:tsw": "tsc -p src -w",
"coverage": "nyc --reporter=html mocha",
"dev": "npx nodemon --config cpp/nodemon.json",
"devserve": "npx nodemon -x \"npm run build && ts-node examples/typescript/server.ts\"",
"devtest": "npx nodemon -x \"npm run build && npm run test\"",
"ex:client:server": "nodemon examples/client/server.js",
"ex:server": "npx nodemon examples/express-simple/server.js",
"ex:ts": "ts-node examples/typescript/index.ts",
"ex:ts:server": "npx nodemon examples/typescript/server.ts",
"lint": "gts lint",
"release": "standard-version",
"start": "npx nodemon examples/typescript/server.ts",
"status": "node scripts/status.js",
"pretest": "require-self",
"test": "mocha"
},
"dependencies": {
"@jlguenego/asn.1": "^0.0.8",
"@types/node-fetch": "^2.5.7",
"debug": "^4.3.1",
"http-errors": "^1.8.0",
"node-fetch": "3.0.0-beta.9",
"ntlm-parser": "^1.0.9"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/express": "^4.17.9",
"@types/express-session": "^1.17.2",
"@types/http-auth": "^4.1.0",
"@types/http-errors": "^1.8.0",
"@types/mocha": "^7.0.2",
"@types/serve-index": "^1.7.30",
"ejs": "^3.1.5",
"eslint-plugin-mocha": "^8.1.0",
"express": "^4.18.2",
"express-basic-auth": "^1.2.0",
"express-session": "^1.17.1",
"gts": "^3.1.0",
"http-auth": "^4.1.4",
"http-proxy-middleware": "^1.1.0",
"mocha": "^10.2.0",
"node-addon-api": "2.0.0",
"nodemon": "^2.0.7",
"nyc": "^15.1.0",
"require-self": "^0.2.3",
"serve-index": "^1.9.1",
"source-map-support": "^0.5.19",
"standard-version": "^9.1.1",
"ts-node": "^10.9.1",
"typedoc": "^0.23.23",
"typedoc-plugin-markdown": "^2.4.2",
"typescript": "^4.2.3"
},
"engines": {
"node": ">=12.16.1"
},
"os": [
"win32"
],
"gypfile": false
}