forked from CycloneDX/cdxgen
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 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
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
{
"name": "@appthreat/cdxgen",
"version": "2.3.14",
"description": "Creates CycloneDX Software Bill-of-Materials (SBOM) for node.js, python, java and golang projects",
"homepage": "http://github.com/AppThreat/cdxgen",
"author": "Team AppThreat",
"license": "Apache-2.0",
"keywords": [
"sbom",
"bom",
"inventory",
"spdx",
"package-url",
"purl",
"owasp",
"component",
"dependency",
"appsec",
"scrm"
],
"contributors": [
{
"name": "Team AppThreat",
"email": "[email protected]",
"url": "https://appthreat.io"
},
{
"name": "Erlend Oftedal"
},
{
"name": "Steve Springett",
"email": "[email protected]",
"url": "https://about.me/stevespringett"
}
],
"main": "index.js",
"bin": {
"cdxgen": "./bin/cdxgen"
},
"scripts": {
"test": "jest",
"watch": "jest --watch"
},
"engines": {
"node": ">=12.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AppThreat/cdxgen.git"
},
"bugs": {
"url": "https://github.com/AppThreat/cdxgen/issues"
},
"dependencies": {
"@babel/parser": "^7.14.1",
"@babel/traverse": "^7.14.0",
"cheerio": "^1.0.0-rc.9",
"glob": "^7.1.7",
"global-agent": "^2.2.0",
"got": "^11.8.2",
"js-yaml": "^4.1.0",
"node-cleanup": "^2.1.2",
"packageurl-js": "^0.0.4",
"parse-packagejson-name": "^1.0.1",
"prettify-xml": "^1.2.0",
"properties-reader": "^2.2.0",
"read-installed": "^4.0.3",
"request": "^2.88.2",
"semver": "^7.3.5",
"ssri": "^8.0.1",
"uuid": "^8.3.2",
"xml-js": "^1.6.11",
"xmlbuilder": "^15.1.1",
"yargs": "^17.0.1"
},
"files": [
"*.js",
"bin/",
"spdx-licenses.json",
"license-mapping.json",
"known-licenses.json",
"vendor-alias.json"
],
"devDependencies": {
"jest": "^26.6.3"
}
}