-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
80 lines (80 loc) · 2.38 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
{
"name": "eslint-plugin-filenames-simple",
"version": "0.9.0",
"description": "An ESLint plugin to check filenames with simple configuration",
"keywords": [
"eslint",
"eslintPlugin",
"eslint-plugin",
"file",
"filename",
"simple"
],
"homepage": "https://github.com/epaew/eslint-plugin-filenames-simple",
"repository": "[email protected]:epaew/eslint-plugin-filenames-simple",
"license": "MIT",
"author": "epaew <[email protected]>",
"main": "dist/index.js",
"files": [
"dist/*"
],
"scripts": {
"build": "tsc",
"clean": "rimraf dist/*",
"console": "ts-node",
"eslint": "eslint .",
"eslint:fix": "eslint --fix .",
"link": "yarn link && yarn link eslint-plugin-filenames-simple",
"lint": "npm-run-all eslint prettier",
"lint:fix": "npm-run-all eslint:fix prettier:fix",
"unlink": "yarn unlink",
"prepack": "npm-run-all eslint test clean build",
"prepare": "npm-run-all clean build link",
"prettier": "prettier .",
"prettier:fix": "prettier --write .",
"test": "jest",
"test:ci": "jest --ci --coverage",
"test:coverage": "jest --coverage",
"typecheck": "tsc --noEmit"
},
"prettier": "@epaew/prettier-config",
"resolutions": {
"eslint-plugin-filenames-simple": "file:."
},
"dependencies": {
"pluralize": "^8.0.0"
},
"devDependencies": {
"@epaew/eslint-config": "https://github.com/epaew/eslint-config.git#master",
"@epaew/prettier-config": "https://github.com/epaew/prettier-config.git#master",
"@types/eslint": "^8.44.0",
"@types/glob": "^8.0.0",
"@types/jest": "^29.2.0",
"@types/node": "^18.11.8",
"@types/pluralize": "^0.0.30",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"@typescript-eslint/utils": "^5.42.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-filenames-simple": "file:.",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"glob": "^8.0.3",
"jest": "^29.2.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"peerDependencies": {
"eslint": ">=7.0.0 <9.0.0"
},
"engines": {
"node": ">=14.17.0"
}
}