-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.04 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.04 KB
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
{
"name": "upcloud-cli-action",
"version": "1.0.1",
"description": "GitHub Action for UpCloud CLI",
"main": "main.js",
"dependencies": {
"@actions/core": "^2.0.0",
"@actions/exec": "^1.1.1",
"@actions/tool-cache": "^3.0.0",
"@octokit/rest": "^21.1.1",
"prettier": "^3.5.3"
},
"devDependencies": {
"@vercel/ncc": "^0.38.3",
"eslint": "^9.25.1"
},
"scripts": {
"lint": "eslint '*.{js,mjs}' && prettier . --check",
"lint-fix": "eslint '*.{js,mjs}' --fix && prettier . --write",
"test": "npm ci && npm run lint",
"package": "ncc build main.js -o dist --minify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UpCloudLtd/upcloud-cli-action.git"
},
"keywords": [
"UpCloud",
"CI/CD",
"deployment",
"cloud",
"cli",
"infrastructure",
"devops"
],
"author": "UpCloud Ltd",
"license": "MIT",
"bugs": {
"url": "https://github.com/UpCloudLtd/upcloud-cli-action/issues"
},
"homepage": "https://github.com/UpCloudLtd/upcloud-cli-action"
}