-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.33 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.33 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
{
"name": "@cyclonedx/webpack-plugin",
"version": "5.1.0",
"description": "Creates CycloneDX Software Bill of Materials (SBoM) from webpack projects",
"license": "Apache-2.0",
"copyright": "Copyright OWASP Foundation",
"keywords": [
"webpack",
"CycloneDX",
"bill-of-materials",
"BOM",
"software-bill-of-materials",
"SBOM",
"inventory",
"component",
"dependency",
"package-url",
"PURL",
"SPDX"
],
"homepage": "https://github.com/CycloneDX/cyclonedx-webpack-plugin#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/CycloneDX/cyclonedx-webpack-plugin.git"
},
"bugs": {
"url": "https://github.com/CycloneDX/cyclonedx-webpack-plugin/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": "Steve Springett",
"url": "https://github.com/stevespringett"
},
{
"name": "Jeremy Long",
"url": "https://github.com/jeremylong"
},
{
"name": "Peter Schuster",
"url": "https://github.com/peschuster"
},
{
"name": "Drew Thompson",
"url": "https://github.com/officerNordberg"
},
{
"name": "Tristan Bastian",
"url": "https://github.com/reey"
},
{
"name": "Frozen_byte",
"url": "https://github.com/Frozen-byte"
}
],
"type": "commonjs",
"engines": {
"node": ">=20.18.0"
},
"dependencies": {
"@cyclonedx/cyclonedx-library": "^8.4.0",
"normalize-package-data": "^7.0.0",
"xmlbuilder2": "^3.0.2"
},
"peerDependencies": {
"webpack": "^5"
},
"devDependencies": {
"@types/node": "ts5.8",
"@types/normalize-package-data": "^2.4.4",
"c8": "^10",
"jest": "30.0.5",
"jest-junit": "16.0.0",
"npm-run-all2": "^8.0.1",
"typescript": "5.9.2",
"webpack": "^5"
},
"types": "./dist/plugin.d.ts",
"main": "./dist/plugin.js",
"exports": "./dist/plugin.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",
"prebuild": "node -r fs -e 'fs.rmSync(\"dist\",{recursive:true,force:true})'",
"build": "tsc -b ./tsconfig.json",
"build-dev": "npm run -- build --sourceMap",
"setup-tests": "node tests/integration/setup.js",
"test": "run-p --aggregate-output -lc 'test:*'",
"test:jest": "c8 jest",
"test:lint": "tsc --noEmit",
"test:standard": "npm --prefix tools/code-style exec -- eslint .",
"test:dependencies": "npm --prefix tools/test-dependencies exec -- knip --include dependencies,unlisted,unresolved --production",
"cs-fix": "npm --prefix tools/code-style exec -- eslint --fix ."
},
"jest-junit": {
"suiteName": "jest tests",
"outputDirectory": "reports/jest",
"outputName": "tests.junit.xml"
}
}