-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.33 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.33 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
{
"name": "@checkmarkdevtools/eslint-config-echo",
"version": "0.0.1",
"description": "Enterprise ESLint config package that ships dual v8/v9 flat-config presets aligned to Prettier-first formatting, Sonar, and Jest workflows",
"type": "commonjs",
"main": "index.js",
"exports": {
".": {
"import": "./eslint.config.mjs",
"require": "./index.js",
"default": "./eslint.config.mjs"
},
"./flat": {
"import": "./eslint.config.mjs",
"require": "./eslint.config.cjs",
"default": "./eslint.config.mjs"
}
},
"files": [
"index.js",
"config/",
"eslint.config.cjs",
"eslint.config.mjs"
],
"scripts": {
"hooks:install": "lefthook install",
"test": "node -e \"require('node:fs').mkdirSync('test-results',{recursive:true})\" && c8 node --test --test-reporter=junit --test-reporter-destination=test-results/junit.xml",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"keywords": [
"eslint",
"eslintconfig",
"config",
"jest",
"sonar"
],
"author": "Ashley Childress",
"license": "PolyForm-Shield-1.0.0",
"engines": {
"node": ">=24"
},
"volta": {
"node": "24.13.0"
},
"peerDependencies": {
"eslint": "^8.0.0 || ^9.0.0",
"prettier": "^3.0.0"
},
"dependencies": {
"@eslint/eslintrc": "^3.3.3",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.12.1",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-sonarjs": "^3.0.5",
"eslint-plugin-unused-imports": "^4.2.0",
"eslint-plugin-yml": "^1.18.0",
"globals": "^15.12.0",
"yaml-eslint-parser": "^1.3.0"
},
"devDependencies": {
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"c8": "^10.1.3",
"jest": "^30.2.0",
"lefthook": "^2.0.15",
"prettier": "^3.8.0"
},
"c8": {
"reporter": [
"lcov",
"text"
],
"report-dir": "coverage",
"exclude": [
"coverage/**",
"examples/**",
"test/**",
"tmp/**"
],
"check-coverage": true,
"lines": 90,
"statements": 90,
"functions": 90,
"branches": 90
},
"repository": {
"type": "git",
"url": "https://github.com/ChecKMarKDevTools/eslint-config-echo.git"
}
}