-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.55 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
{
"name": "fimiproxy",
"version": "1.0.0",
"description": "Simple HTTP and HTTPS reverse proxy",
"author": {
"email": "[email protected]",
"name": "softkave"
},
"license": "MIT",
"keywords": [
"reverse proxy",
"http",
"https",
"host"
],
"repository": {
"type": "git",
"url": "https://github.com/softkave/fimiproxy.git"
},
"bugs": {
"url": "https://github.com/softkave/fimiproxy/issues"
},
"homepage": "https://github.com/softkave/fimiproxy",
"engines": {
"node": ">=13"
},
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"bin": "build/src/bin.js",
"files": [
"build/src/{*.js,**/*.js}",
"build/src/{*.js.map,**/*.js.map}",
"build/src/{*.d.ts,**/*.d.ts}",
"!build/src/**/__tests__/**/*"
],
"scripts": {
"test": "cross-env NODE_TLS_REJECT_UNAUTHORIZED='0' vitest --config ./vitest.config.ts",
"lint": "gts lint",
"clean": "gts clean",
"compile": "npm run clean && tsc",
"fix": "gts fix",
"pretest": "npm run compile",
"posttest": "npm run lint",
"start": "node build/src/start.js",
"publish-to-npm": "npm run compile && npm publish",
"show-packlist": "npm run compile && npm pack --dry-run"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@types/express": "^4.17.21",
"@types/node": "20.8.2",
"@types/node-forge": "^1.3.11",
"cross-env": "^7.0.3",
"express": "^4.18.3",
"gts": "^5.2.0",
"node-fetch": "^3.3.2",
"node-forge": "^1.3.1",
"typescript": "~5.2.0",
"vitest": "^2.0.5"
}
}