summaryrefslogtreecommitdiff
path: root/tools/node_modules/eslint/node_modules/are-docs-informative/package.json
blob: 87d0a64c1a6f5f9ba51c88fb2e87ee116e83de89 (plain)
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
85
86
87
88
89
{
	"name": "are-docs-informative",
	"version": "0.0.2",
	"description": "Checks whether a documentation description introduces any new information.",
	"repository": {
		"type": "git",
		"url": "https://github.com/JoshuaKGoldberg/are-docs-informative"
	},
	"license": "MIT",
	"author": "Josh Goldberg <npm@joshuakgoldberg.com>",
	"type": "module",
	"exports": {
		".": {
			"types": {
				"import": "./lib/index.d.ts",
				"require": "./lib/index.d.cts"
			},
			"import": "./lib/index.js",
			"require": "./lib/index.cjs"
		}
	},
	"main": "./lib/index.js",
	"files": [
		"lib/",
		"package.json",
		"LICENSE.md",
		"README.md"
	],
	"scripts": {
		"build": "tsc",
		"build:full": "tsup src/index.ts --clean --format cjs,esm --outDir lib --dts && cp lib/index.d.ts lib/index.d.cts",
		"format": "prettier \"**/*\" --ignore-unknown",
		"format:write": "pnpm format --write",
		"lint": "eslint . --max-warnings 0 --report-unused-disable-directives",
		"lint:knip": "knip",
		"lint:md": "markdownlint \"**/*.md\" \".github/**/*.md\" --rules sentences-per-line",
		"lint:package": "npmPkgJsonLint .",
		"lint:packages": "pnpm-deduplicate --list",
		"lint:spelling": "cspell \"**\" \".github/**/*\"",
		"prepare": "husky install",
		"should-semantic-release": "should-semantic-release --verbose",
		"test": "vitest"
	},
	"lint-staged": {
		"*": "prettier --ignore-unknown --write"
	},
	"devDependencies": {
		"@types/eslint": "^8.21.1",
		"@typescript-eslint/eslint-plugin": "^5.48.2",
		"@typescript-eslint/parser": "^5.48.2",
		"@vitest/coverage-istanbul": "^0.29.0",
		"cspell": "^6.19.2",
		"eslint": "^8.32.0",
		"eslint-config-prettier": "^8.6.0",
		"eslint-plugin-deprecation": "^1.3.3",
		"eslint-plugin-eslint-comments": "^3.2.0",
		"eslint-plugin-import": "^2.27.5",
		"eslint-plugin-jsonc": "^2.6.0",
		"eslint-plugin-markdown": "^3.0.0",
		"eslint-plugin-no-only-tests": "^3.1.0",
		"eslint-plugin-regexp": "^1.12.0",
		"eslint-plugin-simple-import-sort": "^10.0.0",
		"eslint-plugin-typescript-sort-keys": "^2.1.0",
		"eslint-plugin-vitest": "^0.1.0",
		"eslint-plugin-yml": "^1.5.0",
		"husky": "^8.0.3",
		"jsonc-eslint-parser": "^2.1.0",
		"knip": "2.8.2",
		"lint-staged": "^13.1.0",
		"markdownlint": "^0.27.0",
		"markdownlint-cli": "^0.33.0",
		"npm-package-json-lint": "^6.4.0",
		"npm-package-json-lint-config-default": "^5.0.0",
		"pnpm-deduplicate": "^0.4.1",
		"prettier": "^2.8.3",
		"prettier-plugin-packagejson": "^2.4.2",
		"release-it": "^15.6.0",
		"sentences-per-line": "^0.2.1",
		"should-semantic-release": "^0.1.0",
		"tsup": "^6.7.0",
		"typescript": "^5.0.0",
		"vitest": "^0.29.0",
		"yaml-eslint-parser": "^1.2.0"
	},
	"packageManager": "pnpm@7.31.0",
	"engines": {
		"node": ">=14"
	}
}