-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.76 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.76 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@github/local-action",
"description": "Local Debugging for GitHub Actions",
"version": "7.0.1",
"type": "module",
"author": "Nick Alteen <ncalteen@github.com>",
"private": false,
"homepage": "https://github.com/github/local-action",
"repository": {
"type": "git",
"url": "git+https://github.com/github/local-action.git"
},
"bugs": {
"url": "https://github.com/github/local-action/issues"
},
"keywords": [
"actions",
"node",
"typescript"
],
"engines": {
"node": "^20 || ^22 || ^24"
},
"exports": {
".": "./src/index.ts"
},
"bin": {
"local-action": "bin/local-action.js"
},
"scripts": {
"ci-test": "NODE_OPTIONS=\"$NODE_OPTIONS --no-warnings --experimental-vm-modules\" jest --ci --reporters=default --reporters=jest-junit --no-cache",
"coverage": "make-coverage-badge --output-path ./badges/coverage.svg",
"format:write": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"test": "NODE_OPTIONS=\"$NODE_OPTIONS --no-warnings --experimental-vm-modules\" jest --no-cache",
"all": "npm run format:write && npm run lint && npm run test && npm run coverage"
},
"license": "MIT",
"jest-junit": {
"outputDirectory": "reports",
"outputName": "jest-junit.xml"
},
"dependencies": {
"@actions/artifact": "^5.0.2",
"@actions/cache": "^5.0.3",
"@actions/core": "^2.0.2",
"@actions/exec": "^2.0.0",
"@actions/github": "^7.0.0",
"@actions/http-client": "^3.0.1",
"@octokit/core": "^7.0.6",
"@octokit/plugin-paginate-rest": "^13.2.1",
"@octokit/plugin-request-log": "^6.0.0",
"@octokit/plugin-rest-endpoint-methods": "^17.0.0",
"@octokit/plugin-retry": "^8.0.3",
"@octokit/rest": "^22.0.1",
"archiver": "^7.0.1",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"comment-json": "^4.5.1",
"dotenv": "^17.3.1",
"figlet": "^1.10.0",
"quibble": "^0.9.2",
"semver": "^7.7.4",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"yaml": "^2.8.2"
},
"devDependencies": {
"@eslint/compat": "^2.0.2",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^10.0.1",
"@jest/globals": "^30.2.0",
"@types/archiver": "^7.0.0",
"@types/jest": "^30.0.0",
"@types/node": "^25.2.3",
"@types/semver": "^7.7.1",
"@types/unzip-stream": "^0.3.4",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"eslint": "^10.0.0",
"eslint-plugin-prettier": "^5.5.5",
"jest": "^30.2.0",
"jest-junit": "^16.0.0",
"make-coverage-badge": "^1.2.0",
"prettier": "^3.8.1",
"ts-jest": "^29.4.6",
"ts-jest-resolver": "^2.0.1",
"ts-node": "^10.9.2"
},
"overrides": {
"undici": ">=6.23.0"
}
}