-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.59 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
{
"name": "ghaction-rm-releases",
"version": "v0.0.5",
"description": "A GitHub action to remove older releases with tags.",
"keywords": ["github","gh-action","github-action"],
"main": "lib/main.js",
"repository": "https://github.com/nikhilbadyal/ghaction-rm-releases",
"author": "nikhilbadyal",
"license": "GPL-3.0-or-later",
"scripts": {
"build": "ncc build src/main.ts --source-map -d --minify --license licenses.txt",
"lint": "eslint src/**/*.ts",
"lint-fix": "eslint --fix src/**/*.ts",
"prettier-fix": "prettier --write '**/*.ts'",
"prettier": "prettier --check '**/*.ts'",
"all": "yarn prettier-fix && yarn prettier && yarn lint-fix && yarn lint && yarn test &&yarn run build",
"lints": "yarn prettier-fix && yarn prettier && yarn lint-fix && yarn lint",
"husky": "husky install",
"local": "npx tsx src/main.ts",
"test": "jest --coverage"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0"
},
"devDependencies": {
"@types/node": "^22.10.1",
"eslint": "^8.57.0",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"eslint-plugin-github": "^4.10.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-unicorn": "^51.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"@vercel/ncc": "^0.38.3",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"ts-node": "^10.9.2",
"husky": "^9.1.7",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"dotenv": "^16.4.7"
}
}