-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
44 lines (44 loc) · 1.15 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
{
"author": "Aaron Imming <[email protected]>",
"name": "vercel-preview-url-action",
"version": "2.2.0",
"description": "Capture a Vercel preview URL and feed it into your next GitHub action.",
"main": "index.js",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,md}": "prettier --write"
},
"scripts": {
"build": "npx @vercel/ncc build index.ts --license licenses.txt --minify",
"test": "jest --verbose",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aaimio/vercel-preview-url-action.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/aaimio/vercel-preview-url-action/issues"
},
"homepage": "https://github.com/aaimio/vercel-preview-url-action#readme",
"dependencies": {
"@actions/core": "1.10.0",
"@actions/github": "5.1.1",
"@octokit/action": "5.0.2"
},
"devDependencies": {
"@types/jest": "29.5.0",
"@types/node": "^18.15.11",
"husky": "8.0.3",
"jest": "29.5.0",
"lint-staged": "13.2.1",
"prettier": "2.8.7",
"ts-jest": "29.1.0",
"typescript": "5.0.4"
}
}