forked from bobheadxi/deployments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 850 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
{
"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.6.0",
"@actions/github": "5.0.0"
},
"devDependencies": {
"@vercel/ncc": "0.33.3",
"@types/js-yaml": "4.0.5",
"@types/node": "16.11.25",
"prettier": "2.5.1",
"typescript": "4.5.5"
}
}