forked from lint-staged/lint-staged
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 1.97 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
{
"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": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"type": "module",
"bin": "./bin/lint-staged.js",
"exports": "./lib/index.js",
"files": [
"bin",
"lib"
],
"scripts": {
"cz": "git-cz",
"lint": "eslint .",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"dependencies": {
"cli-truncate": "^3.1.0",
"colorette": "^2.0.16",
"commander": "^8.3.0",
"cosmiconfig": "^7.0.1",
"debug": "^4.3.2",
"enquirer": "^2.3.6",
"execa": "^5.1.1",
"listr2": "^3.13.3",
"micromatch": "^4.0.4",
"normalize-path": "^3.0.0",
"object-inspect": "^1.11.0",
"string-argv": "^0.3.1",
"supports-color": "^9.0.2"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.3",
"@babel/preset-env": "^7.16.0",
"babel-jest": "^27.3.1",
"consolemock": "^1.1.0",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"fs-extra": "^10.0.0",
"husky": "^7.0.4",
"jest": "^27.3.1",
"jest-mock-console": "^1.2.3",
"jest-snapshot-serializer-ansi": "^1.0.0",
"prettier": "^2.4.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"keywords": [
"lint",
"git",
"staged",
"eslint",
"prettier",
"stylelint",
"code",
"quality",
"check",
"format",
"validate"
]
}