-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.94 KB
/
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
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
{
"name": "limitlines",
"version": "0.0.0-development",
"description": "Lint and report number of lines by file",
"keywords": [
"lint",
"lines",
"files",
"lines by files",
"max lines",
"min lines",
"report"
],
"author": "Tiago Porto (https://www.tiagoporto.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tiagoporto/limitlines.git"
},
"funding": "https://github.com/sponsors/tiagoporto",
"type": "module",
"engines": {
"node": ">=18"
},
"bin": {
"limitlines": "limitlines.mjs"
},
"files": [
"limitlines.mjs"
],
"scripts": {
"checks": "npm run check-docs && npm run formatting:check && npm run lint",
"check-docs": "remark --frail . --ext md,markdown,mdx",
"formatting:check": "prettier --check --ignore-unknown \"**/*\"",
"formatting": "npm run formatting:check -- --write",
"lint": "eslint --max-warnings 0",
"lint:fix": "npm run lint -- --write",
"tag": "git tag v$npm_package_version",
"postpublish": "npm run tag && git push --tags",
"prepare": "husky",
"release": "semantic-release",
"release:dry-run": "semantic-release --dry-run --debug"
},
"dependencies": {
"chalk": "^5.4.1",
"commander": "^13.0.0",
"count-lines-in-file": "^1.1.0",
"globby": "^14.0.2"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@tiagoporto/dependabot-config": "^1.2.0",
"@tiagoporto/editor-config": "^1.3.0",
"@tiagoporto/eslint-config": "^2.6.0",
"@tiagoporto/prettier-config": "^1.2.0",
"@tiagoporto/remark-config": "^1.6.0",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"remark": "^15.0.1",
"remark-cli": "^12.0.1",
"semantic-release": "^24.2.1"
},
"overrides": {
"conventional-changelog-conventionalcommits": ">= 8.0.0"
}
}