-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 800 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 800 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
{
"name": "setup-sam",
"version": "0.1.0",
"private": true,
"description": "Action to setup AWS SAM CLI and add it to the PATH",
"main": "index.js",
"scripts": {
"test": "jest && eslint . && prettier --check .",
"build": "ncc build index.js --out dist --license licenses.txt",
"format": "prettier --write .",
"all": "npm run format && npm test && npm run build"
},
"license": "Apache-2.0",
"dependencies": {
"@actions/cache": "^4.1.0",
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/http-client": "^2.2.3",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.2",
"semver": "^7.7.3"
},
"devDependencies": {
"@vercel/ncc": "^0.38.4",
"eslint": "^9.38.0",
"jest": "^30.2.0",
"prettier": "3.6.2"
}
}