-
-
Notifications
You must be signed in to change notification settings - Fork 91
/
package.json
96 lines (96 loc) · 2.5 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
{
"name": "eslint-plugin-promise",
"version": "7.1.0",
"description": "Enforce best practices for JavaScript promises",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"promise",
"promises"
],
"homepage": "https://github.com/eslint-community/eslint-plugin-promise",
"bugs": "https://github.com/eslint-community/eslint-plugin-promise/issues",
"repository": {
"type": "git",
"url": "https://github.com/eslint-community/eslint-plugin-promise"
},
"license": "ISC",
"author": "jden <jason@denizac.org>",
"contributors": [
"Brett Zamir",
"Aadit M Shah <aaditmshah@aadit.codes> (https://aadit.codes/)"
],
"scripts": {
"format": "prettier --write . && eslint . --fix",
"lint": "npm-run-all \"lint:*\"",
"lint:eslint-docs": "npm run update:eslint-docs && git diff --exit-code",
"lint:js": "eslint --report-unused-disable-directives .",
"prepare": "husky",
"test": "jest --coverage",
"update:eslint-docs": "eslint-doc-generator && npm run format"
},
"lint-staged": {
"{README.md,CONTRIBUTING.md}": [
"doctoc --maxlevel 3 --notitle"
],
"*.js": [
"prettier --write",
"eslint --report-unused-disable-directives --fix"
],
"*.+(json|md)": [
"prettier --write"
]
},
"prettier": {
"proseWrap": "always",
"semi": false,
"singleQuote": true
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"collectCoverageFrom": [
"rules/*.js",
"rules/*/*.js",
"!rules/lib/eslint-compat.js"
],
"testPathIgnorePatterns": [
"__tests__/rule-tester.js"
]
},
"devDependencies": {
"@typescript-eslint/parser": "^7.17.0",
"doctoc": "^2.2.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-doc-generator": "^1.7.1",
"eslint-plugin-eslint-plugin": "^6.2.0",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-n": "^17.9.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.8.0",
"husky": "^9.1.1",
"jest": "^29.7.0",
"lint-staged": "^15.2.7",
"npm-run-all2": "^6.2.2",
"prettier": "^3.3.3",
"typescript": "~5.6.0"
},
"peerDependencies": {
"eslint": "^7.0.0 || ^8.0.0 || ^9.0.0"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"funding": "https://opencollective.com/eslint",
"dependencies": {
"@eslint-community/eslint-utils": "^4.4.0"
}
}