-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
82 lines (82 loc) · 2 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
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
{
"name": "@adfinis/eslint-config",
"version": "3.0.2",
"description": "Adfinis' ESlint config, following our coding guidelines",
"type": "module",
"exports": {
".": {
"import": "./index.mjs"
},
"./ember-addon": {
"import": "./ember-addon.mjs"
},
"./ember-app": {
"import": "./ember-app.mjs"
}
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adfinis/eslint-config.git"
},
"keywords": [
"eslint",
"eslintconfig",
"adfinis",
"javascript",
"styleguide"
],
"author": "Adfinis AG <info@adfinis.com>",
"license": "LGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/adfinis/eslint-config/issues"
},
"homepage": "https://github.com/adfinis/eslint-config#readme",
"devDependencies": {
"@adfinis/semantic-release-config": "5.0.0",
"@babel/core": "7.26.8",
"@babel/eslint-parser": "7.26.8",
"@eslint/compat": "1.2.6",
"eslint": "9.20.1",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "5.2.3",
"globals": "15.14.0",
"prettier": "3.5.0",
"semantic-release": "24.2.2"
},
"peerDependencies": {
"@babel/core": ">= 7",
"@babel/eslint-parser": ">= 7",
"@babel/plugin-proposal-decorators": ">= 7",
"eslint": ">= 9",
"eslint-config-prettier": ">= 9",
"eslint-plugin-ember": ">= 12",
"eslint-plugin-import": ">= 2",
"eslint-plugin-n": ">= 16",
"eslint-plugin-prettier": ">= 5",
"eslint-plugin-qunit": ">= 8",
"prettier": ">= 3"
},
"peerDependenciesMeta": {
"@babel-plugin-proposal-decorators": {
"optional": true
},
"eslint-plugin-ember": {
"optional": true
},
"eslint-plugin-n": {
"optional": true
},
"eslint-plugin-qunit": {
"optional": true
}
},
"release": {
"extends": "@adfinis/semantic-release-config"
},
"packageManager": "pnpm@9.15.0"
}