-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
39 lines (39 loc) · 956 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
37
38
39
{
"name": "action-doctl",
"version": "2.0.0",
"description": "GitHub Action for DigitalOcean - doctl",
"main": "main.js",
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/exec": "^1.0.4",
"@actions/tool-cache": "^1.5.5",
"@octokit/rest": "^21.0.2"
},
"devDependencies": {
"@vercel/ncc": "^0.36.1",
"eslint": "^9.15.0"
},
"scripts": {
"lint": "eslint main.js",
"test": "npm install; npm run lint",
"package": "ncc build main.js -o dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/digitalocean/action-doctl.git"
},
"keywords": [
"GitHub",
"Actions",
"DigitalOcean",
"CI/CD",
"deployment",
"cloud"
],
"author": "Andrew Starr-Bochicchio <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/digitalocean/action-doctl/issues"
},
"homepage": "https://github.com/digitalocean/action-doctl#readme"
}