-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.61 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.61 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
{
"name": "check-dependency-version-consistency",
"version": "6.0.0",
"description": "Ensures dependencies are on consistent versions across a monorepo.",
"keywords": [
"dependencies",
"linter",
"monorepo",
"nodejs",
"npm",
"package.json",
"packages",
"pnpm",
"workspace",
"yarn"
],
"homepage": "https://github.com/bmish/check-dependency-version-consistency#readme",
"repository": {
"type": "git",
"url": "https://github.com/bmish/check-dependency-version-consistency.git"
},
"license": "MIT",
"author": "Bryan Mishkin",
"type": "module",
"exports": "./dist/lib/index.js",
"main": "./dist/lib/index.js",
"types": "./dist/lib/index.d.ts",
"bin": {
"check-dependency-version-consistency": "dist/bin/check-dependency-version-consistency.js"
},
"files": [
"dist/",
"CHANGELOG.md",
"README.md"
],
"scripts": {
"build": "rm -rf dist && tsc --project tsconfig.build.json",
"lint": "npm-run-all --aggregate-output --continue-on-error --parallel \"lint:*\"",
"lint:docs": "markdownlint \"**/*.md\"",
"lint:js": "eslint --cache .",
"lint:package-json": "npmPkgJsonLint .",
"lint:package-json-sorting": "sort-package-json --check",
"lint:package-json-sorting:fix": "sort-package-json package.json",
"lint:types": "tsgo",
"prepublishOnly": "npm run build",
"test": "vitest run --coverage"
},
"dependencies": {
"commander": "^14.0.1",
"edit-json-file": "^1.7.0",
"globby": "^16.1.0",
"js-yaml": "^4.1.0",
"semver": "^7.5.1",
"table": "^6.8.1",
"type-fest": "^5.3.1"
},
"devDependencies": {
"@eslint/js": "^9.29.0",
"@types/edit-json-file": "^1.7.0",
"@types/js-yaml": "^4.0.5",
"@types/mock-fs": "^4.13.1",
"@types/node": "^25.0.0",
"@types/semver": "^7.5.0",
"@typescript/native-preview": "^7.0.0-dev.20250601",
"@vitest/coverage-v8": "^4.0.0",
"@vitest/eslint-plugin": "^1.6.23",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.5",
"eslint-import-resolver-typescript": "^4.4.5",
"eslint-plugin-import-x": "^4.17.1",
"eslint-plugin-n": "^17.2.0",
"eslint-plugin-prettier": "^5.5.0",
"eslint-plugin-unicorn": "^62.0.0",
"markdownlint-cli": "^0.47.0",
"mock-fs": "^5.4.1",
"npm-package-json-lint": "^9.1.0",
"npm-run-all2": "^8.0.4",
"prettier": "^3.7.4",
"sort-package-json": "^3.6.0",
"typescript": "^5.0.4",
"typescript-eslint": "^8.63.0",
"vitest": "^4.0.0"
},
"engines": {
"node": "^20.19.0 || ^22.13.1 || >=24.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}