-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 819 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 819 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
{
"name": "cloudfront-invalidator",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run fix:format && npm run check && npm run build:package",
"build:package": "ncc build src/index.js --source-map --license licenses.txt",
"check": "concurrently -n check: -c red,green,blue -g npm:check:*",
"fix:format": "prettier --write ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@actions/core": "^2.0.1",
"@actions/github": "^6.0.0",
"@aws-sdk/client-cloudfront": "^3.635.0",
"@aws-sdk/client-resource-groups-tagging-api": "^3.635.0",
"@vercel/ncc": "^0.38.1",
"aws-sdk": "^2.1679.0",
"concurrently": "^9.0.1",
"prettier": "^3.3.3"
}
}