forked from lint-staged/lint-staged
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.89 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
{
"name": "lint-staged",
"version": "0.0.0-development",
"description": "Lint files staged by git",
"license": "MIT",
"repository": "https://github.com/okonet/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": "^14.13.1 || >=16.0.0"
},
"type": "module",
"bin": "./bin/lint-staged.js",
"exports": {
".": "./lib/index.js",
"./package.json": "./package.json"
},
"files": [
"bin",
"lib"
],
"scripts": {
"lint": "eslint .",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"dependencies": {
"cli-truncate": "^3.1.0",
"colorette": "^2.0.17",
"commander": "^9.3.0",
"debug": "^4.3.4",
"execa": "^6.1.0",
"lilconfig": "2.0.5",
"listr2": "^4.0.5",
"micromatch": "^4.0.5",
"normalize-path": "^3.0.0",
"object-inspect": "^1.12.2",
"pidtree": "^0.6.0",
"string-argv": "^0.3.1",
"yaml": "^2.1.1"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/eslint-parser": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"babel-jest": "^28.1.1",
"babel-plugin-transform-imports": "2.0.0",
"consolemock": "^1.1.0",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"fs-extra": "^10.1.0",
"husky": "^8.0.1",
"jest": "^28.1.1",
"jest-snapshot-serializer-ansi": "^1.0.0",
"prettier": "^2.6.2"
},
"keywords": [
"lint",
"git",
"staged",
"eslint",
"prettier",
"stylelint",
"code",
"quality",
"check",
"format",
"validate"
]
}