-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.49 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.49 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
{
"name": "copilot",
"version": "2.0.4",
"description": "Automates branch management, GitHub project linking, and issue/PR tracking with Git-Flow methodology.",
"main": "build/github_action/index.js",
"bin": {
"copilot": "./build/cli/index.js"
},
"scripts": {
"build": "ncc build src/actions/github_action.ts -o build/github_action && ncc build src/cli.ts -o build/cli && chmod +x build/cli/index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"postinstall": "node scripts/install-git-hooks.cjs"
},
"keywords": [],
"author": "Efra Espada",
"license": "ISC",
"dependencies": {
"@actions/cache": "^4.0.3",
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@types/axios": "^0.14.4",
"@types/chance": "^1.1.6",
"@types/dotenv": "^8.2.3",
"@types/js-yaml": "^4.0.9",
"axios": "^1.8.4",
"boxen": "^8.0.1",
"chalk": "^5.4.1",
"chance": "^1.1.12",
"commander": "^12.0.0",
"dockerode": "^4.0.5",
"dotenv": "^16.5.0",
"js-yaml": "^4.1.0",
"shell-quote": "^1.8.3"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/dockerode": "^3.3.37",
"@types/jest": "^30.0.0",
"@types/node": "^22.9.1",
"@vercel/ncc": "^0.36.1",
"eslint": "^9.15.0",
"jest": "^30.2.0",
"ts-jest": "^29.4.5",
"typescript": "^5.2.2",
"typescript-eslint": "^8.15.0"
}
}