forked from lint-staged/lint-staged
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) Β· 2.01 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",
"description": "Lint files staged by git",
"main": "index.js",
"bin": {
"lint-staged": "index.js"
},
"scripts": {
"postinstall": "echo \"π«π© lint-staged installed! \nDo not forget to configure it. See https://github.com/okonet/lint-staged/blob/master/README.md\" && exit 0",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"pre-commit": "node index.js",
"test": "jest --coverage",
"deps": "npm-check -s",
"deps:update": "npm-check -u",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"pre-commit": "pre-commit",
"greenkeeper": {
"ignore": [
"cosmiconfig"
]
},
"repository": {
"type": "git",
"url": "https://github.com/okonet/lint-staged.git"
},
"keywords": [
"lint",
"git",
"staged",
"javascript",
"css",
"scss",
"sass",
"eslint",
"stylelint",
"code",
"quality"
],
"author": "Andrey Okonetchnikov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/okonet/lint-staged/issues"
},
"homepage": "https://github.com/okonet/lint-staged#readme",
"dependencies": {
"app-root-path": "^2.0.0",
"cosmiconfig": "^1.1.0",
"execa": "^0.6.0",
"listr": "^0.11.0",
"minimatch": "^3.0.0",
"npm-which": "^3.0.1",
"staged-git-files": "0.0.4"
},
"devDependencies": {
"babel-core": "^6.10.4",
"babel-jest": "^19.0.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.16.3",
"cz-conventional-changelog": "^1.2.0",
"eslint": "^3.9.1",
"eslint-config-okonet": "^1.1.1",
"expect": "^1.20.2",
"is-promise": "^2.1.0",
"jest": "^19.0.2",
"jsonlint": "^1.6.2",
"jsonlint-cli": "^1.0.1",
"npm-check": "^5.2.2",
"pre-commit": "^1.1.3",
"semantic-release": "^6.3.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"version": "0.0.0-development"
}