-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
32 lines (32 loc) · 871 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
{
"name": "cfn-lint-action",
"version": "2.1.0",
"private": true,
"description": "Action to setup CloudFormation to the the PATH",
"main": "index.js",
"scripts": {
"test": "jest --coverage --verbose && 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",
"prepare": "husky"
},
"license": "MIT License",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/io": "^1.1.3"
},
"devDependencies": {
"@vercel/ncc": "^0.38.3",
"eslint": "^9.15.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "3.3.3"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}