-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
90 lines (90 loc) · 2.41 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
{
"name": "@cyclonedx/cyclonedx-library",
"version": "1.0.0-beta.1",
"description": "Core functionality of CycloneDX for JavaScript (Node.js or WebBrowser).",
"keywords": [
"CycloneDX",
"SBOM",
"BOM",
"inventory",
"bill-of-materials",
"software-bill-of-materials",
"component",
"dependency",
"package-url",
"PURL",
"spdx"
],
"repository": {
"type": "git",
"url": "https://github.com/CycloneDX/cyclonedx-javascript-library"
},
"bugs": {
"url": "https://github.com/CycloneDX/cyclonedx-javascript-library/issues"
},
"license": "Apache-2.0",
"author": {
"name": "Jan Kowalleck",
"email": "[email protected]"
},
"contributors": [
{
"name": "Jan Kowalleck",
"email": "[email protected]"
}
],
"type": "commonjs",
"engines": {
"node": ">=14.0.0"
},
"bundleDependencies": [
"@cyclonedx/cyclonedx-library-universal-node-xml"
],
"dependencies": {
"@cyclonedx/cyclonedx-library-universal-node-xml": "file:packages/universal-node-xml",
"packageurl-js": "^0.0.6"
},
"optionalDependencies": {
"xmlbuilder2": "^3.0.2"
},
"devDependencies": {
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.41",
"@types/webpack": "^5.28.0",
"deepmerge": "4.2.2",
"mocha": "10.0.0",
"npm-run-all": "^4.1.5",
"ts-loader": "9.3.0",
"ts-standard": "^11.0.0",
"typescript": "4.6.4",
"webpack": "5.73.0",
"webpack-cli": "4.9.2",
"xmlbuilder2": "^3.0.2"
},
"browser": "./dist.web/lib.js",
"types": "./src/_index.node.ts",
"main": "./dist.node/_index.node.js",
"exports": "./dist.node/_index.node.js",
"directories": {
"doc": "./docs",
"src": "./src",
"lib": "./dist.node",
"test": "./tests",
"example": "./examples"
},
"scripts": {
"prepublish": "npm run build",
"prepublishOnly": "npm run build",
"lint": "tsc --noEmit",
"build": "run-p --aggregate-output -l build:*",
"prebuild:node": "node -r fs -e 'fs.rmSync(\"dist.node\",{recursive:true,force:true})'",
"build:node": "tsc -b ./tsconfig.node.json",
"prebuild:web": "node -r fs -e 'fs.rmSync(\"dist.web\",{recursive:true,force:true})'",
"build:web": "webpack",
"cs-fix": "eslint --fix .",
"test": "run-p --aggregate-output -lc test:*",
"test:node": "mocha -p",
"test:web": "node -e 'console.log(\"TODO: write web test\")'",
"test:standard": "eslint ."
}
}