-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.95 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.95 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
{
"name": "installed-check",
"version": "10.0.1",
"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",
"check:installed-check": "node cli-wrapper.cjs",
"check:knip": "knip",
"check:tsc": "tsc",
"check:type-coverage": "type-coverage --detail --strict --at-least 95",
"check": "run-p check:*",
"prepare": "husky",
"test:integration": "node --test test/integration.js",
"test:examples:install": "cd examples/basic && npm install && cd ../monorepo && npm install && cd ../..",
"test-ci": "run-s test:examples:install test:integration check:installed-check",
"test": "run-s check test:examples:install test:integration"
},
"keywords": [
"cli",
"dependencies",
"devDependencies",
"peerDependencies",
"lint",
"maintenance",
"monorepo",
"scan",
"workspace"
],
"author": "Pelle Wessman <pelle@kodfabrik.se> (http://kodfabrik.se/)",
"license": "MIT",
"engines": {
"node": "^20.19.0 || ^22.13.0 || >=24"
},
"dependencies": {
"chalk": "^5.6.2",
"installed-check-core": "^8.3.1",
"peowly": "^1.3.3",
"pony-cause": "^2.1.10",
"resolve-workspace-root": "^2.0.1",
"version-guard": "^1.1.3"
},
"devDependencies": {
"@types/node": "^20.19.33",
"@voxpelli/eslint-config": "^23.0.0",
"@voxpelli/tsconfig": "^16.1.0",
"eslint": "^9.39.2",
"husky": "^9.1.7",
"knip": "^5.83.1",
"npm-run-all2": "^8.0.4",
"remark-parse": "^11.0.0",
"type-coverage": "^2.29.7",
"typescript": "~5.9.3",
"unified": "^11.0.5",
"unist-util-visit": "^5.1.0"
}
}