-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 911 Bytes
/
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
{
"name": "eslint-plugin-switch-case",
"version": "3.0.1",
"author": "Luke Page",
"description": "switch-case specific linting rules for ESLint",
"main": "src/index.js",
"scripts": {
"lint": "eslint ./",
"lint-fix": "eslint --fix ./",
"test": "mocha tests/**/*.js --reporter dot"
},
"files": [
"LICENSE",
"README.md",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/lukeapage/eslint-plugin-switch-case"
},
"homepage": "https://github.com/lukeapage/eslint-plugin-switch-case",
"bugs": "https://github.com/lukeapage/eslint-plugin-switch-case/issues",
"peerDependencies": {
"eslint": "^9.8.0"
},
"devDependencies": {
"eslint": "^9.8.0",
"mocha": "^9.2.2"
},
"engines": {
"node": ">=18.18"
},
"keywords": [
"eslint",
"eslint-plugin",
"eslintplugin",
"destructuring"
],
"license": "MIT"
}