-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
72 lines (72 loc) · 1.97 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
{
"name": "installed-check",
"version": "9.3.0",
"description": "Verifies that installed modules comply with the requirements specified in package.json",
"homepage": "http://github.com/voxpelli/node-installed-check",
"repository": {
"type": "git",
"url": "git://github.com/voxpelli/node-installed-check.git"
},
"type": "module",
"bin": {
"installed-check": "cli-wrapper.cjs"
},
"files": [
"cli-wrapper.cjs",
"cli.js"
],
"scripts": {
"check:lint": "eslint --report-unused-disable-directives .",
"check:installed-check": "node cli-wrapper.cjs -i eslint-plugin-jsdoc -i knip",
"check:knip": "knip",
"check:tsc": "tsc",
"check:type-coverage": "type-coverage --detail --strict --at-least 95",
"check": "run-p check:*",
"prepare": "husky",
"test-ci": "run-s check:installed-check",
"test": "run-s check"
},
"keywords": [
"cli",
"dependencies",
"devDependencies",
"peerDependencies",
"lint",
"maintenance",
"monorepo",
"scan",
"workspace"
],
"author": "Pelle Wessman <[email protected]> (http://kodfabrik.se/)",
"license": "MIT",
"engines": {
"node": ">=18.6.0"
},
"dependencies": {
"chalk": "^5.3.0",
"installed-check-core": "^8.3.0",
"meow": "^13.0.0",
"pony-cause": "^2.1.10",
"version-guard": "^1.1.1"
},
"devDependencies": {
"@types/node": "^18.19.29",
"@voxpelli/eslint-config": "^19.0.0",
"@voxpelli/tsconfig": "^11.0.0",
"eslint": "^8.57.0",
"eslint-plugin-es-x": "^7.6.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^46.10.1",
"eslint-plugin-mocha": "^10.4.3",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-security": "^1.7.1",
"eslint-plugin-sort-destructure-keys": "^1.6.0",
"eslint-plugin-unicorn": "^48.0.1",
"husky": "^9.0.11",
"knip": "^5.13.0",
"npm-run-all2": "^6.1.2",
"type-coverage": "^2.28.2",
"typescript": "~5.4.5"
}
}