forked from epaew/eslint-plugin-filenames-simple
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.85 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-filenames-simple",
"version": "0.6.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",
"unlink": "yarn unlink",
"prepack": "npm-run-all eslint test clean build",
"prepare": "npm-run-all clean build link",
"test": "jest",
"test:ci": "jest --ci --coverage",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch"
},
"resolutions": {
"eslint-plugin-filenames-simple": "file:."
},
"dependencies": {
"core-js": "^3.16.0",
"pluralize": "^8.0.0"
},
"devDependencies": {
"@epaew/eslint-config": "git://github.com/epaew/eslint-config.git#master",
"@types/eslint": "^7.28.0",
"@types/glob": "^7.1.4",
"@types/jest": "^27.0.1",
"@types/node": "^16.4.7",
"@types/pluralize": "^0.0.29",
"@typescript-eslint/experimental-utils": "^4.28.5",
"eslint": "^7.31.0",
"eslint-plugin-filenames-simple": "file:.",
"glob": "^7.1.7",
"jest": "^26.6.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1",
"typescript": "^4.3.5"
},
"peerDependencies": {
"eslint": ">=6.0.0 <8.0.0"
},
"engines": {
"node": "^10.0.0 || ^12.0.0 || ^14.0.0 || ^16.0.0"
}
}