-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.55 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
{
"name": "@synor/eslint-config",
"version": "0.1.0",
"description": "ESLint configuration for Synor",
"keywords": [
"synor",
"eslint",
"eslintconfig"
],
"homepage": "https://github.com/Synor/eslint-config#readme",
"bugs": "https://github.com/Synor/eslint-config/issues",
"license": "MIT",
"author": "Munif Tanjim (https://muniftanjim.dev)",
"files": [
"index.js"
],
"main": "index.js",
"repository": "https://github.com/Synor/eslint-config",
"scripts": {
"lint": "eslint . --config=index.js"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.16.0",
"@typescript-eslint/parser": "^2.16.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-config-standard-with-typescript": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"prettier": "^1.19.1",
"typescript": "^3.8.3"
},
"peerDependencies": {
"@typescript-eslint/eslint-plugin": ">= 2.16",
"@typescript-eslint/parser": ">= 2.16",
"eslint": ">= 6.8",
"eslint-config-prettier": ">= 6.9",
"eslint-config-standard-with-typescript": ">= 14.0",
"eslint-plugin-import": ">= 2.20",
"eslint-plugin-node": ">= 11.0",
"eslint-plugin-prettier": ">= 3.1",
"eslint-plugin-promise": ">= 4.2",
"eslint-plugin-standard": ">= 4.0",
"prettier": ">= 1.19",
"typescript": ">= 3.8"
},
"publishConfig": {
"access": "public"
}
}