-
-
Notifications
You must be signed in to change notification settings - Fork 461
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.21 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.21 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
{
"name": "lint-staged",
"version": "16.3.2",
"description": "Lint files staged by git",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/lint-staged/lint-staged.git"
},
"homepage": "https://github.com/lint-staged/lint-staged#readme",
"bugs": {
"url": "https://github.com/lint-staged/lint-staged/issues"
},
"author": "Andrey Okonetchnikov <[email protected]>",
"maintainers": [
"Iiro Jäppinen <[email protected]> (https://iiro.fi)"
],
"funding": {
"url": "https://opencollective.com/lint-staged"
},
"engines": {
"node": ">=20.17"
},
"type": "module",
"bin": {
"lint-staged": "bin/lint-staged.js"
},
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./bin": "./bin/lint-staged.js",
"./package.json": "./package.json"
},
"types": "./lib/index.d.ts",
"files": [
"bin/",
"lib/",
"MIGRATION.md"
],
"scripts": {
"lint": "eslint",
"test": "vitest",
"typecheck": "tsc",
"version": "npx changeset version",
"postversion": "npm i --package-lock-only && git commit -am \"chore(changeset): release\"",
"tag": "npx changeset tag"
},
"dependencies": {
"commander": "^14.0.3",
"listr2": "^9.0.5",
"micromatch": "^4.0.8",
"string-argv": "^0.3.2",
"tinyexec": "^1.0.2",
"yaml": "^2.8.2"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.2",
"@changesets/cli": "2.29.8",
"@commitlint/cli": "20.4.2",
"@commitlint/config-conventional": "20.4.2",
"@eslint/js": "10.0.1",
"@vitest/coverage-v8": "4.0.18",
"@vitest/eslint-plugin": "1.6.9",
"consolemock": "1.1.0",
"cross-env": "10.1.0",
"eslint": "10.0.2",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-n": "17.24.0",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-simple-import-sort": "12.1.1",
"husky": "9.1.7",
"mock-stdin": "1.0.0",
"prettier": "3.8.1",
"semver": "7.7.4",
"typescript": "5.9.3",
"vitest": "4.0.18"
},
"keywords": [
"lint",
"git",
"staged",
"eslint",
"prettier",
"stylelint",
"code",
"quality",
"check",
"format",
"validate"
]
}