forked from bobheadxi/deployments
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 792 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 792 Bytes
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
{
"name": "@bobheadxi/deployments",
"version": "0.0.0",
"private": true,
"description": "GitHub Action for working painlessly with deployment statuses",
"main": "dist/index.js",
"scripts": {
"prettier": "prettier src --write",
"prettier:check": "prettier src --check",
"build": "ncc build src/main.ts --out dist --minify --source-map --license LICENSES",
"build:check": "npm run build && git diff --quiet dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bobheadxi/deployments.git"
},
"author": "bobheadxi",
"license": "MIT",
"dependencies": {
"@actions/core": "1.4.0",
"@actions/github": "5.0.0",
"@vercel/ncc": "0.28.6",
"@types/node": "12.20.15",
"typescript": "4.3.2",
"prettier": "2.3.1"
}
}