-
-
Notifications
You must be signed in to change notification settings - Fork 69
/
package.json
100 lines (100 loc) · 2.78 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "eslint-config-love",
"type": "module",
"version": "99.0.0",
"description": "A TypeScript ESLint config that loves you",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/mightyiam"
},
"https://wise.com/pay/me/shaharo"
],
"main": "lib/index.js",
"scripts": {
"compile": "tsc",
"lint": "eslint .",
"format/check": "prettier . --check",
"format/fix": "prettier . --write",
"unit": "ava",
"test": "run-s clean-artifacts format/check compile lint unit",
"clean-artifacts": "git clean lib -X --force",
"is-code-clean": "git diff-index HEAD --quiet",
"prepublishOnly": "run-s is-code-clean compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mightyiam/eslint-config-love.git"
},
"author": "Shahar Or <[email protected]> (mightyiam)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mightyiam/eslint-config-love/issues"
},
"homepage": "https://github.com/mightyiam/eslint-config-love#readme",
"keywords": [
"check",
"checker",
"code",
"code checker",
"code linter",
"code standards",
"code style",
"enforce",
"eslint",
"eslintconfig",
"hint",
"jscs",
"jshint",
"lint",
"policy",
"quality",
"simple",
"style",
"style checker",
"style linter",
"verify",
"TypeScript"
],
"dependencies": {
"@typescript-eslint/utils": "^8.12.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.0.0",
"eslint-plugin-promise": "^7.0.0",
"typescript-eslint": "^8.12.0"
},
"peerDependencies": {
"eslint": "^9.0.0",
"typescript": "*"
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/lodash": "4.17.13",
"@types/node": "22.9.0",
"@types/npm-package-arg": "6.1.4",
"@types/semver": "7.5.8",
"ava": "6.2.0",
"conventional-changelog-conventionalcommits": "8.0.0",
"eslint": "9.14.0",
"eslint_bottom": "npm:[email protected]",
"eslint-plugin-eslint-comments_bottom": "npm:[email protected]",
"eslint-plugin-import_bottom": "npm:[email protected]",
"eslint-plugin-n_bottom": "npm:[email protected]",
"eslint-plugin-promise_bottom": "npm:[email protected]",
"execa": "9.5.1",
"lefthook": "1.8.2",
"lodash": "4.17.21",
"npm-run-all": "4.1.5",
"prettier": "3.3.3",
"read-package-up": "11.0.0",
"semantic-release": "24.2.0",
"semver": "7.6.3",
"type-fest": "4.27.0",
"typescript": "5.6.3",
"typescript-eslint_bottom": "npm:[email protected]"
}
}