forked from lint-staged/lint-staged
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.31 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"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 <andrey@okonet.ru>",
"maintainers": [
"Lufty Wiranda <lufty.wiranda@gmail.com>",
"Suhas Karanth <sudo.suhas@gmail.com>",
"Iiro Jäppinen <iiro@jappinen.fi> (https://iiro.fi)"
],
"funding": {
"url": "https://opencollective.com/lint-staged"
},
"bin": "./bin/lint-staged.js",
"main": "./lib/index.js",
"files": [
"bin",
"lib"
],
"scripts": {
"cz": "git-cz",
"lint": "eslint .",
"pretest": "npm run lint",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"husky": {
"hooks": {
"pre-commit": "./bin/lint-staged.js"
}
},
"dependencies": {
"chalk": "^4.1.0",
"cli-truncate": "^2.1.0",
"commander": "^6.2.0",
"cosmiconfig": "^7.0.0",
"debug": "^4.2.0",
"dedent": "^0.7.0",
"enquirer": "^2.3.6",
"execa": "^4.1.0",
"listr2": "^3.2.2",
"log-symbols": "^4.0.0",
"micromatch": "^4.0.2",
"normalize-path": "^3.0.0",
"please-upgrade-node": "^3.2.0",
"string-argv": "0.3.1",
"stringify-object": "^3.3.0"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"babel-eslint": "10.1.0",
"babel-jest": "^26.6.1",
"consolemock": "^1.1.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"fs-extra": "^9.0.1",
"husky": "^4.3.0",
"jest": "^26.6.1",
"jest-snapshot-serializer-ansi": "^1.0.0",
"prettier": "^2.1.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"lib/**/*.js"
],
"setupFiles": [
"./testSetup.js"
],
"snapshotSerializers": [
"jest-snapshot-serializer-ansi"
],
"testEnvironment": "node"
},
"keywords": [
"lint",
"git",
"staged",
"eslint",
"prettier",
"stylelint",
"code",
"quality",
"check",
"format",
"validate"
]
}