-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.35 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.35 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
{
"name": "gitflow-autopilot",
"version": "0.1.0",
"description": "Git branch syncing on autopilot",
"main": "dist/index.js",
"bin": {
"gitflow-autopilot": "dist/cli/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "jest",
"lint": "eslint src/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/24andup/gitflow-autopilot.git"
},
"keywords": [
"git",
"gitflow",
"branch-sync",
"automation",
"devops",
"ci-cd"
],
"author": "Your Name",
"license": "MIT",
"type": "commonjs",
"files": [
"dist/**/*",
"templates/**/*"
],
"bugs": {
"url": "https://github.com/24andup/gitflow-autopilot/issues"
},
"homepage": "https://github.com/24andup/gitflow-autopilot#readme",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.1",
"axios": "^1.13.2",
"chalk": "^5.6.2",
"commander": "^14.0.2",
"ora": "^9.0.0",
"prompts": "^2.4.2",
"simple-git": "^3.30.0",
"yaml": "^2.8.2"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^24.10.1",
"@types/prompts": "^2.4.9",
"@typescript-eslint/eslint-plugin": "^8.48.0",
"@typescript-eslint/parser": "^8.48.0",
"eslint": "^9.39.1",
"jest": "^30.2.0",
"ts-jest": "^29.4.5",
"typescript": "^5.9.3"
}
}