-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 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
44
45
{
"name": "@cryb/eslint-config",
"version": "1.0.0",
"description": "Shared ESLint config for Cryb projects",
"author": "JeDaYoshi <hi@jeda.im>",
"homepage": "https://github.com/crybapp/eslint-config",
"license": "MIT",
"main": "index.js",
"scripts": {
"lint": "eslint index.js",
"lint:fix": "eslint --fix index.js"
},
"files": [
"index.js"
],
"repository": {
"type": "git",
"url": "https://github.com/crybapp/eslint-config.git"
},
"bugs": "https://github.com/crybapp/eslint-config/issues",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsdoc": "^37.0.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-promise": "^5.1.0"
},
"devDependencies": {
"eslint": "7.32.0",
"typescript": "4.4.4"
},
"peerDependencies": {
"eslint": "^7.12.1",
"typescript": "*"
},
"keywords": [
"cryb",
"eslint",
"eslintconfig",
"internal"
]
}