-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
63 lines (63 loc) · 2.12 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
{
"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.2.6",
"dotenv": "8.2.0",
"eslint-plugin-prettier": "3.2.0",
"node-fetch": "2.6.1"
},
"devDependencies": {
"@babel/parser": "7.12.10",
"@types/jest": "26.0.15",
"@types/node": "14.14.9",
"@types/node-fetch": "2.5.7",
"@typescript-eslint/parser": "4.8.1",
"@vercel/ncc": "0.30.0",
"concurrently": "6.2.1",
"eslint": "7.13.0",
"eslint-plugin-github": "4.1.1",
"eslint-plugin-jest": "23.20.0",
"jest": "24.9.0",
"jest-circus": "26.4.2",
"js-yaml": "3.14.0",
"prettier": "2.1.1",
"ts-jest": "24.3.0",
"typescript": "4.0.2"
}
}