-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
64 lines (64 loc) · 2.16 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
55
56
57
58
59
60
61
62
63
64
{
"name": "github-action-await-vercel",
"private": true,
"description": "GitHub Action - Awaits for a Vercel deployment to be ready",
"homepage": "https://github.com/UnlyEd/github-action-await-vercel",
"main": "lib/main.js",
"scripts": {
"start": "yarn build",
"build": "concurrently -p '{name}' -n 'tsc,ncc' -c 'gray.bgWhite,yellow.bgBlue' \"tsc --watch\" \"yarn build:gha-runtime --watch\"",
"build:once": "tsc",
"build:gha-runtime": "ncc build lib/main.js -o github-action-runtime --minify --source-map --license LICENSE --stats-out 'github-action-runtime/stats.json'",
"format": "prettier --write **/*.ts",
"format:preview": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"bump:major": "git commit --allow-empty -m \"(MAJOR) Fake commit, bumps major version\"",
"bump:minor": "git commit --allow-empty -m \"(MINOR) Fake commit, bumps minor version\"",
"test": "NODE_ENV=test jest --watch",
"test:once": "NODE_ENV=test jest",
"test:coverage": "NODE_ENV=test jest --coverage",
"test:config": "NODE_ENV=test jest --showConfig",
"act:actions:list": "act --version && act --list"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UnlyEd/github-action-await-vercel.git"
},
"keywords": [
"github",
"github actions",
"actions",
"vercel deployment",
"vercel",
"await",
"deployment"
],
"author": "UnlyEd",
"license": "MIT",
"dependencies": {
"@actions/core": "1.10.0",
"@adobe/node-fetch-retry": "2.2.0",
"dotenv": "16.0.3",
"eslint-plugin-prettier": "4.2.1",
"node-fetch": "2.6.7"
},
"devDependencies": {
"@babel/parser": "7.20.7",
"@types/jest": "29.2.5",
"@types/node": "18.11.18",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/parser": "5.48.0",
"@vercel/ncc": "0.36.0",
"concurrently": "7.6.0",
"eslint": "8.31.0",
"eslint-plugin-github": "4.6.0",
"eslint-plugin-jest": "27.2.1",
"jest": "29.3.1",
"jest-circus": "29.3.1",
"js-yaml": "4.1.0",
"prettier": "2.8.2",
"ts-jest": "29.0.3",
"typescript": "4.9.4"
}
}