-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.15 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.15 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "glob-concat-cli",
"version": "1.0.1",
"description": "A concatenation tool leveraging fast-glob for CLIs",
"license": "Apache-2.0",
"author": "Cassondra Roberts <castastrophe@users.noreply.github.com> (https://allons-y.llc)",
"repository": {
"type": "git",
"url": "https://github.com/castastrophe/glob-concat-cli.git"
},
"bugs": {
"url": "https://github.com/castastrophe/glob-concat-cli/issues"
},
"type": "module",
"module": "index.js",
"bin": {
"glob-concat": "./cli.js"
},
"scripts": {
"coverage": "c8 yarn test",
"lint": "prettier --config .prettierrc --check . && eslint --cache --no-error-on-unmatched-pattern --report-unused-disable-directives . && markdownlint --config .markdownlint.json *.md --ignore node_modules",
"lint:fix": "prettier --config .prettierrc --write . && eslint --fix --cache --no-ignore --no-error-on-unmatched-pattern . && prettier-package-json --write package.json && markdownlint --config .markdownlint.json --fix *.md --ignore node_modules",
"postinstall": "husky || true",
"precommit": "commitlint --edit \"\" && lint-staged --allow-empty --config lint-staged.config.js",
"prepublishOnly": "yarn test",
"semantic-release": "semantic-release",
"test": "ava"
},
"dependencies": {
"chalk": "^5.6.2",
"concat-with-sourcemaps": "^1.1.0",
"fast-glob": "^3.3.3",
"yargs": "^18.0.0"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@eslint/js": "^10.0.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^14.1.0",
"ava": "^7.0.0",
"c8": "^11.0.0",
"eslint": "^10.2.1",
"eslint-plugin-jsonc": "^3.1.2",
"globals": "^17.0.0",
"husky": "^9.1.7",
"jsonc-eslint-parser": "^3.1.0",
"lint-staged": "^16.4.0",
"markdownlint": "^0.40.0",
"markdownlint-cli": "^0.48.0",
"mock-fs": "^5.5.0",
"prettier": "^3.8.3",
"prettier-package-json": "^2.8.0",
"semantic-release": "^25.0.3"
},
"keywords": [
"cli",
"concat",
"globbing"
],
"engines": {
"node": ">=22.21.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"funding": [
{
"type": "github",
"url": " https://github.com/sponsors/castastrophe"
},
{
"type": "buy-me-a-coffee",
"url": "https://www.buymeacoffee.com/castastrophe"
}
],
"lint-staged": {
"!(*renovate|package).{js,json}": [
"prettier --write",
"eslint --fix --cache --no-error-on-unmatched-pattern"
],
"*.md": [
"prettier --no-error-on-unmatched-pattern --ignore-unknown --log-level silent --write --config .prettierrc",
"markdownlint --config .markdownlint.json --fix"
],
".github/renovate.json": [
"yarn dlx --package renovate -- renovate-config-validator"
],
"package.json": [
"prettier-package-json --write"
]
},
"packageManager": "yarn@4.14.1"
}