generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
95 lines (95 loc) · 2.47 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
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "souji-action",
"description": "Clean up the GitHub Action cache",
"version": "1.4.9",
"author": "",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/4m-mazi/souji-action.git"
},
"bugs": {
"url": "https://github.com/4m-mazi/souji-action/issues"
},
"keywords": [
"actions",
"cache",
"delete"
],
"type": "module",
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=20"
},
"packageManager": "[email protected]+sha512.76e2379760a4328ec4415815bcd6628dee727af3779aaa4c914e3944156c4299921a89f976381ee107d41f12cfa4b66681ca9c718f0668fa0831ed4c6d8ba56c",
"scripts": {
"bundle": "pnpm run format:write && pnpm run package",
"ci-test": "jest",
"coverage": "make-coverage-badge --output-path ./badges/coverage.svg",
"format:write": "prettier --write **/*.ts",
"format:check": "prettier --check **/*.ts",
"lint": "eslint .",
"package": "ncc build src/index.ts --license licenses.txt",
"package:watch": "pnpm run package -- --watch",
"test": "jest",
"all": "pnpm run format:write && pnpm run lint && pnpm run test && pnpm run coverage && pnpm run package"
},
"license": "MIT",
"jest": {
"preset": "ts-jest/presets/default-esm",
"verbose": true,
"clearMocks": true,
"testEnvironment": "node",
"moduleFileExtensions": [
"js",
"ts"
],
"testMatch": [
"**/*.test.ts"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
],
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
},
"coverageReporters": [
"json-summary",
"text",
"lcov"
],
"collectCoverage": true,
"collectCoverageFrom": [
"./src/**"
]
},
"dependencies": {
"@actions/core": "1.11.1",
"@actions/github": "6.0.0"
},
"devDependencies": {
"@eslint/js": "9.17.0",
"@octokit/openapi-types": "22.2.0",
"@octokit/webhooks-types": "7.6.1",
"@types/eslint-config-prettier": "6.11.3",
"@types/eslint__js": "8.42.3",
"@types/jest": "29.5.14",
"@types/node": "22.10.2",
"@vercel/ncc": "0.38.3",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jest": "28.9.0",
"eslint-plugin-jsonc": "2.18.2",
"globals": "15.13.0",
"jest": "29.7.0",
"make-coverage-badge": "1.2.0",
"prettier": "3.4.2",
"prettier-eslint": "16.3.0",
"ts-jest": "29.2.5",
"typescript": "5.7.2",
"typescript-eslint": "8.18.1"
}
}