-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
57 lines (57 loc) · 1.3 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
{
"name": "esplint",
"version": "0.10.2",
"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",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,json,md}": [
"prettier --write"
]
},
"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": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.1.2",
"execa": "^5.0.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^13.2.1",
"prettier": "^2.6.0",
"standard-version": "^9.3.2",
"strip-ansi": "^6.0.0"
},
"peerDependencies": {
"eslint": ">=7.0.0"
},
"dependencies": {
"chalk": "^4.0.0",
"cosmiconfig": "^8.1.3",
"figures": "^3.0.0",
"lodash": "^4.17.21",
"object-hash": "^3.0.0",
"pkg-dir": "^5.0.0",
"semver": "^7.3.5",
"simple-git": "^3.4.0",
"yargs": "^17.4.0"
}
}