forked from dukeluo/eslint-plugin-check-file
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.82 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
{
"name": "eslint-plugin-check-file",
"version": "2.5.0",
"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": "Huan Luo <dukeluo@outlook.com> (https://shaiwang.life)",
"funding": {
"type": "ko_fi",
"url": "https://ko-fi.com/huanluo"
},
"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 . --ignore-pattern node_modules/",
"lint:fix": "eslint . --fix --ignore-pattern node_modules/",
"test": "nyc mocha tests --recursive",
"test:report": "nyc report --reporter=text-lcov > coverage.lcov",
"test:cli": "mocha"
},
"dependencies": {
"is-glob": "^4.0.3",
"micromatch": "^4.0.5",
"requireindex": "^1.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"eslint": "^8.40.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-eslint-plugin": "^4.4.1",
"eslint-plugin-jsdoc": "^39.9.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "4.0.0",
"husky": "^8.0.3",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "2.5.1",
"proxyquire": "^2.1.3"
},
"engines": {
"node": "14.x || >= 16"
},
"peerDependencies": {
"eslint": ">=7.28.0"
},
"files": [
"lib"
]
}