forked from dev-drprasad/delete-tag-and-release
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.23 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
{
"name": "delete-tag-and-release",
"version": "0.2.1-dev",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/dev-drprasad/delete-tag-and-release"
},
"keywords": [],
"scripts": {
"check:types": "tsc --noEmit",
"package": "npm run check:types && esbuild main.ts --bundle --platform=node --target=node16 --outfile=dist/main.js",
"test": "jest index.spec.ts",
"lint": "npm run check:types && eslint .",
"lint:fix": "eslint . --fix && npm run check:types"
},
"author": "REDDY PRASAD",
"license": "ISC",
"homepage": "https://github.com/dev-drprasad/delete-tag-and-release",
"devDependencies": {
"@jest/globals": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"esbuild": "^0.17.12",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.3.1",
"prettier": "^2.8.6",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1"
}
}