-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 3.08 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 3.08 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
{
"name": "virtual-code-owners",
"version": "9.1.3",
"description": "CODEOWNERS with teams for teams that can't use GitHub teams",
"type": "module",
"bin": {
"virtual-code-owners": "dist/run-cli.js"
},
"files": [
"dist/",
"package.json",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rm -rf dist && tsx tools/get-version.ts > src/version.ts && tsc && prettier --log-level warn --write --use-tabs dist/",
"check": "node --run=format && node --run=lint:fix && node --run=build && node --run=depcruise -- --no-progress && node --run=test",
"depcruise": "depcruise src tools",
"depcruise:graph": "depcruise src --include-only '^(src)' --output-type x-dot-webpage --output-to dependency-graph.html",
"depcruise:graph:dev": "depcruise src --prefix vscode://file/$(pwd)/ --output-type x-dot-webpage | browser",
"depcruise:graph:diff:dev": "depcruise src --prefix vscode://file/$(pwd)/ --output-type x-dot-webpage --affected $SHA | browser",
"depcruise:graph:diff:mermaid": "depcruise src tools --output-type mermaid --output-to - --affected $SHA",
"depcruise:html": "depcruise src tools --output-type err-html --output-to dependency-violation-report.html",
"format": "prettier --log-level warn --write \"**/*.{md,ts,json,yml}\"",
"lint:fix": "eslint --ext .ts src tools --fix",
"prepare": "husky",
"prepack": "clean-pkg-json --dry --keep overrides --keep resolutions | jq '.scripts = {test: \"echo for test, build and static analysis scripts: see the github repository\"}' > smaller-package.json && mv smaller-package.json package.json && prettier --log-level warn --write --use-tabs package.json",
"postpack": "git restore package.json",
"scm:stage": "git add .",
"test": "c8 tsx --test-reporter ./tools/dot-with-summary.reporter.js --test",
"update-dependencies": "node --run=upem:update && npm install && node --run=check",
"upem-outdated": "npm outdated --json --long | upem --dry-run",
"upem:update": "npm outdated --json --long | upem | pbcopy && pbpaste",
"version": "node --run=build && node --run=scm:stage"
},
"keywords": [
"CODEOWNERS"
],
"author": "Sander Verweij (https://sverweij.github.io/)",
"license": "MIT",
"homepage": "https://github.com/sverweij/virtual-code-owners",
"repository": {
"type": "git",
"url": "git+https://github.com/sverweij/virtual-code-owners.git"
},
"bugs": {
"url": "https://github.com/sverweij/virtual-code-owners/issues"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@types/node": "25.6.0",
"c8": "11.0.0",
"clean-pkg-json": "1.4.1",
"dependency-cruiser": "17.3.10",
"eslint": "10.2.0",
"globals": "17.4.0",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"prettier": "3.8.2",
"tsx": "4.21.0",
"typescript": "6.0.2",
"typescript-eslint": "8.58.1",
"upem": "10.0.4",
"watskeburt": "5.0.3"
},
"dependencies": {
"yaml": "2.8.3"
},
"overrides": {
"glob": "^12.0.0",
"minimatch": "^10.2.2",
"c8": {
"yargs": "^18.0.0"
}
},
"engines": {
"node": "^20.12||^22||>=24"
}
}