-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 4.16 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 4.16 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
{
"name": "powershell-scripts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"prepare": "husky",
"format:pwsh": "pwsh -NoProfile -File ./scripts/pwsh/devops/Format-PowerShellCode.ps1 -GitChanged",
"format:pwsh:all": "pwsh -NoProfile -File ./scripts/pwsh/devops/Format-PowerShellCode.ps1 -Path . -Recurse",
"format:pwsh:strict": "pwsh -NoProfile -File ./scripts/pwsh/devops/Format-PowerShellCode.ps1 -GitChanged -Strict",
"pwshfmt:rs": "cargo run --manifest-path ./projects/clis/pwshfmt-rs/Cargo.toml --",
"format:pwsh:rs": "pnpm run pwshfmt:rs -- write --git-changed --strict-fallback",
"format:pwsh:rs:all": "pnpm run pwshfmt:rs -- write --path . --recurse --strict-fallback",
"check:pwsh:rs": "pnpm run pwshfmt:rs -- check --git-changed --strict-fallback",
"format:biome": "biome format --write .",
"format:python": "uvx ruff format .",
"lint:python": "uvx ruff check --fix .",
"format": "pnpm format:pwsh && pnpm format:python",
"pwsh:install": "pwsh -File ./install.ps1",
"pester:install": "pwsh -NoProfile -Command \"Install-Module -Name Pester -Scope CurrentUser -Force -SkipPublisherCheck -AllowClobber\"",
"pester:update": "pwsh -NoProfile -Command \"Update-Module -Name Pester -Force -ErrorAction Stop\"",
"test": "pwsh -NoProfile -Command \"Invoke-Pester -Configuration ( ./PesterConfiguration.ps1 )\"",
"test:full": "pwsh -Command \"\\$env:PWSH_TEST_MODE='full'; Invoke-Pester -Configuration ( ./PesterConfiguration.ps1 )\"",
"test:fast": "pwsh -NoProfile -Command \"\\$env:PWSH_TEST_MODE='fast'; Invoke-Pester -Configuration ( ./PesterConfiguration.ps1 )\"",
"test:serial": "pwsh -NoProfile -Command \"\\$env:PWSH_TEST_MODE='serial'; Invoke-Pester -Configuration ( ./PesterConfiguration.ps1 )\"",
"test:debug": "pwsh -NoProfile -Command \"\\$env:PWSH_TEST_MODE='debug'; Invoke-Pester -Configuration ( ./PesterConfiguration.ps1 )\"",
"test:serial:debug": "pwsh -NoProfile -Command \"\\$env:PWSH_TEST_MODE='serial'; \\$env:PWSH_TEST_VERBOSE='1'; Invoke-Pester -Configuration ( ./PesterConfiguration.ps1 )\"",
"test:profile": "pwsh -NoProfile -Command \"\\$env:PWSH_TEST_MODE='serial'; \\$env:PWSH_TEST_PATH='./tests/ProfileMode.Tests.ps1'; \\$env:PWSH_TEST_VERBOSE='1'; Invoke-Pester -Configuration ( ./PesterConfiguration.ps1 )\"",
"test:slow": "pwsh -NoProfile -Command \"\\$c = ./PesterConfiguration.ps1; \\$c.Filter.Tag = 'Slow'; \\$c.Filter.ExcludeTag = @(\\$c.Filter.ExcludeTag.Value | Where-Object { \\$_ -ne 'Slow' }); Invoke-Pester -Configuration \\$c\"",
"test:detailed": "pwsh -Command \"Invoke-Pester -Output Detailed\"",
"scripts:install": "pwsh -File ./install.ps1",
"scoop:update": "scoop update -a",
"choco:update": "choco upgrade all -y",
"nb:clean": "pwsh -NoProfile -Command \"fd -e ipynb |ForEach-Object { nbstripout $_ }\"",
"test:linux": "docker compose -f docker-compose.pester.yml run --rm pester-fast",
"test:linux:full": "docker compose -f docker-compose.pester.yml run --rm pester-full",
"test:linux:build": "docker compose -f docker-compose.pester.yml build",
"qa:pwsh": "pnpm format:pwsh && pnpm test:fast",
"qa": "node ./scripts/qa.mjs changed",
"qa:all": "node ./scripts/qa.mjs all",
"qa:verbose": "node ./scripts/qa.mjs changed --verbose",
"qa:all:verbose": "node ./scripts/qa.mjs all --verbose",
"turbo:qa": "node ./scripts/qa-turbo.mjs changed",
"turbo:qa:all": "node ./scripts/qa-turbo.mjs all",
"turbo:qa:verbose": "node ./scripts/qa-turbo.mjs changed --verbose",
"turbo:qa:all:verbose": "node ./scripts/qa-turbo.mjs all --verbose",
"qa:benchmark": "node ./scripts/qa-benchmark.mjs"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@biomejs/biome": "^2.4.4",
"@types/node": "^25.3.0",
"@typescript/native-preview": "7.0.0-dev.20251127.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"turbo": "^2.8.10",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"packageManager": "pnpm@10.25.0+sha512.5e82639027af37cf832061bcc6d639c219634488e0f2baebe785028a793de7b525ffcd3f7ff574f5e9860654e098fe852ba8ac5dd5cefe1767d23a020a92f501"
}