forked from hjylewis/esplint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.38 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
{
"name": "esplint",
"version": "0.9.3",
"description": "A ESLint warning tracker to help introduce rules into a legacy code base",
"bin": "index.js",
"scripts": {
"release": "standard-version --commit-all",
"test": "jest"
},
"lint-staged": {
"*.{js,json,md}": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/hjylewis/esplint.git"
},
"keywords": [
"eslint",
"javascript",
"linter"
],
"author": "hjylewis",
"license": "MIT",
"bugs": {
"url": "https://github.com/hjylewis/esplint/issues"
},
"homepage": "https://github.com/hjylewis/esplint#readme",
"devDependencies": {
"eslint": "^7.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-jest": "^22.16.0",
"execa": "^2.0.3",
"husky": "^3.0.4",
"jest": "^25.5.3",
"lint-staged": "^9.2.0",
"prettier": "^1.13.6",
"standard-version": "^9.0.0",
"strip-ansi": "^5.0.0"
},
"peerDependencies": {
"eslint": ">=4.19.1"
},
"dependencies": {
"chalk": "^2.4.1",
"cosmiconfig": "^5.2.1",
"figures": "^2.0.0",
"lodash": "^4.17.11",
"object-hash": "^1.3.0",
"pkg-dir": "^4.2.0",
"semver": "^6.1.1",
"simple-git": "^1.126.0",
"yargs": "^14.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
}
}