-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
44 lines (44 loc) · 1.36 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
{
"name": "stale-issue-cleanup",
"version": "7.0.1",
"description": "GitHub Action that cleans up old and response-reqested issues",
"private": true,
"main": "dist/entrypoint.js",
"scripts": {
"check-lint": "prettier --list-different src/**.js && eslint src/**.js",
"lint": "biome check --write src",
"test": "npm run lint && vitest run",
"build": "tsc",
"package": "npm run build && ncc build -m --license THIRD-PARTY -o dist && node -e \"require('fs').cpSync('dist/THIRD-PARTY', './THIRD-PARTY')\"",
"coverage": "vitest run --coverage"
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aws-actions/stale-issue-cleanup"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/aws-actions/stale-issue-cleanup/issues"
},
"homepage": "https://github.com/aws-actions/stale-issue-cleanup/#readme",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"dateformat": "^4.4.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@fetch-mock/vitest": "^0.2.6",
"@octokit/plugin-rest-endpoint-methods": "^13.3.0",
"@types/dateformat": "^5.0.3",
"@types/node": "^22.10.7",
"@vercel/ncc": "^0.38.3",
"@vitest/coverage-v8": "^2.1.8",
"dotenv": "^16.0.3",
"typescript": "^5.7.3",
"vitest": "^2.1.8"
}
}