-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.39 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.39 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
{
"name": "eslint-plugin-prefer-arrow-functions",
"description": "Convert functions to arrow functions",
"version": "3.9.1",
"author": "Jamie Mason (https://github.com/JamieMason)",
"bugs": "https://github.com/JamieMason/eslint-plugin-prefer-arrow-functions/issues",
"contributors": [
"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)",
"Pablo Enrici (https://github.com/pablen)",
"Renato Böhler (https://github.com/renato-bohler)",
"Triston Jones (https://github.com/TristonJ)"
],
"dependencies": {
"@typescript-eslint/types": "^8.19.1",
"@typescript-eslint/utils": "^8.19.1"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"devDependencies": {
"@eslint/eslintrc": "3.2.0",
"@eslint/js": "9.17.0",
"@release-it/conventional-changelog": "8.0.2",
"@types/eslint": "9.6.1",
"@types/node": "22.10.5",
"@typescript-eslint/eslint-plugin": "8.19.1",
"@typescript-eslint/parser": "8.19.1",
"@typescript-eslint/rule-tester": "8.19.1",
"@vitest/coverage-v8": "2.1.8",
"auto-changelog": "2.5.0",
"eslint": "9.17.0",
"globals": "15.14.0",
"prettier": "3.4.2",
"release-it": "17.11.0",
"rimraf": "6.0.1",
"typescript": "5.7.3",
"vitest": "2.1.8"
},
"engines": {
"node": ">=18.0.0"
},
"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": ">=9.17.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",
"release": "release-it",
"test": "vitest run",
"test:watch": "vitest watch"
},
"type": "commonjs"
}