forked from sindresorhus/eslint-formatter-pretty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.02 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
{
"name": "eslint-formatter-pretty-summary",
"version": "1.0.3",
"description": "Pretty ESLint summary formatter",
"license": "MIT",
"repository": "aeolun/eslint-formatter-pretty-summary",
"funding": "https://github.com/sponsors/aeolun",
"authors": [
{
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "https://sindresorhus.com"
},
{
"name": "Bart Riepe",
"email": "[email protected]",
"url": "https://serial-experiments.com"
}
],
"engines": {
"node": ">=10"
},
"scripts": {
"test": "ava"
},
"files": [
"index.js"
],
"keywords": [
"eslint",
"eslint-formatter",
"formatter",
"summary",
"reporter",
"lint",
"validate"
],
"dependencies": {
"ansi-escapes": "^4.2.1",
"chalk": "^4.1.0",
"eslint-rule-docs": "^1.1.5",
"log-symbols": "^4.0.0",
"plur": "^4.0.0",
"string-width": "^4.2.0",
"supports-hyperlinks": "^2.0.0"
},
"devDependencies": {
"ava": "^2.4.0",
"strip-ansi": "^6.0.0",
"xo": "^0.32.0"
},
"ava": {
"serial": true
}
}