-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.19 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
{
"name": "@web-scrobbler/eslint-config",
"version": "3.1.1",
"author": "Alexey <[email protected]>",
"description": "ESLint configuration file for Web Scrobbler projects",
"license": "MIT",
"main": "index.js",
"files": [
"index.js",
"typescript.js",
"solid.js",
"solid.js",
"config/**"
],
"repository": {
"type": "git",
"url": "https://github.com/web-scrobbler/eslint-config-web-scrobbler.git"
},
"keywords": [
"config",
"eslint",
"eslint-config"
],
"engines": {
"node": ">=10.0.0"
},
"devDependencies": {
"eslint": "7.32.0",
"prettier": "^3.2.5",
"prettier-config-web-scrobbler": "0.1.0",
"tape": "^5.7.5"
},
"peerDependencies": {
"@typescript-eslint/eslint-plugin": ">=3",
"@typescript-eslint/parser": ">=3",
"eslint": ">=7",
"eslint-plugin-jsdoc": ">=46.6.0",
"eslint-plugin-react": ">=7.33.2",
"eslint-plugin-solid": ">=0.13.0",
"eslint-plugin-tsdoc": "^0.2.17"
},
"scripts": {
"lint": "eslint --config index.js \"**/*.js\"",
"test": "tape test/*",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"prettier": "prettier-config-web-scrobbler"
}