-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
92 lines (92 loc) · 2.14 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
83
84
85
86
87
88
89
90
91
92
{
"name": "@bagaar/eslint-config",
"version": "0.6.10",
"description": "EsLint config for Bagaar projects.",
"keywords": [
"bagaar",
"bgr",
"config",
"eslint",
"eslintconfig"
],
"license": "MIT",
"author": "Bagaar",
"repository": "https://github.com/Bagaar/eslint-config",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"test": "eslint tests",
"test:debug": "DEBUG=true eslint tests",
"lint": "eslint . --cache",
"format": "prettier --check lib",
"format:fix": "prettier --write lib",
"release": "standard-version",
"prepare": "husky install"
},
"lint-staged": {
"*.js": "prettier --write"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@babel/eslint-parser": "^7.23.3",
"@babel/plugin-proposal-decorators": "^7.22.3",
"@commitlint/cli": "18.4.0",
"@commitlint/config-conventional": "18.4.0",
"eslint": "^8.54.0",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"standard-version": "^9.5.0"
},
"peerDependencies": {
"@babel/eslint-parser": "^7.22.5",
"@babel/plugin-proposal-decorators": "^7.22.3",
"@graphql-eslint/eslint-plugin": "^3.19.1",
"@typescript-eslint/parser": "^7.0.1",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"eslint": "^8.56.0",
"eslint-plugin-ember": "^12.0.0",
"eslint-plugin-n": "^16.3.0",
"eslint-plugin-qunit": "^8.0.0",
"typescript": "^5.3.3"
},
"peerDependenciesMeta": {
"@babel/eslint-parser": {
"optional": true
},
"@babel/plugin-proposal-decorators": {
"optional": true
},
"@graphql-eslint/eslint-plugin": {
"optional": true
},
"@typescript-eslint/parser": {
"optional": true
},
"@typescript-eslint/eslint-plugin": {
"optional": true
},
"eslint-plugin-ember": {
"optional": true
},
"eslint-plugin-n": {
"optional": true
},
"eslint-plugin-qunit": {
"optional": true
},
"typescript": {
"optional": true
}
},
"volta": {
"node": "20.10.0",
"pnpm": "8.11.0"
}
}