forked from eslint-community/eslint-plugin-promise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.14 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
{
"name": "eslint-plugin-promise",
"version": "6.0.2",
"description": "Enforce best practices for JavaScript promises",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"promise",
"promises"
],
"author": "jden <jason@denizac.org>",
"contributors": [
"Brett Zamir",
"Aadit M Shah <aaditmshah@aadit.codes> (https://aadit.codes/)"
],
"repository": "https://github.com/xjamundx/eslint-plugin-promise",
"homepage": "https://github.com/xjamundx/eslint-plugin-promise",
"bugs": "https://github.com/xjamundx/eslint-plugin-promise/issues",
"scripts": {
"format": "prettier --write .",
"lint": "eslint .",
"prepare": "husky install",
"test": "jest --coverage"
},
"devDependencies": {
"@typescript-eslint/parser": "^5.35.1",
"doctoc": "^2.1.0",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-eslint-plugin": "^4.1.0",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.4.5",
"jest-runner-eslint": "^1.0.0",
"lint-staged": "^12.1.2",
"prettier": "^2.5.1",
"typescript": "^4.7.4"
},
"peerDependencies": {
"eslint": "^7.0.0 || ^8.0.0"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"license": "ISC",
"lint-staged": {
"{README.md,CONTRIBUTING.md}": [
"doctoc --maxlevel 3 --notitle"
],
"*.js": [
"prettier --write",
"eslint --fix"
],
"*.+(json|md)": [
"prettier --write"
]
},
"prettier": {
"semi": false,
"singleQuote": true,
"proseWrap": "always"
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"projects": [
{
"displayName": "test",
"testEnvironment": "node"
},
{
"runner": "jest-runner-eslint",
"displayName": "lint",
"testMatch": [
"<rootDir>/rules/**/*.js",
"<rootDir>/__tests__/**/*.js",
"<rootDir>/index.js"
]
}
]
}
}