forked from michaelfaith/eslint-plugin-package-json
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.17 KB
/
Copy pathpackage.json
File metadata and controls
117 lines (117 loc) · 3.17 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "eslint-plugin-package-json",
"version": "0.31.0",
"description": "Rules for consistent, readable, and valid package.json files. 🗂️",
"homepage": "https://github.com/JoshuaKGoldberg/eslint-plugin-package-json#readme",
"bugs": {
"url": "https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JoshuaKGoldberg/eslint-plugin-package-json.git"
},
"license": "MIT",
"author": {
"name": "James Zetlan",
"email": "zetlan@gmail.com"
},
"type": "commonjs",
"exports": {
".": {
"types": {
"import": "./lib/index.d.mts",
"require": "./lib/index.d.ts"
},
"import": "./lib/index.mjs",
"require": "./lib/index.js"
}
},
"main": "lib/index.js",
"files": [
"LICENSE.md",
"README.md",
"lib/",
"package.json"
],
"scripts": {
"build": "tsup",
"build:docs": "pnpm build --no-dts && eslint-doc-generator",
"format": "prettier .",
"lint": "eslint . --max-warnings 0",
"lint:docs": "eslint-doc-generator --check",
"lint:knip": "knip",
"lint:md": "markdownlint \"**/*.md\" \".github/**/*.md\" --rules sentences-per-line",
"lint:packages": "pnpm dedupe --check",
"lint:spelling": "cspell \"**\" \".github/**/*\"",
"prepare": "husky",
"test": "vitest",
"tsc": "tsc"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"dependencies": {
"@altano/repository-tools": "^0.1.1",
"detect-indent": "6.1.0",
"detect-newline": "3.1.0",
"eslint-fix-utils": "^0.2.0",
"package-json-validator": "^0.10.0",
"semver": "^7.5.4",
"sort-object-keys": "^1.1.3",
"sort-package-json": "^3.0.0",
"validate-npm-package-name": "^6.0.0"
},
"devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "4.5.0",
"@eslint/js": "9.25.0",
"@release-it/conventional-changelog": "10.0.0",
"@types/eslint-plugin-markdown": "2.0.2",
"@types/estree": "1.0.7",
"@types/node": "22.15.0",
"@types/semver": "7.7.0",
"@types/sort-object-keys": "1.1.3",
"@types/validate-npm-package-name": "4.0.2",
"@vitest/coverage-v8": "3.1.2",
"@vitest/eslint-plugin": "1.1.38",
"console-fail-test": "0.5.0",
"create-typescript-app": "2.41.0",
"cspell": "8.19.0",
"eslint": "9.25.0",
"eslint-doc-generator": "2.1.2",
"eslint-plugin-eslint-plugin": "6.4.0",
"eslint-plugin-jsdoc": "50.6.8",
"eslint-plugin-jsonc": "2.20.0",
"eslint-plugin-markdown": "5.1.0",
"eslint-plugin-n": "17.16.2",
"eslint-plugin-perfectionist": "4.12.0",
"eslint-plugin-regexp": "2.7.0",
"eslint-plugin-yml": "1.18.0",
"husky": "9.1.7",
"jsonc-eslint-parser": "2.4.0",
"knip": "5.51.0",
"lint-staged": "15.5.0",
"markdownlint": "0.37.4",
"markdownlint-cli": "0.44.0",
"prettier": "3.5.3",
"prettier-plugin-curly": "0.3.1",
"prettier-plugin-packagejson": "2.5.10",
"prettier-plugin-sh": "0.17.1",
"release-it": "19.0.1",
"sentences-per-line": "0.3.0",
"tsup": "8.4.0",
"typescript": "5.8.2",
"typescript-eslint": "8.31.0",
"vitest": "3.1.2"
},
"peerDependencies": {
"eslint": ">=8.0.0",
"jsonc-eslint-parser": "^2.0.0"
},
"packageManager": "pnpm@10.10.0",
"engines": {
"node": ">=18"
},
"publishConfig": {
"provenance": true
}
}