-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
85 lines (85 loc) · 2.79 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
{
"name": "cypress-ntlm-auth",
"version": "4.2.1",
"description": "NTLM authentication plugin for Cypress",
"main": "dist/index.js",
"scripts": {
"proxy": "src/launchers/ntlm.proxy.main.js",
"launch": "src/launchers/cypress.ntlm.js",
"pnl": "npm run proxy && npm run launch",
"test": "npm run unittest && npm run e2e",
"e2e": "run-script-os",
"e2e:default": "npm pack && cd test/e2e && npm uninstall $npm_package_name && npm ci && npm i ../../$npm_package_name-$npm_package_version.tgz && npm run test",
"e2e:win32": "npm pack && cd test\\e2e && npm uninstall %npm_package_name% && npm ci && npm i ..\\..\\%npm_package_name%-%npm_package_version%.tgz && npm run test",
"unittest": "mocha test/unittest/**/*.spec.ts",
"unittest:manual": "node --expose-gc node_modules/.bin/mocha test/manual/**/*.spec.ts",
"build": "shx rm -rf dist && tsc && shx cp src/commands/index.d.ts dist/commands/ && shx chmod +x dist/launchers/*.js",
"prepare": "npm run build",
"coverage": "mocha --code-coverage test/unittest",
"lint": "eslint src"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"types": "dist/commands/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/bjowes/cypress-ntlm-auth.git"
},
"keywords": [
"cypress",
"ntlm",
"windows authentication"
],
"bin": {
"cypress-ntlm": "./dist/launchers/cypress.ntlm.js",
"ntlm-proxy": "./dist/launchers/ntlm.proxy.main.js",
"ntlm-proxy-exit": "./dist/launchers/ntlm.proxy.exit.main.js"
},
"files": [
"dist/"
],
"author": "Björn Weström",
"license": "MIT",
"bugs": {
"url": "https://github.com/bjowes/cypress-ntlm-auth/issues"
},
"homepage": "https://github.com/bjowes/cypress-ntlm-auth#readme",
"dependencies": {
"@bjowes/http-mitm-proxy": "^0.9.6",
"body-parser": "^1.20.2",
"crypto-js": "^4.2.0",
"debug": "^4.3.4",
"express": "^4.19.2",
"inversify": "^6.0.2",
"reflect-metadata": "^0.2.1",
"win-sso": "^1.3.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.19.0",
"@fluffy-spoon/substitute": "^1.208.0",
"@types/crypto-js": "^4.2.2",
"@types/debug": "^4.1.12",
"@types/express": "^4.17.21",
"@types/express-ntlm": "^2.3.7",
"@types/mocha": "^10.0.6",
"@types/node": "^22.10.10",
"@types/node-forge": "^1.3.11",
"@types/ws": "^8.5.10",
"axios": "^1.6.8",
"eslint": "^9.19.0",
"eslint-plugin-jsdoc": "^50.6.3",
"express-ntlm": "^2.7.0",
"globals": "^15.14.0",
"mocha": "^11.1.0",
"nock": "^13.5.6",
"node-forge": "^1.3.1",
"run-script-os": "^1.1.6",
"shx": "^0.3.4",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.21.0"
}
}