-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
83 lines (83 loc) · 2.37 KB
/
package.json
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
{
"name": "@github/local-action",
"description": "Local Debugging for GitHub Actions",
"version": "2.2.1",
"type": "module",
"author": "Nick Alteen <[email protected]>",
"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"
},
"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": "npx make-coverage-badge --output-path ./badges/coverage.svg",
"format:write": "npx prettier --write .",
"format:check": "npx prettier --check .",
"lint": "npx eslint .",
"test": "NODE_OPTIONS=\"$NODE_OPTIONS --no-warnings --experimental-vm-modules\" npx 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/core": "^1.11.1",
"@octokit/core": "^6.1.2",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"figlet": "^1.8.0",
"quibble": "^0.9.2",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"yaml": "^2.6.1"
},
"devDependencies": {
"@eslint/compat": "^1.2.3",
"@jest/globals": "^29.7.0",
"@types/figlet": "^1.7.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.1",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"make-coverage-badge": "^1.2.0",
"prettier": "^3.3.3",
"prettier-eslint": "^16.3.0",
"ts-jest": "^29.2.5",
"ts-jest-resolver": "^2.0.1",
"ts-node": "^10.9.2"
},
"overrides": {
"esbuild": "^0.24.0"
}
}