forked from CycloneDX/cyclonedx-node-npm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
131 lines (131 loc) · 3.63 KB
/
package.json
File metadata and controls
131 lines (131 loc) · 3.63 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
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "@cyclonedx/cyclonedx-npm",
"version": "4.0.1",
"description": "Create CycloneDX Software Bill of Materials (SBOM) from NPM projects.",
"license": "Apache-2.0",
"keywords": [
"CycloneDX",
"SBOM",
"BOM",
"inventory",
"bill-of-materials",
"software-bill-of-materials",
"component",
"dependency",
"package-url",
"PURL",
"spdx",
"node",
"npm"
],
"homepage": "https://github.com/CycloneDX/cyclonedx-node-npm#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/CycloneDX/cyclonedx-node-npm.git"
},
"bugs": {
"url": "https://github.com/CycloneDX/cyclonedx-node-npm/issues"
},
"funding": [
{
"type": "individual",
"url": "https://owasp.org/donate/?reponame=www-project-cyclonedx&title=OWASP+CycloneDX"
}
],
"author": {
"name": "Jan Kowalleck",
"url": "https://github.com/jkowalleck"
},
"contributors": [
{
"name": "Jan Kowalleck",
"url": "https://github.com/jkowalleck"
},
{
"name": "Alex Miller",
"email": "[email protected]",
"uwl": "https://github.com/Codex-"
},
{
"name": "Malick Burger",
"email": "[email protected]",
"url": "https://github.com/MalickBurger"
},
{
"name": "Igor Dimitrijevic",
"url": "https://github.com/igord"
},
{
"name": "Arthur Lutz",
"url": "https://github.com/arthurlutz"
},
{
"name": "Joona Heinikoski",
"url": "https://github.com/joonamo"
},
{
"name": "cuhland",
"url": "https://github.com/cuhland"
}
],
"dependencies": {
"@cyclonedx/cyclonedx-library": "^8.4.0",
"commander": "^14.0.0",
"normalize-package-data": "^7.0.0 || ^8.0.0",
"xmlbuilder2": "^3.0.2"
},
"devDependencies": {
"@types/node": "ts5.8",
"@types/normalize-package-data": "^2.4.4",
"fast-glob": "^3.2.11",
"imurmurhash": "^0.1.4",
"c8": "^10",
"jest": "30.1.3",
"jest-junit": "16.0.0",
"npm-run-all2": "^7 || ^8",
"typescript": "5.9.2"
},
"type": "commonjs",
"engines": {
"node": ">=20.18.0",
"npm": ">=9"
},
"directories": {
"doc": "docs",
"src": "src",
"lib": "dist",
"test": "tests",
"example": "demo"
},
"bin": {
"cyclonedx-npm": "bin/cyclonedx-npm-cli.js"
},
"main": "./dist/cli.js",
"exports": "./index.js",
"scripts": {
"dev-setup": "npm i && run-p --aggregate-output -lc dev-setup:\\*",
"dev-setup:tools": "run-p --aggregate-output -lc dev-setup:tools:\\*",
"dev-setup:tools:code-style": "npm --prefix tools/code-style install",
"dev-setup:tools:test-dependencies": "npm --prefix tools/test-dependencies install",
"prepublish": "npm run build",
"prepublishOnly": "run-s -lc build setup-tests test",
"lint": "tsc --noEmit",
"prebuild": "node -r fs -e 'fs.rmSync(`dist`,{recursive:true,force:true})'",
"build": "tsc -b ./tsconfig.json",
"build-dev": "npm run -- build --sourceMap",
"cs-fix": "npm --prefix tools/code-style exec -- eslint --fix .",
"setup-tests": "node tests/integration/setup.js",
"test": "run-p --aggregate-output -lc test:\\*",
"test:jest": "c8 jest",
"test:standard": "npm --prefix tools/code-style exec -- eslint .",
"test:dependencies": "npm --prefix tools/test-dependencies exec -- knip --include dependencies,unlisted,unresolved --production",
"dogfooding:npx": "npx .",
"dogfooding:npm-exec": "npm exec .",
"dogfooding:direct": "node -- bin/cyclonedx-npm-cli.js"
},
"jest-junit": {
"suiteName": "jest tests",
"outputDirectory": "reports/jest",
"outputName": "tests.junit.xml"
}
}