-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.12 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
{
"name": "@haensl/eslint-config",
"version": "2.0.0",
"description": "Default ESLint configuration of HP Dietz.",
"main": "lib/index.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "ESLINT_USE_FLAT_CONFIG=true eslint './**/*.js'",
"lint:ci": "ESLINT_USE_FLAT_CONFIG=true eslint --format junit -o test-results/eslint/results.xml './**/*.js'",
"prepare": "if [ $NODE_ENV != 'production' ]; then husky install; fi"
},
"repository": {
"type": "git",
"url": "git+https://github.com/haensl/eslint-config.git"
},
"keywords": [
"ESLint",
"config",
"rules"
],
"peerDependencies": {
"eslint": ">= 9"
},
"author": {
"name": "HP Dietz",
"url": "https://hpdietz.com",
"email": "h.p.dietz@gmail.com",
"twitter": "@h_p_d"
},
"funding": "https://github.com/sponsors/haensl",
"license": "MIT",
"bugs": {
"url": "https://github.com/haensl/eslint-config/issues"
},
"homepage": "https://github.com/haensl/eslint-config#readme",
"devDependencies": {
"eslint": "^9.11.1",
"eslint-formatter-junit": "^8.40.0",
"husky": "^9.1.6"
}
}