-
-
Notifications
You must be signed in to change notification settings - Fork 433
/
Copy pathpackage.json
86 lines (86 loc) · 2.22 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "lint-staged",
"version": "15.4.3",
"description": "Lint files staged by git",
"license": "MIT",
"repository": "https://github.com/lint-staged/lint-staged",
"author": "Andrey Okonetchnikov <[email protected]>",
"maintainers": [
"Lufty Wiranda <[email protected]>",
"Suhas Karanth <[email protected]>",
"Iiro Jäppinen <[email protected]> (https://iiro.fi)"
],
"funding": {
"url": "https://opencollective.com/lint-staged"
},
"engines": {
"node": ">=18.12.0"
},
"type": "module",
"bin": "./bin/lint-staged.js",
"exports": {
".": "./lib/index.js",
"./bin": "./bin/lint-staged.js",
"./package.json": "./package.json"
},
"files": [
"bin",
"lib"
],
"scripts": {
"lint": "eslint .",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules npx jest --coverage",
"test:watch": "npm run test -- --watch",
"typecheck": "tsc --noEmit --strict test/types/index.ts",
"version": "npx changeset version",
"postversion": "npm i --package-lock-only && git commit -am \"chore(changeset): release\"",
"tag": "npx changeset tag"
},
"dependencies": {
"chalk": "^5.4.1",
"commander": "^13.1.0",
"debug": "^4.4.0",
"execa": "^8.0.1",
"lilconfig": "^3.1.3",
"listr2": "^8.2.5",
"micromatch": "^4.0.8",
"pidtree": "^0.6.0",
"string-argv": "^0.3.2",
"yaml": "^2.7.0"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.11",
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@eslint/js": "9.18.0",
"consolemock": "1.1.0",
"cross-env": "7.0.3",
"eslint": "9.18.0",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-jest": "28.11.0",
"eslint-plugin-n": "17.15.1",
"eslint-plugin-prettier": "5.2.3",
"eslint-plugin-simple-import-sort": "12.1.1",
"husky": "9.1.7",
"jest": "29.7.0",
"jest-snapshot-serializer-ansi": "2.1.0",
"mock-stdin": "1.0.0",
"prettier": "3.4.2",
"semver": "7.6.3",
"typescript": "5.7.3"
},
"keywords": [
"lint",
"git",
"staged",
"eslint",
"prettier",
"stylelint",
"code",
"quality",
"check",
"format",
"validate"
]
}