forked from CycloneDX/cdxgen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 2.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@cyclonedx/cdxgen",
"version": "9.9.1",
"description": "Creates CycloneDX Software Bill of Materials (SBOM) from source or container image",
"homepage": "http://github.com/cyclonedx/cdxgen",
"author": "Prabhu Subramanian <[email protected]>",
"license": "Apache-2.0",
"keywords": [
"sbom",
"bom",
"inventory",
"spdx",
"package-url",
"purl",
"owasp",
"component",
"dependency",
"appsec",
"scrm"
],
"contributors": [
{
"name": "Erlend Oftedal"
},
{
"name": "Steve Springett",
"email": "[email protected]",
"url": "https://about.me/stevespringett"
}
],
"type": "module",
"exports": "./index.js",
"bin": {
"cdxgen": "bin/cdxgen.js",
"obom": "bin/cdxgen.js",
"cdxi": "bin/repl.js",
"evinse": "bin/evinse.js",
"cdx-verify": "bin/verify.js"
},
"scripts": {
"docs": "docsify serve docs",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --inject-globals false docker.test.js utils.test.js display.test.js postgen.test.js",
"watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch --inject-globals false",
"lint": "eslint *.js *.test.js bin/*.js",
"pretty": "prettier --write *.js data/*.json bin/*.js *.md docs/*.md data/*.md"
},
"engines": {
"node": ">=16"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CycloneDX/cdxgen.git"
},
"bugs": {
"url": "https://github.com/cyclonedx/cdxgen/issues"
},
"dependencies": {
"@babel/parser": "^7.23.0",
"@babel/traverse": "^7.23.2",
"@npmcli/arborist": "^7.2.0",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"cheerio": "^1.0.0-rc.12",
"edn-data": "^1.0.0",
"find-up": "^6.3.0",
"glob": "^10.3.10",
"global-agent": "^3.0.0",
"got": "^13.0.0",
"iconv-lite": "^0.6.3",
"js-yaml": "^4.1.0",
"jws": "^4.0.0",
"node-stream-zip": "^1.15.0",
"packageurl-js": "1.0.2",
"prettify-xml": "^1.2.0",
"properties-reader": "^2.3.0",
"semver": "^7.5.3",
"ssri": "^10.0.4",
"table": "^6.8.1",
"tar": "^6.2.0",
"uuid": "^9.0.1",
"xml-js": "^1.6.11",
"xmlbuilder": "^15.1.1",
"yargs": "^17.7.2"
},
"optionalDependencies": {
"@appthreat/atom": "1.5.4",
"@cyclonedx/cdxgen-plugins-bin": "^1.4.0",
"@cyclonedx/cdxgen-plugins-bin-arm64": "^1.4.0",
"@cyclonedx/cdxgen-plugins-bin-ppc64": "^1.4.0",
"body-parser": "^1.20.2",
"compression": "^1.7.4",
"connect": "^3.7.0",
"jsonata": "^2.0.3",
"sequelize": "^6.33.0",
"sqlite3": "^5.1.6"
},
"files": [
"*.js",
"bin/",
"data/"
],
"devDependencies": {
"caxa": "^3.0.1",
"docsify-cli": "^4.4.4",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"prettier": "3.0.3"
}
}