forked from microsoft/hve-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.69 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.69 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
{
"name": "hve-core",
"version": "1.1.0",
"description": "HVE Core",
"private": true,
"scripts": {
"test:ps": "pwsh -NoProfile -Command \"Invoke-Pester -Configuration (& ./scripts/tests/pester.config.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 -ExcludePaths 'scripts/tests/Fixtures/**'\"",
"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",
"format:tables": "markdown-table-formatter \"**/*.md\"",
"extension:prepare": "pwsh ./scripts/extension/Prepare-Extension.ps1",
"extension:package": "pwsh ./scripts/extension/Package-Extension.ps1"
},
"devDependencies": {
"cspell": "9.6.0",
"markdown-link-check": "3.14.2",
"markdown-table-formatter": "^1.7.0",
"markdownlint-cli2": "^0.20.0"
},
"overrides": {
"undici": "7.18.2"
},
"repository": {
"type": "git",
"url": "https://github.com/microsoft/hve-core.git"
},
"author": "Microsoft",
"license": "MIT"
}