-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 880 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 880 Bytes
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
{
"name": "@code-pushup/eslint-formatter-multi",
"version": "0.0.1",
"private": false,
"type": "module",
"main": "./src/index.js",
"types": "./src/index.d.ts",
"engines": {
"node": ">=17.0.0"
},
"description": "ESLint formatter that supports multiple output formats and destinations simultaneously",
"author": "Michael Hladky",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/code-pushup/cli.git",
"directory": "tools/eslint-formatter-multi"
},
"keywords": [
"eslint",
"eslint-formatter",
"eslintformatter",
"multi-format",
"code-quality",
"linting"
],
"files": [
"src/*",
"README.md"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"ansis": "^3.3.0",
"tslib": "^2.8.1"
},
"peerDependencies": {
"eslint": "^8.0.0 || ^9.0.0"
}
}