forked from dukeluo/eslint-plugin-check-file
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.47 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
{
"name": "eslint-plugin-check-file",
"version": "1.2.3",
"description": "ESLint rules for consistent filename and folder. Allows you to enforce a consistent naming pattern for the filename and folder",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"folder",
"path",
"file",
"filename",
"glob-matching",
"naming-conventions"
],
"repository": {
"type": "git",
"url": "git+https://github.com/DukeLuo/eslint-plugin-check-file.git"
},
"author": "Duke Luo <[email protected]> (https://shaiwang.life)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/DukeLuo/eslint-plugin-check-file/issues"
},
"homepage": "https://github.com/DukeLuo/eslint-plugin-check-file",
"main": "lib/index.js",
"scripts": {
"prepare": "husky install",
"lint": "eslint .",
"test": "mocha tests --recursive"
},
"dependencies": {
"is-glob": "^4.0.3",
"micromatch": "^4.0.4",
"requireindex": "^1.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-eslint-plugin": "^4.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "4.0.0",
"husky": "^8.0.1",
"mocha": "^9.2.1",
"prettier": "2.5.1"
},
"engines": {
"node": "12.x || 14.x || >= 16"
},
"peerDependencies": {
"eslint": ">=7.28.0"
},
"files": [
"lib"
]
}