forked from wbeuil/wait-for-deployment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1023 Bytes
/
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
{
"name": "wait-for-deployment",
"version": "0.0.0",
"description": "Github action that waits for a deployment",
"main": "index.js",
"scripts": {
"prettify": "prettier --write '**/*.js'",
"lint": "eslint --fix --ext .js .",
"build": "ncc build index.js -o dist --source-map --license licenses.txt",
"all": "npm-run-all lint build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wbeuil/wait-for-deployment.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/wbeuil/wait-for-deployment/issues"
},
"homepage": "https://github.com/wbeuil/wait-for-deployment#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0"
},
"devDependencies": {
"@vercel/ncc": "^0.25.1",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-github": "^4.1.1",
"eslint-plugin-prettier": "^3.1.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2"
}
}