forked from lint-staged/lint-staged
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) Β· 2.22 KB
/
package.json
File metadata and controls
101 lines (101 loc) Β· 2.22 KB
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
101
{
"name": "lint-committed",
"description": "Lint files committed in your pull request for git",
"main": "index.js",
"bin": {
"lint-committed": "index.js"
},
"engines": {
"node": ">=4.0.0"
},
"files": [
"src"
],
"scripts": {
"commit": "git-cz",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"pre-commit": "remove-lockfiles && node index.js",
"pretest": "npm run lint",
"test": "jest --coverage",
"deps": "npm-check -s",
"deps:update": "npm-check -u"
},
"pre-commit": "pre-commit",
"jest": {
"testEnvironment": "node",
"setupFiles": [
"./testSetup.js"
]
},
"greenkeeper": {
"ignore": [
"cosmiconfig"
]
},
"repository": {
"type": "git",
"url": "https://github.com/clakech/lint-committed.git"
},
"keywords": [
"lint",
"git",
"committed",
"pull-request",
"diff",
"javascript",
"css",
"scss",
"sass",
"eslint",
"stylelint",
"code",
"quality"
],
"author": "@cyril_lakech",
"license": "MIT",
"bugs": {
"url": "https://github.com/clakech/lint-committed/issues"
},
"homepage": "https://github.com/clakech/lint-committed#readme",
"dependencies": {
"app-root-path": "^2.0.0",
"chalk": "^2.1.0",
"committed-git-files": "0.0.1",
"cosmiconfig": "^1.1.0",
"execa": "^0.8.0",
"is-glob": "^4.0.0",
"jest-validate": "^20.0.3",
"listr": "^0.12.0",
"lodash": "^4.17.4",
"log-symbols": "^2.0.0",
"minimatch": "^3.0.0",
"npm-which": "^3.0.1",
"p-map": "^1.1.1",
"stringify-object": "^3.2.0"
},
"devDependencies": {
"babel-jest": "^20.0.0",
"babel-preset-env": "^1.6.0",
"commitizen": "^2.9.6",
"consolemock": "^0.2.1",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^4.5.0",
"eslint-config-okonet": "^5.0.1",
"eslint-plugin-node": "^5.1.1",
"jest": "^20.0.4",
"jest-cli": "^20.0.4",
"jsonlint": "^1.6.2",
"npm-check": "^5.2.2",
"pre-commit": "^1.1.3",
"prettier": "1.5.3",
"remove-lockfiles": "^1.1.1",
"strip-ansi": "^3.0.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"version": "0.0.0-development"
}