forked from lint-staged/lint-staged
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.17 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
{
"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)"
],
"bin": "index.js",
"files": ["index.js", "src"],
"scripts": {
"cz": "git-cz",
"lint:base": "eslint --rule \"prettier/prettier: 2\"",
"lint": "npm run lint:base -- .",
"lint:fix": "npm run lint -- --fix",
"pretest": "npm run lint",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"husky": {
"hooks": {
"pre-commit": "node index.js"
}
},
"dependencies": {
"chalk": "^2.4.2",
"commander": "^2.20.0",
"cosmiconfig": "^5.2.1",
"debug": "^4.1.1",
"dedent": "^0.7.0",
"del": "^4.1.1",
"execa": "^2.0.1",
"listr": "^0.14.3",
"log-symbols": "^3.0.0",
"micromatch": "^4.0.2",
"please-upgrade-node": "^3.1.1",
"string-argv": "^0.3.0",
"stringify-object": "^3.3.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-jest": "^23.6.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"commitizen": "^2.9.6",
"consolemock": "^1.0.2",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^4.18.1",
"eslint-config-okonet": "^5.0.1",
"eslint-plugin-node": "^6.0.0",
"fs-extra": "^8.0.1",
"husky": "^1.1.4",
"jest": "^23.6.0",
"jest-snapshot-serializer-ansi": "^1.0.0",
"jsonlint": "^1.6.2",
"prettier": "1.11.1",
"tmp": "0.0.33"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"collectCoverageFrom": ["src/**/*.js"],
"setupFiles": ["./testSetup.js"],
"snapshotSerializers": ["jest-snapshot-serializer-ansi"],
"testEnvironment": "node"
},
"keywords": [
"lint",
"git",
"staged",
"eslint",
"prettier",
"stylelint",
"code",
"quality",
"check",
"format",
"validate"
]
}