-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.4 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
{
"name": "delete-vercel-preview-urls",
"version": "0.0.1",
"description": "GitHub Actions to delete public Vercel Preview URLs if remote branch is deleted",
"main": "dist/main.js",
"export": "./dist/main.js",
"type": "module",
"scripts": {
"test": "run-p test:*",
"test:jest": "jest",
"test:lint": "eslint src/",
"test:prettier": "prettier src/",
"prebuild": "rm -rf dist",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hiroki0525/delete-vercel-preview-urls.git"
},
"keywords": [
"GithubActions",
"JavaScript",
"Vercel",
"Next.js"
],
"author": "Hiroki Miyaji",
"license": "MIT",
"bugs": {
"url": "https://github.com/hiroki0525/delete-vercel-preview-urls/issues"
},
"homepage": "https://github.com/hiroki0525/delete-vercel-preview-urls#readme",
"engines": {
"node": "18.x"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "^18.13.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^29.4.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1"
}
}