-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.32 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.32 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
{
"name": "@spotify/eslint-plugin",
"version": "15.0.0",
"description": "Set of rules for Spotify's custom ESLint rules",
"author": "Bilawal Hameed <bil@spotify.com>",
"homepage": "https://github.com/spotify/web-scripts/blob/master/packages/eslint-plugin#readme",
"keywords": [
"eslint",
"eslint-plugin",
"react",
"typescript"
],
"license": "Apache-2.0",
"main": "cjs/index.js",
"module": "esm/index.js",
"types": "types",
"files": [
"cjs",
"esm",
"types"
],
"repository": {
"type": "git",
"url": "git+https://github.com/spotify/web-scripts.git",
"directory": "packages/eslint-plugin"
},
"bugs": {
"url": "https://github.com/spotify/web-scripts/issues"
},
"scripts": {
"build": "web-scripts build",
"test": "web-scripts test",
"lint": "web-scripts lint --stylecheck",
"format": "web-scripts format"
},
"devDependencies": {
"@spotify/web-scripts": "^15.0.0",
"@types/eslint": "^8.37.0",
"@types/jest": "^29.5.1",
"@typescript-eslint/parser": "^5.59.6",
"@typescript-eslint/types": "^5.59.6",
"eslint": "^8.40.0",
"typescript": "^5.0.4"
},
"peerDependencies": {
"@typescript-eslint/parser": "^5.13.0",
"eslint": ">=8.x"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
}
}