-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.42 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.42 KB
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
{
"name": "eslint-plugin-ts-inline-parameter-types",
"version": "1.0.1",
"description": "ESLint plugin to enforce inline TypeScript types in function parameters",
"type": "module",
"main": "lib/index.js",
"exports": {
".": "./lib/index.js"
},
"files": [
"lib"
],
"scripts": {
"test": "vitest run --pool=forks",
"test:watch": "vitest --pool=forks",
"format": "oxfmt lib tests *.js",
"format:check": "oxfmt --check lib tests *.js",
"lint": "oxlint lib tests *.js",
"lint:ci": "oxlint --deny-warnings lib tests *.js",
"prepare": "husky || true"
},
"lint-staged": {
"*.js": "oxfmt"
},
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"typescript",
"inline-types",
"code-style",
"type-parameters",
"function-parameters"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/MohannadNaj/eslint-plugin-ts-inline-parameter-types.git"
},
"peerDependencies": {
"@typescript-eslint/parser": "^8.0.0",
"@typescript-eslint/utils": "^8.0.0",
"eslint": "^8.0.0 || ^9.0.0"
},
"devDependencies": {
"@typescript-eslint/parser": "^8.0.0",
"@typescript-eslint/rule-tester": "^8.0.0",
"@typescript-eslint/utils": "^8.0.0",
"eslint": "^9.0.0",
"husky": "^9.0.0",
"lint-staged": "^15.0.0",
"oxfmt": "^0.13.0",
"oxlint": "^1.28.0",
"vitest": "^2.0.0"
}
}