-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.06 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
{
"name": "eslint-plugin-validate-filename",
"version": "1.0.0",
"description": "ESLint plugin validate filename.",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/hiro08gh/eslint-plugin-validate-filename"
},
"engines": {
"node": ">=18.18.0"
},
"scripts": {
"build": "tsc -b tsconfig.json",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint ./lib",
"lint:fix": "eslint --fix ./lib"
},
"keywords": [
"eslint",
"filename"
],
"author": "hiro08",
"license": "MIT",
"files": [
"dist"
],
"dependencies": {
"micromatch": "^4.0.5",
"typescript": "^5.3.3"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@types/eslint": "^9.6.1",
"@types/jest": "^29.5.11",
"@types/micromatch": "^4.0.6",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.9.0",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"typescript-eslint": "^8.3.0"
},
"peerDependencies": {
"eslint": ">=7.0.0"
}
}