-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.77 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.77 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@codfish/actions",
"type": "module",
"description": "Composite GitHub Actions for my projects.",
"author": "Chris O'Donnell <chris@codfish.dev>",
"license": "MIT",
"version": "0.0.0-semantically-released",
"repository": {
"type": "git",
"url": "https://github.com/codfish/actions.git"
},
"publishConfig": {
"access": "public"
},
"files": [
"comment",
"npm-publish-pr",
"setup-node-and-install",
"bin",
"README.md"
],
"scripts": {
"lint": "eslint",
"format": "eslint --fix",
"test": "bash tests/scripts/test-runner.sh",
"test:integration": "bash tests/scripts/test-runner.sh integration",
"test:unit": "bash tests/scripts/test-runner.sh unit",
"docs:generate": "node bin/generate-docs.js",
"prepare": "husky"
},
"devDependencies": {
"@codfish/eslint-config": "13.1.2",
"bats": "^1.13.0",
"doctoc": "^2.3.0",
"eslint": "^10.0.3",
"husky": "^9.1.7",
"js-yaml": "^4.1.0",
"lint-staged": "^16.3.2",
"prettier": "^3.8.1"
},
"packageManager": "pnpm@10.33.0",
"commitlint": {
"extends": [
"./node_modules/@codfish/eslint-config/commitlint.js"
]
},
"lint-staged": {
"*.{json,css}": [
"prettier --write --config ./node_modules/@codfish/eslint-config/prettier.js"
],
"*.md": [
"prettier --write --config ./node_modules/@codfish/eslint-config/prettier.js",
"doctoc --title '## Table of Contents'"
]
},
"pnpm": {
"overrides": {
"ajv@>=7.0.0-alpha.0 <8.18.0": ">=8.18.0",
"minimatch@<3.1.3": ">=3.1.3",
"minimatch@<3.1.4": ">=3.1.4",
"minimatch@>=9.0.0 <9.0.6": ">=9.0.6",
"minimatch@>=9.0.0 <9.0.7": ">=9.0.7",
"underscore@<=1.13.7": ">=1.13.8",
"flatted@<3.4.0": ">=3.4.0"
}
}
}