-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 1.96 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
{
"name": "@ehmicky/eslint-config",
"version": "18.0.1",
"type": "module",
"exports": {
".": "./.prettierrc.cjs",
"./.eslintrc.yml": "./.eslintrc.yml"
},
"main": "./.prettierrc.cjs",
"files": [
".prettierrc.cjs",
".eslintrc.yml",
".editorconfig"
],
"scripts": {
"test": "gulp test"
},
"description": "ESLint configuration for my own projects",
"keywords": [
"eslint",
"eslintconfig",
"prettier",
"prettierrc",
"standard",
"standard style",
"JavaScript Standard Style",
"editorconfig",
"lint",
"config",
"configuration",
"strict",
"modern",
"modularity",
"functional",
"fp"
],
"license": "Apache-2.0",
"homepage": "https://www.github.com/ehmicky/eslint-config",
"repository": "ehmicky/eslint-config",
"bugs": {
"url": "https://github.com/ehmicky/eslint-config/issues"
},
"author": "ehmicky <[email protected]> (https://github.com/ehmicky)",
"directories": {
"lib": "src",
"test": "test"
},
"devDependencies": {
"@ehmicky/dev-tasks": "^2.0.34",
"execa": "^6.1.0"
},
"peerDependencies": {
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-formatter-codeframe": "^7.32.1",
"eslint-import-resolver-node": "^0.3.6",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-ava": "^13.2.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-unicorn": "^45.0.1",
"eslint-plugin-you-dont-need-lodash-underscore": "^6.12.0",
"prettier": "^2.8.0"
},
"engines": {
"node": ">=14.18.0"
}
}