-
Notifications
You must be signed in to change notification settings - Fork 125
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 3.13 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 3.13 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
{
"name": "hve-core",
"version": "4.1.0",
"description": "HVE Core",
"private": true,
"scripts": {
"test:ps": "pwsh -NoProfile -File scripts/tests/Invoke-PesterTests.ps1",
"spell-check": "cspell \"**/*.{md,ts,js,json,yaml,yml}\"",
"spell-check:fix": "cspell \"**/*.{md,ts,js,json,yaml,yml}\" --show-suggestions",
"lint:md": "markdownlint-cli2 \"**/*.md\"",
"lint:md:fix": "markdownlint-cli2 \"**/*.md\" --fix",
"lint:ps": "pwsh -File scripts/linting/Invoke-PSScriptAnalyzer.ps1",
"lint:yaml": "pwsh -File scripts/linting/Invoke-YamlLint.ps1",
"lint:links": "pwsh -NoProfile -Command \"& scripts/linting/Invoke-LinkLanguageCheck.ps1 -ExcludePaths 'scripts/tests/**'\"",
"lint:md-links": "pwsh -File scripts/linting/Markdown-Link-Check.ps1",
"lint:frontmatter": "pwsh -NoProfile -Command \"& './scripts/linting/Validate-MarkdownFrontmatter.ps1' -WarningsAsErrors -EnableSchemaValidation\"",
"lint:collections-metadata": "pwsh -File scripts/collections/Validate-Collections.ps1",
"lint:marketplace": "pwsh -File scripts/plugins/Validate-Marketplace.ps1",
"lint:version-consistency": "pwsh -NoProfile -Command \"./scripts/security/Test-ActionVersionConsistency.ps1 -FailOnMismatch\"",
"lint:permissions": "pwsh -NoProfile -Command \"& './scripts/security/Test-WorkflowPermissions.ps1' -FailOnViolation\"",
"lint:dependency-pinning": "pwsh -NoProfile -Command \"& './scripts/security/Test-DependencyPinning.ps1' -FailOnUnpinned\"",
"lint:all": "npm run format:tables && npm run lint:md && npm run lint:ps && npm run lint:yaml && npm run lint:links && npm run lint:frontmatter && npm run lint:collections-metadata && npm run lint:marketplace && npm run lint:version-consistency && npm run lint:permissions && npm run lint:dependency-pinning && npm run validate:skills",
"format:tables": "markdown-table-formatter \"**/*.md\"",
"extension:prepare": "pwsh ./scripts/extension/Prepare-Extension.ps1",
"extension:prepare:prerelease": "pwsh ./scripts/extension/Prepare-Extension.ps1 -Channel PreRelease",
"extension:package": "pwsh ./scripts/extension/Package-Extension.ps1",
"package:extension": "npm run extension:package --",
"extension:package:prerelease": "pwsh ./scripts/extension/Package-Extension.ps1 -PreRelease",
"validate:copyright": "pwsh -File scripts/linting/Test-CopyrightHeaders.ps1",
"validate:skills": "pwsh -NoProfile -Command \"& './scripts/linting/Validate-SkillStructure.ps1' -WarningsAsErrors\"",
"plugin:generate": "pwsh -File scripts/plugins/Generate-Plugins.ps1 && npm run lint:md:fix && npm run format:tables",
"plugin:validate": "npm run lint:collections-metadata",
"docs:build": "npm --prefix docs/docusaurus run build",
"docs:serve": "npm --prefix docs/docusaurus run serve"
},
"devDependencies": {
"cspell": "9.6.4",
"markdown-link-check": "3.14.2",
"markdown-table-formatter": "^1.7.0",
"markdownlint-cli2": "^0.21.0"
},
"overrides": {
"markdown-it": "14.1.1",
"undici": "7.18.2"
},
"repository": {
"type": "git",
"url": "https://github.com/microsoft/hve-core.git"
},
"author": "Microsoft",
"license": "MIT"
}