This repository has been archived by the owner on Aug 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 3.64 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
{
"name": "acrolinx-secure-tunnel",
"description": "Acrolinx Secure Tunnel",
"version": "1.1.18",
"license": "",
"private": true,
"main": "dist/ts/secure-tunnel.js",
"engines": {
"node": ">=20"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@lib/autodts-generator": "^0.0.2",
"@types/chai": "^4.1.7",
"@types/chai-http": "^4.2.0",
"@types/chai-string": "^1.4.5",
"@types/eslint__js": "^8.42.3",
"@types/http-proxy": "^1.17.15",
"@types/isomorphic-fetch": "^0.0.39",
"@types/lodash": "^4.17.7",
"@types/mocha": "^10.0.7",
"@types/node": "^22.3.0",
"@types/open": "^6.0.0",
"@types/pem": "^1.9.5",
"@types/tmp": "^0.2.6",
"@types/winreg": "^1.2.36",
"autodts": "^0.0.6",
"chai": "^4.5.0",
"chai-http": "^5.0.0",
"chai-string": "^1.5.0",
"cross-var": "^1.1.0",
"eslint": "^9.9.0",
"exports-loader": "^5.0.0",
"got": "^14.4.2",
"isomorphic-fetch": "^3.0.0",
"marked": "^14.0.0",
"mocha": "^10.7.3",
"mochawesome": "^7.1.3",
"nexe": "^4.0.0-rc.6",
"nyc": "^17.0.0",
"pem": "^1.14.8",
"replace": "^1.2.2",
"rimraf": "^6.0.1",
"tmp": "^0.2.3",
"ts-loader": "^9.5.1",
"typescript": "^5.5.4",
"typescript-eslint": "^8.1.0"
},
"scripts": {
"clean": "rimraf dist bin",
"prebuild": "npm run clean",
"build": "tsc",
"buildWatch": "tsc -w",
"lint": "eslint .",
"lintFix": "eslint . --fix",
"run": "tsc && node dist/ts/secure-tunnel.js \"http://localhost:7777->https://partner-dev.internal.acrolinx.sh\" -rv",
"precompile": "npm run test && rimraf bin && mkdir bin 2>NUL",
"compile": "cross-var node node_modules/nexe/index.js dist/ts/secure-tunnel.js -t windows-x86-14.15.3 -n bin/secure-tunnel-windows-x86-v$npm_package_version && cross-var node node_modules/nexe/index.js dist/ts/secure-tunnel.js -t windows-x64-14.15.3 -n bin/secure-tunnel-windows-x64-v$npm_package_version && cross-var node node_modules/nexe/index.js dist/ts/secure-tunnel.js -t mac-x64-14.15.3 -n bin/secure-tunnel-mac-x64-v$npm_package_version && cross-var node node_modules/nexe/index.js dist/ts/secure-tunnel.js -t linux-x64-14.15.3 -n bin/secure-tunnel-linux-x64-v$npm_package_version && cross-var node node_modules/nexe/index.js dist/ts/secure-tunnel.js -t linux-x86-14.15.3 -n bin/secure-tunnel-linux-x86-v$npm_package_version",
"predebug": "npm run precompile",
"debug": "node --nolazy --inspect=9228 --debug-brk dist/ts/secure-tunnel.js",
"predebugWithParams": "npm run precompile",
"debugWithParams": "node --nolazy --inspect=9230 --debug-brk dist/ts/secure-tunnel.js \"http://localhost:8031->https://partner-dev.internal.acrolinx.sh\" -v -r -I",
"doc": "node node_modules/marked/bin/marked README.md > README.html",
"setversion": "cross-var node node_modules/replace/bin/replace.js \"\\.version\\('.+?'\\)\" \".version('$BUILD_NUMBER')\" src/ts/secure-tunnel.cli.ts",
"prerelease": "npm run setversion && npm run compile",
"release": "npm run doc",
"pretest": "npm run build",
"test": "mocha \"dist/test/**/*.js\" --reporter mochawesome --exit",
"test:watch": "tsc --watch 2>&1 | mocha \"dist/test/**/*.js\" --watch 2>&1",
"prepushreleasetogithubandtriggeranewreleasebuild": "npm run test",
"pushreleasetogithubandtriggeranewreleasebuild": "npm version patch -m \"v%s\"",
"postpushreleasetogithubandtriggeranewreleasebuild": "git push && git push --tags"
},
"dependencies": {
"commander": "^12.1.0",
"getpass": "^0.1.7",
"http-proxy": "^1.18.1",
"lodash": "^4.17.21",
"open": "^10.1.0",
"proxy-agent": "^6.4.0",
"ts-node": "^10.9.2",
"winreg": "^1.2.5"
}
}