forked from chrislennon/action-aws-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 675 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 675 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
28
29
30
31
{
"name": "action-aws-cli",
"version": "0.0.1",
"private": true,
"description": "Installs AWS cli",
"main": "src/index.js",
"scripts": {
"build": "ncc build src/index.js --license LICENSE -o dist",
"run": "node dist/index.js",
"debug": "node dist/index.js"
},
"repository": {
"type": "git",
"url": "git@github.com:ohthepain/action-install-aws-cli.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Paul Wilkinson",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.0.0",
"@actions/github": "^6.0.0"
},
"devDependencies": {
"node": "^20.13.1"
}
}