-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 818 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "PangaeaTech Reusable Workflows",
"author": "Pangaea Information Technologies, Ltd.",
"license": "MIT",
"private": "true",
"repository": "github:pangaeatech/.github",
"version": "0.1.0",
"devDependencies": {
"@action-validator/cli": "0.6.0",
"@action-validator/core": "0.6.0",
"husky": "9.1",
"lint-staged": "16.4",
"prettier": "3.8",
"run-for-every-file": "1.1"
},
"scripts": {
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"prepare": "husky install .husky",
"lint:actions": "run-for-every-file --src ./.github/workflows/ --file '**/*.yml' --run 'npx action-validator {{src-file}}'",
"lint:templates": "run-for-every-file --src ./workflow-templates/ --file '**/*.yml' --run 'npx action-validator {{src-file}}'"
}
}