forked from bmish/check-dependency-version-consistency
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.47 KB
/
package.json
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
{
"name": "check-dependency-version-consistency",
"version": "2.0.3",
"description": "Ensures dependencies are on consistent versions across a monorepo.",
"keywords": [
"dependencies",
"linter",
"monorepo",
"package.json",
"packages",
"workspace"
],
"repository": {
"type": "git",
"url": "https://github.com/bmish/check-dependency-version-consistency.git"
},
"license": "MIT",
"type": "module",
"bin": {
"check-dependency-version-consistency": "dist/bin/check-dependency-version-consistency.js"
},
"files": [
"dist/",
"README.md"
],
"scripts": {
"build": "tsc",
"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": "tsc",
"prepublishOnly": "tsc",
"release": "release-it",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --colors --coverage"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^9.0.0",
"edit-json-file": "^1.7.0",
"globby": "^13.1.1",
"semver": "^7.3.5",
"table": "^6.7.1",
"type-fest": "^2.1.0"
},
"devDependencies": {
"@types/edit-json-file": "^1.7.0",
"@types/jest": "^27.4.0",
"@types/mock-fs": "^4.13.1",
"@types/node": "^17.0.5",
"@types/semver": "^7.3.8",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"eslint": "^8.1.0",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-square": "^22.1.0",
"jest": "^27.4.7",
"markdownlint-cli": "^0.31.1",
"mock-fs": "^5.0.0",
"npm-package-json-lint": "^5.2.3",
"npm-run-all": "^4.1.5",
"release-it": "^14.2.2",
"release-it-lerna-changelog": "^4.0.1",
"sort-package-json": "^1.44.0",
"ts-jest": "^27.1.2",
"typescript": "^4.0.2"
},
"engines": {
"node": "^12.20.0 || ^14.14.0 || >=16.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"release-it": {
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
}
}
}