-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.88 KB
/
package.json
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
{
"name": "sbom-azure-devops",
"version": "1.0.0",
"description": "SBOM Tool Azure DevOps Extension",
"scripts": {
"prepare": "husky",
"postinstall": "npm --prefix shared install && npm --prefix task install && npm --prefix ui install",
"format": "prettier --write '**/*.{js,ts,tsx,scss,json,yaml,yml,md,html}'",
"format:check": "prettier --check '**/*.{js,ts,tsx,scss,json,yaml,yml,md,html}'",
"build": "npm run build:task && npm run build:ui",
"build:task": "cd task && webpack --mode development",
"build:ui": "cd ui && webpack --mode development",
"start:task": "cd task && node dist/task/index.js",
"start:ui": "cd ui && webpack serve --mode development",
"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",
"sbom",
"sbom-tool",
"spdx",
"software bill of materials",
"supply chain",
"inventory",
"component",
"package",
"security",
"advisory",
"vulnerability",
"license",
"compliance",
"risk",
"report",
"graph"
],
"author": "Rhys Koedijk",
"license": "MIT",
"homepage": "https://github.com/rhyskoedijk/sbom-azure-devops#readme",
"bugs": {
"url": "https://github.com/rhyskoedijk/sbom-azure-devops/issues"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.2",
"@types/q": "^1.5.8",
"husky": "^9.1.7",
"prettier": "3.4.2",
"prettier-plugin-organize-imports": "4.1.0",
"pretty-quick": "^4.0.0"
}
}