-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.59 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.59 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
65
66
67
68
69
70
{
"name": "@hailbytes/sbom-diff",
"version": "1.0.1",
"description": "Diff two CycloneDX or SPDX SBOMs and produce human-readable change reports. Highlights added, removed, upgraded dependencies and new CVEs.",
"type": "module",
"license": "MIT",
"author": "HailBytes, LLC",
"keywords": [
"sbom",
"cyclonedx",
"spdx",
"supply-chain-security",
"dependency-management",
"cve",
"vulnerability-management",
"diff",
"hailbytes"
],
"repository": {
"type": "git",
"url": "git+https://github.com/HailBytes/sbom-diff.git"
},
"bugs": {
"url": "https://github.com/HailBytes/sbom-diff/issues"
},
"homepage": "https://hailbytes.com",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"lint": "eslint src",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"cli": "node dist/cli.js",
"prepublishOnly": "npm run build"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"bin": {
"sbom-diff": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"devDependencies": {
"@types/node": "^25.8.0",
"@vitest/coverage-v8": "^4.1.6",
"globals": "^17.6.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.3",
"vitest": "^4.1.6",
"eslint": "^8.57.1"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"engines": {
"node": ">=18.0.0"
}
}