-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
109 lines (109 loc) · 2.83 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
{
"name": "@cyclonedx/cyclonedx-npm",
"version": "1.20.0",
"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",
"email": "jan.kowalleck@gmail.com"
},
"contributors": [
{
"name": "Jan Kowalleck",
"email": "jan.kowalleck@gmail.com"
},
{
"name": "Alex Miller",
"email": "codex.nz@gmail.com"
}
],
"dependencies": {
"@cyclonedx/cyclonedx-library": "^7.0.0",
"commander": "^10.0.0",
"normalize-package-data": "^3||^4||^5||^6",
"xmlbuilder2": "^3.0.2"
},
"devDependencies": {
"@types/hosted-git-info": "^3.0.5",
"@types/node": "ts5.6",
"@types/normalize-package-data": "^2.4.1",
"eslint": "8.57.0",
"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",
"fast-glob": "^3.2.11",
"imurmurhash": "^0.1.4",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"npm-run-all": "^4.1.5",
"typescript": "5.7.3"
},
"type": "commonjs",
"engines": {
"node": ">=14",
"npm": "6 - 11"
},
"directories": {
"doc": "docs",
"src": "src",
"lib": "dist",
"test": "tests",
"example": "demo"
},
"bin": {
"cyclonedx-npm": "bin/cyclonedx-npm-cli.js"
},
"main": "./dist/cli.js",
"exports": "./dist/index.js",
"scripts": {
"prepublish": "npm run build",
"prepublishOnly": "run-s -lc build setup-tests test:jest",
"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": "eslint --fix .",
"setup-tests": "node tests/integration/setup.js",
"test": "run-p --aggregate-output -lc test:*",
"test:jest": "jest",
"test:standard": "eslint .",
"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"
}
}