-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.39 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.39 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
{
"name": "codespell-azure-devops",
"version": "1.0.0",
"description": "Codespell Azure DevOps Extension",
"scripts": {
"prepare": "husky",
"postinstall": "npm --prefix task install",
"format": "prettier --write '**/*.{js,ts,json,yaml,yml,md}'",
"format:check": "prettier --check '**/*.{js,ts,json,yaml,yml,md}'",
"build": "tsc -p task",
"package": "node vss-extension.version.increment.js && npx tfx-cli extension create --manifests vss-extension.json --output-path dist",
"package:dev": "npx tfx-cli extension create --manifests vss-extension.json --output-path dist/dev --overrides-file vss-extension.overrides.dev.json",
"package:prod": "npx tfx-cli extension create --manifests vss-extension.json --output-path dist/prod --overrides-file vss-extension.overrides.prod.json"
},
"keywords": [
"azure",
"devops",
"codespell",
"spell",
"spelling",
"spellcheck",
"misspelling",
"typo"
],
"author": "Rhys Koedijk",
"license": "MIT",
"homepage": "https://github.com/rhyskoedijk/codespell-azure-devops#readme",
"bugs": {
"url": "https://github.com/rhyskoedijk/codespell-azure-devops/issues"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "^24.7.1",
"@types/q": "^1.5.8",
"husky": "^9.1.7",
"prettier": "3.6.2",
"prettier-plugin-organize-imports": "4.3.0",
"pretty-quick": "^4.2.2"
}
}