-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.46 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.46 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
{
"name": "@wbrantley/port-manager",
"version": "1.0.1",
"description": "A port leasing system for managing unique port allocations across git worktrees",
"type": "module",
"bin": {
"port-manager": "./src/port-manager.mjs"
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"release:patch": "npm version patch && git push && git push --tags",
"release:minor": "npm version minor && git push && git push --tags",
"release:major": "npm version major && git push && git push --tags",
"release:beta": "npm version prerelease --preid=beta && git push && git push --tags",
"release:alpha": "npm version prerelease --preid=alpha && git push && git push --tags",
"pm": "node ./src/port-manager.mjs"
},
"keywords": [
"port",
"port-manager",
"worktree",
"development",
"cli",
"git",
"port-allocation",
"port-leasing"
],
"author": "Wayne Brantley",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/waynebrantley/port-manager.git"
},
"bugs": {
"url": "https://github.com/waynebrantley/port-manager/issues"
},
"homepage": "https://github.com/waynebrantley/port-manager#readme",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"vitest": "^2.1.8"
},
"files": [
"src/**/*",
"README.md",
"LICENSE.md"
],
"publishConfig": {
"access": "public",
"provenance": true
}
}