generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
31 lines (31 loc) · 911 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
{
"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",
"test": "npm run prettier:check & npm run build:check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bobheadxi/deployments.git"
},
"author": "bobheadxi",
"license": "MIT",
"dependencies": {
"@actions/core": "1.10.0",
"@actions/github": "5.1.0"
},
"devDependencies": {
"@vercel/ncc": "0.36.0",
"@types/js-yaml": "4.0.5",
"@types/node": "18.11.18",
"prettier": "2.8.3",
"typescript": "4.9.4"
}
}