@cyclonedx/cyclonedx-library 8.5.0 → 8.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/knip.jsonc +17 -0
- package/package.json +11 -8
- package/tsconfig.d.tsbuildinfo +1 -1
- package/tsconfig.node.tsbuildinfo +1 -1
package/knip.jsonc
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://unpkg.com/knip@5/schema-jsonc.json",
|
|
3
|
+
"entry": [
|
|
4
|
+
"src/index.node.ts!",
|
|
5
|
+
"src/index.web.ts!"
|
|
6
|
+
],
|
|
7
|
+
"project": [
|
|
8
|
+
"src/**!",
|
|
9
|
+
"res/**!",
|
|
10
|
+
"tests/**",
|
|
11
|
+
"!tests/_data/normalizeResults/**",
|
|
12
|
+
"!tests/_data/schemaTestData/**"
|
|
13
|
+
],
|
|
14
|
+
"ignore": [
|
|
15
|
+
"tools/**"
|
|
16
|
+
]
|
|
17
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cyclonedx/cyclonedx-library",
|
|
3
|
-
"version": "8.5.
|
|
3
|
+
"version": "8.5.1",
|
|
4
4
|
"description": "Core functionality of CycloneDX for JavaScript (Node.js or WebBrowser).",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"keywords": [
|
|
@@ -97,13 +97,13 @@
|
|
|
97
97
|
"c8": "^10",
|
|
98
98
|
"deepmerge": "^4.2.2",
|
|
99
99
|
"fast-glob": "^3.3.1",
|
|
100
|
-
"memfs": "4.
|
|
101
|
-
"mocha": "11.7.
|
|
100
|
+
"memfs": "4.38.2",
|
|
101
|
+
"mocha": "11.7.2",
|
|
102
102
|
"npm-run-all2": "^8",
|
|
103
103
|
"rimraf": "^6",
|
|
104
|
-
"ts-loader": "9.5.
|
|
105
|
-
"typescript": "5.
|
|
106
|
-
"webpack": "5.
|
|
104
|
+
"ts-loader": "9.5.4",
|
|
105
|
+
"typescript": "5.9.2",
|
|
106
|
+
"webpack": "5.101.3",
|
|
107
107
|
"webpack-cli": "6.0.1",
|
|
108
108
|
"webpack-node-externals": "3.0.0"
|
|
109
109
|
},
|
|
@@ -170,8 +170,10 @@
|
|
|
170
170
|
},
|
|
171
171
|
"scripts": {
|
|
172
172
|
"dev-setup": "npm i && run-p --aggregate-output -lc dev-setup:\\*",
|
|
173
|
-
"dev-setup:
|
|
174
|
-
"dev-setup:
|
|
173
|
+
"dev-setup:tools": "run-p --aggregate-output -lc dev-setup:tools:\\*",
|
|
174
|
+
"dev-setup:tools:docs-gen": "npm --prefix tools/docs-gen install",
|
|
175
|
+
"dev-setup:tools:code-style": "npm --prefix tools/code-style install",
|
|
176
|
+
"dev-setup:tools:test-dependencies": "npm --prefix tools/test-dependencies install",
|
|
175
177
|
"dev-setup:examples": "run-p --aggregate-output -lc dev-setup:examples:\\*",
|
|
176
178
|
"dev-setup:examples:js": "npm --prefix examples/node/javascript i --ignore-scripts",
|
|
177
179
|
"dev-setup:examples:ts-cjs": "npm --prefix examples/node/typescript/example.cjs i --ignore-scripts",
|
|
@@ -190,6 +192,7 @@
|
|
|
190
192
|
"test:web": "node -e 'console.log(\"TODO: write web test\")'",
|
|
191
193
|
"test:lint": "tsc --noEmit",
|
|
192
194
|
"test:standard": "npm --prefix tools/code-style exec -- eslint .",
|
|
195
|
+
"test:dependencies": "npm --prefix tools/test-dependencies exec -- knip --include dependencies,unlisted,unresolved --production",
|
|
193
196
|
"cs-fix": "npm --prefix tools/code-style exec -- eslint --fix .",
|
|
194
197
|
"api-doc": "run-p --aggregate-output -lc api-doc:\\*",
|
|
195
198
|
"api-doc:node": "npm --prefix tools/docs-gen exec -- typedoc --options ./typedoc.node.json",
|
package/tsconfig.d.tsbuildinfo
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"root":["./src/index.common.ts","./src/index.node.ts","./src/index.web.ts","./src/resources.node.ts","./src/spdx.ts"],"version":"5.
|
|
1
|
+
{"root":["./src/index.common.ts","./src/index.node.ts","./src/index.web.ts","./src/resources.node.ts","./src/spdx.ts"],"version":"5.9.2"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"root":["./src/index.node.ts","./src/_optPlug.node/__jsonValidators/ajv.ts","./src/_optPlug.node/__xmlStringifiers/xmlbuilder2.ts","./src/_optPlug.node/__xmlValidators/libxmljs2.ts"],"version":"5.
|
|
1
|
+
{"root":["./src/index.node.ts","./src/_optPlug.node/__jsonValidators/ajv.ts","./src/_optPlug.node/__xmlStringifiers/xmlbuilder2.ts","./src/_optPlug.node/__xmlValidators/libxmljs2.ts"],"version":"5.9.2"}
|