-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
113 lines (113 loc) · 2.95 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
112
113
{
"name": "@cyclonedx/webpack-plugin",
"version": "3.15.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": "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": ">=14"
},
"dependencies": {
"@cyclonedx/cyclonedx-library": "^6.11.0",
"normalize-package-data": "^3||^4||^5||^6",
"xmlbuilder2": "^3.0.2"
},
"peerDependencies": {
"webpack": "^5"
},
"devDependencies": {
"@types/node": "ts5.6",
"@types/normalize-package-data": "^2.4.1",
"c8": "^8||^9",
"eslint": "8.57.1",
"eslint-config-standard": "17.1.0",
"eslint-config-standard-with-typescript": "43.0.1",
"eslint-plugin-header": "3.1.1",
"eslint-plugin-simple-import-sort": "12.1.1",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"npm-run-all2": "^6.2.3",
"typescript": "5.6.3",
"webpack": "^5"
},
"types": "./dist/plugin.d.ts",
"main": "./dist/plugin.js",
"exports": "./dist/plugin.js",
"scripts": {
"prepublish": "npm run build",
"prepublishOnly": "run-s -lc build setup-tests test",
"lint": "tsc --noEmit",
"build": "run-p --aggregate-output -l 'build:*'",
"prebuild:node": "node -r fs -e 'fs.rmSync(\"dist\",{recursive:true,force:true})'",
"build:node": "tsc -b ./tsconfig.json",
"setup-tests": "node tests/integration/setup.js",
"test": "run-p --aggregate-output -lc 'test:*'",
"test:jest": "c8 jest",
"test:standard": "eslint .",
"cs-fix": "eslint --fix ."
},
"jest-junit": {
"suiteName": "jest tests",
"outputDirectory": "reports/jest",
"outputName": "tests.junit.xml"
}
}