-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.67 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.67 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
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-prefer-arrow-functions",
"description": "Convert functions to arrow functions",
"version": "3.10.1",
"author": "Jamie Mason (https://github.com/JamieMason)",
"bugs": "https://github.com/JamieMason/eslint-plugin-prefer-arrow-functions/issues",
"contributors": [
"Саша “Nelie” Черных (https://github.com/Kristinita)",
"Anders Kaseorg (https://github.com/andersk)",
"Gabriel Montes (https://github.com/gabmontes)",
"Gürgün Dayıoğlu (https://github.com/gurgunday)",
"Harel Moshe (https://github.com/harelmo)",
"Keith Lea (https://github.com/keithkml)",
"Lou Cyx (https://github.com/loucyx)",
"Marek Dědič (https://github.com/marekdedic)",
"Michael Gallagher (https://github.com/mikeapr4)",
"Mitchell Merry (https://github.com/mitchell-merry)",
"Nicolas Bouvrette (https://github.com/nbouvrette)",
"Pablo Enrici (https://github.com/pablen)",
"Renato Böhler (https://github.com/renato-bohler)",
"Samuel T (https://github.com/SamuelT-Beslogic)",
"Triston Jones (https://github.com/TristonJ)"
],
"dependencies": {
"@typescript-eslint/types": "^8.62.1",
"@typescript-eslint/utils": "^8.62.1"
},
"devDependencies": {
"@eslint/eslintrc": "3.3.5",
"@eslint/js": "10.0.1",
"@release-it/conventional-changelog": "11.0.1",
"@types/node": "26.1.0",
"@typescript-eslint/eslint-plugin": "8.62.1",
"@typescript-eslint/parser": "8.62.1",
"@typescript-eslint/rule-tester": "8.62.1",
"@vitest/coverage-v8": "4.1.9",
"auto-changelog": "2.6.0",
"eslint": "10.6.0",
"globals": "17.7.0",
"prettier": "3.9.4",
"release-it": "20.2.1",
"rimraf": "6.1.3",
"typescript": "6.0.3",
"vitest": "4.1.9"
},
"engines": {
"node": "^20.19.0 || ^22.13.0 || >=24.0.0"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"homepage": "https://github.com/JamieMason/eslint-plugin-prefer-arrow-functions",
"keywords": [
"es6",
"eslint",
"eslint-plugin"
],
"license": "MIT",
"main": "dist/index.js",
"peerDependencies": {
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0"
},
"repository": "JamieMason/eslint-plugin-prefer-arrow-functions",
"scripts": {
"build": "tsc --project .",
"format": "prettier --write src test",
"lint": "eslint .",
"prebuild": "rimraf ./dist",
"prelint": "npm run format",
"prepack": "npm run build",
"pretest": "npm run typecheck",
"release": "release-it",
"test": "vitest run",
"test:watch": "vitest watch",
"typecheck": "tsc --project tsconfig.test.json"
},
"type": "commonjs"
}