-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.66 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.66 KB
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
{
"name": "caddy-proxy-manager",
"version": "3.0.0",
"description": "A CLI tool to manage local reverse proxies using Caddy",
"type": "module",
"main": "src/cli.js",
"bin": {
"cpm": "src/cli.js"
},
"scripts": {
"start": "node src/cli.js",
"dev": "nodemon src/cli.js",
"lint": "eslint src/",
"format": "prettier --write src/",
"test": "jest",
"changeset": "changeset",
"version": "changeset version",
"release": "changeset publish",
"prepare": "husky"
},
"keywords": [
"caddy",
"proxy",
"manager",
"cli",
"reverse-proxy",
"local-development"
],
"author": "Mustafa Dwaikat",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dwekat/caddy-proxy-manager.git"
},
"bugs": {
"url": "https://github.com/dwekat/caddy-proxy-manager/issues"
},
"homepage": "https://github.com/dwekat/caddy-proxy-manager#readme",
"files": [
"src",
"README.md",
"LICENSE"
],
"dependencies": {
"chalk": "^5.6.2",
"cli-table3": "^0.6.5",
"commander": "^11.1.0",
"js-yaml": "^4.1.1",
"ora": "^7.0.1",
"shelljs": "^0.8.5"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^16.2.7",
"nodemon": "^3.1.11",
"prettier": "^3.7.4"
},
"engines": {
"node": ">=20.0.0"
},
"lint-staged": {
"src/**/*.js": [
"prettier --write",
"eslint --fix"
]
}
}