-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 961 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 961 Bytes
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
{
"name": "vscode-phpunit-monorepo",
"private": true,
"packageManager": "pnpm@10.12.4",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"lefthook"
]
},
"scripts": {
"typecheck": "pnpm -r run typecheck",
"compile": "pnpm -r run compile",
"compile-tests": "pnpm --filter vscode-phpunit run compile-tests",
"watch": "pnpm --filter vscode-phpunit run watch",
"watch-tests": "pnpm --filter vscode-phpunit run watch-tests",
"package": "pnpm --filter vscode-phpunit run package",
"test": "pnpm -r run test",
"test:e2e": "pnpm --filter vscode-phpunit run test:e2e",
"vitest": "pnpm -r run vitest",
"lint": "pnpm -r run lint",
"lint:fix": "pnpm -r run lint:fix",
"format": "pnpm -r run format",
"postinstall": "npx lefthook install"
},
"devDependencies": {
"lefthook": "^2.1.3"
}
}