๐Ÿ“ฆ getify / eslint-plugin-proper-arrows

๐Ÿ“„ package.json ยท 47 lines
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{
	"name": "@getify/eslint-plugin-proper-arrows",
	"version": "12.0.0",
	"description": "ESLint rules to ensure proper arrow function definitions",
	"main": "./lib/index.js",
	"scripts": {
		"test": "node scripts/node-tests.js",
		"test:dist": "TEST_DIST=true npm test",
		"test:package": "TEST_PACKAGE=true npm test",
		"test:all": "npm test && npm run test:dist && npm run test:package",
		"coverage": "istanbul cover scripts/node-tests.js",
		"coverage:report": "npm run coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
		"build-core": "node scripts/build-core.js",
		"build": "npm run build-core",
		"prepare": "npm run build",
		"prepublish": "npm run build && npm run test:all",
		"publish": "npm run coverage:report"
	},
	"devDependencies": {
		"coveralls": "~3.1.0",
		"eslint": "~9.17.0",
		"qunit": "~2.15.0",
		"terser": "~5.7.0"
	},
	"peerDependencies": {
		"eslint": ">= 9.17.0"
	},
	"repository": "getify/eslint-plugin-proper-arrows",
	"keywords": [
		"eslint",
		"plugin",
		"eslintplugin",
		"rule",
		"arrow",
		"name inference",
		"concise object return",
		"this"
	],
	"bugs": {
		"url": "https://github.com/getify/eslint-plugin-proper-arrows/issues",
		"email": "getify@gmail.com"
	},
	"homepage": "https://github.com/getify/eslint-plugin-proper-arrows",
	"author": "Kyle Simpson <getify@gmail.com>",
	"license": "MIT"
}