-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
84 lines (84 loc) · 2.04 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
{
"name": "eslint-plugin-check-file",
"version": "2.8.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": "https://github.com/dukeluo/eslint-plugin-check-file"
},
"author": "Huan Luo <[email protected]> (https://shaiwang.life)",
"funding": [
{
"type": "ko_fi",
"url": "https://ko-fi.com/huanluo"
},
{
"type": "github",
"url": "https://github.com/sponsors/dukeluo"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/dukeluo/eslint-plugin-check-file/issues"
},
"homepage": "https://github.com/dukeluo/eslint-plugin-check-file",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"prepare": "husky",
"build": "rollup -c",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "c8 mocha --loader=esmock tests --recursive",
"test:report": "c8 report -r=lcov",
"test:cli": "mocha --loader=esmock"
},
"dependencies": {
"is-glob": "^4.0.3",
"micromatch": "^4.0.8"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.15.0",
"@rollup/plugin-terser": "^0.4.4",
"c8": "^10.1.2",
"eslint": "^9.15.0",
"eslint-plugin-eslint-plugin": "^6.3.2",
"eslint-plugin-jsdoc": "^50.5.0",
"eslint-plugin-n": "^17.14.0",
"eslint-plugin-prettier": "^5.2.1",
"esmock": "^2.6.9",
"husky": "^9.1.7",
"mocha": "^10.8.2",
"prettier": "^3.3.3",
"rollup": "^4.27.4"
},
"engines": {
"node": ">=18"
},
"peerDependencies": {
"eslint": ">=9.0.0"
}
}