| 
 | 1 | +---  | 
 | 2 | +title: npm-sbom  | 
 | 3 | +section: 1  | 
 | 4 | +description: Generate a Software Bill of Materials (SBOM)  | 
 | 5 | +---  | 
 | 6 | + | 
 | 7 | +### Synopsis  | 
 | 8 | + | 
 | 9 | +<!-- AUTOGENERATED USAGE DESCRIPTIONS -->  | 
 | 10 | + | 
 | 11 | +### Description  | 
 | 12 | + | 
 | 13 | +The `npm sbom` command generates a Software Bill of Materials (SBOM) listing the  | 
 | 14 | +dependencies for the current project. SBOMs can be generated in either  | 
 | 15 | +[SPDX](https://spdx.dev/) or [CycloneDX](https://cyclonedx.org/) format.  | 
 | 16 | + | 
 | 17 | +### Example CycloneDX SBOM  | 
 | 18 | + | 
 | 19 | +```json  | 
 | 20 | +{  | 
 | 21 | +  "$schema": "http://cyclonedx.org/schema/bom-1.5.schema.json",  | 
 | 22 | +  "bomFormat": "CycloneDX",  | 
 | 23 | +  "specVersion": "1.5",  | 
 | 24 | +  "serialNumber": "urn:uuid:09f55116-97e1-49cf-b3b8-44d0207e7730",  | 
 | 25 | +  "version": 1,  | 
 | 26 | +  "metadata": {  | 
 | 27 | +    "timestamp": "2023-09-01T00:00:00.001Z",  | 
 | 28 | +    "lifecycles": [  | 
 | 29 | +      {  | 
 | 30 | +        "phase": "build"  | 
 | 31 | +      }  | 
 | 32 | +    ],  | 
 | 33 | +    "tools": [  | 
 | 34 | +      {  | 
 | 35 | +        "vendor": "npm",  | 
 | 36 | +        "name": "cli",  | 
 | 37 | +        "version": "10.1.0"  | 
 | 38 | +      }  | 
 | 39 | +    ],  | 
 | 40 | +    "component": {  | 
 | 41 | + | 
 | 42 | +      "type": "library",  | 
 | 43 | +      "name": "simple",  | 
 | 44 | +      "version": "1.0.0",  | 
 | 45 | +      "scope": "required",  | 
 | 46 | +      "author": "John Doe",  | 
 | 47 | +      "description": "simple react app",  | 
 | 48 | +      "purl":  "pkg:npm/[email protected]",   | 
 | 49 | +      "properties": [  | 
 | 50 | +        {  | 
 | 51 | +          "name": "cdx:npm:package:path",  | 
 | 52 | +          "value": ""  | 
 | 53 | +        }  | 
 | 54 | +      ],  | 
 | 55 | +      "externalReferences": [],  | 
 | 56 | +      "licenses": [  | 
 | 57 | +        {  | 
 | 58 | +          "license": {  | 
 | 59 | +            "id": "MIT"  | 
 | 60 | +          }  | 
 | 61 | +        }  | 
 | 62 | +      ]  | 
 | 63 | +    }  | 
 | 64 | +  },  | 
 | 65 | +  "components": [  | 
 | 66 | +    {  | 
 | 67 | + | 
 | 68 | +      "type": "library",  | 
 | 69 | +      "name": "lodash",  | 
 | 70 | +      "version": "4.17.21",  | 
 | 71 | +      "scope": "required",  | 
 | 72 | +      "author": "John-David Dalton",  | 
 | 73 | +      "description": "Lodash modular utilities.",  | 
 | 74 | +      "purl":  "pkg:npm/[email protected]",   | 
 | 75 | +      "properties": [  | 
 | 76 | +        {  | 
 | 77 | +          "name": "cdx:npm:package:path",  | 
 | 78 | +          "value": "node_modules/lodash"  | 
 | 79 | +        }  | 
 | 80 | +      ],  | 
 | 81 | +      "externalReferences": [  | 
 | 82 | +        {  | 
 | 83 | +          "type": "distribution",  | 
 | 84 | +          "url": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz"  | 
 | 85 | +        },  | 
 | 86 | +        {  | 
 | 87 | +          "type": "vcs",  | 
 | 88 | +          "url": "git+https://github.com/lodash/lodash.git"  | 
 | 89 | +        },  | 
 | 90 | +        {  | 
 | 91 | +          "type": "website",  | 
 | 92 | +          "url": "https://lodash.com/"  | 
 | 93 | +        },  | 
 | 94 | +        {  | 
 | 95 | +          "type": "issue-tracker",  | 
 | 96 | +          "url": "https://github.com/lodash/lodash/issues"  | 
 | 97 | +        }  | 
 | 98 | +      ],  | 
 | 99 | +      "hashes": [  | 
 | 100 | +        {  | 
 | 101 | +          "alg": "SHA-512",  | 
 | 102 | +          "content": "bf690311ee7b95e713ba568322e3533f2dd1cb880b189e99d4edef13592b81764daec43e2c54c61d5c558dc5cfb35ecb85b65519e74026ff17675b6f8f916f4a"  | 
 | 103 | +        }  | 
 | 104 | +      ],  | 
 | 105 | +      "licenses": [  | 
 | 106 | +        {  | 
 | 107 | +          "license": {  | 
 | 108 | +            "id": "MIT"  | 
 | 109 | +          }  | 
 | 110 | +        }  | 
 | 111 | +      ]  | 
 | 112 | +    }  | 
 | 113 | +  ],  | 
 | 114 | +  "dependencies": [  | 
 | 115 | +    {  | 
 | 116 | + | 
 | 117 | +      "dependsOn": [  | 
 | 118 | + | 
 | 119 | +      ]  | 
 | 120 | +    },  | 
 | 121 | +    {  | 
 | 122 | + | 
 | 123 | +      "dependsOn": []  | 
 | 124 | +    }  | 
 | 125 | +  ]  | 
 | 126 | +}  | 
 | 127 | +```  | 
 | 128 | + | 
 | 129 | +### Example SPDX SBOM  | 
 | 130 | + | 
 | 131 | +```json  | 
 | 132 | +{  | 
 | 133 | +  "spdxVersion": "SPDX-2.3",  | 
 | 134 | +  "dataLicense": "CC0-1.0",  | 
 | 135 | +  "SPDXID": "SPDXRef-DOCUMENT",  | 
 | 136 | + | 
 | 137 | +  "documentNamespace": "http://spdx.org/spdxdocs/simple-1.0.0-bf81090e-8bbc-459d-bec9-abeb794e096a",  | 
 | 138 | +  "creationInfo": {  | 
 | 139 | +    "created": "2023-09-01T00:00:00.001Z",  | 
 | 140 | +    "creators": [  | 
 | 141 | +      "Tool: npm/cli-10.1.0"  | 
 | 142 | +    ]  | 
 | 143 | +  },  | 
 | 144 | +  "documentDescribes": [  | 
 | 145 | +    "SPDXRef-Package-simple-1.0.0"  | 
 | 146 | +  ],  | 
 | 147 | +  "packages": [  | 
 | 148 | +    {  | 
 | 149 | +      "name": "simple",  | 
 | 150 | +      "SPDXID": "SPDXRef-Package-simple-1.0.0",  | 
 | 151 | +      "versionInfo": "1.0.0",  | 
 | 152 | +      "packageFileName": "",  | 
 | 153 | +      "description": "simple react app",  | 
 | 154 | +      "primaryPackagePurpose": "LIBRARY",  | 
 | 155 | +      "downloadLocation": "NOASSERTION",  | 
 | 156 | +      "filesAnalyzed": false,  | 
 | 157 | +      "homepage": "NOASSERTION",  | 
 | 158 | +      "licenseDeclared": "MIT",  | 
 | 159 | +      "externalRefs": [  | 
 | 160 | +        {  | 
 | 161 | +          "referenceCategory": "PACKAGE-MANAGER",  | 
 | 162 | +          "referenceType": "purl",  | 
 | 163 | +          "referenceLocator":  "pkg:npm/[email protected]"  | 
 | 164 | +        }  | 
 | 165 | +      ]  | 
 | 166 | +    },  | 
 | 167 | +    {  | 
 | 168 | +      "name": "lodash",  | 
 | 169 | +      "SPDXID": "SPDXRef-Package-lodash-4.17.21",  | 
 | 170 | +      "versionInfo": "4.17.21",  | 
 | 171 | +      "packageFileName": "node_modules/lodash",  | 
 | 172 | +      "description": "Lodash modular utilities.",  | 
 | 173 | +      "downloadLocation": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",  | 
 | 174 | +      "filesAnalyzed": false,  | 
 | 175 | +      "homepage": "https://lodash.com/",  | 
 | 176 | +      "licenseDeclared": "MIT",  | 
 | 177 | +      "externalRefs": [  | 
 | 178 | +        {  | 
 | 179 | +          "referenceCategory": "PACKAGE-MANAGER",  | 
 | 180 | +          "referenceType": "purl",  | 
 | 181 | +          "referenceLocator":  "pkg:npm/[email protected]"  | 
 | 182 | +        }  | 
 | 183 | +      ],  | 
 | 184 | +      "checksums": [  | 
 | 185 | +        {  | 
 | 186 | +          "algorithm": "SHA512",  | 
 | 187 | +          "checksumValue": "bf690311ee7b95e713ba568322e3533f2dd1cb880b189e99d4edef13592b81764daec43e2c54c61d5c558dc5cfb35ecb85b65519e74026ff17675b6f8f916f4a"  | 
 | 188 | +        }  | 
 | 189 | +      ]  | 
 | 190 | +    }  | 
 | 191 | +  ],  | 
 | 192 | +  "relationships": [  | 
 | 193 | +    {  | 
 | 194 | +      "spdxElementId": "SPDXRef-DOCUMENT",  | 
 | 195 | +      "relatedSpdxElement": "SPDXRef-Package-simple-1.0.0",  | 
 | 196 | +      "relationshipType": "DESCRIBES"  | 
 | 197 | +    },  | 
 | 198 | +    {  | 
 | 199 | +      "spdxElementId": "SPDXRef-Package-simple-1.0.0",  | 
 | 200 | +      "relatedSpdxElement": "SPDXRef-Package-lodash-4.17.21",  | 
 | 201 | +      "relationshipType": "DEPENDS_ON"  | 
 | 202 | +    }  | 
 | 203 | +  ]  | 
 | 204 | +}  | 
 | 205 | +```  | 
 | 206 | + | 
 | 207 | +### Package lock only mode  | 
 | 208 | + | 
 | 209 | +If package-lock-only is enabled, only the information in the package  | 
 | 210 | +lock (or shrinkwrap) is loaded.  This means that information from the  | 
 | 211 | +package.json files of your dependencies will not be included in the  | 
 | 212 | +result set (e.g. description, homepage, engines).  | 
 | 213 | + | 
 | 214 | +### Configuration  | 
 | 215 | + | 
 | 216 | +<!-- AUTOGENERATED CONFIG DESCRIPTIONS -->  | 
 | 217 | +## See Also  | 
 | 218 | + | 
 | 219 | +* [package spec](/using-npm/package-spec)  | 
 | 220 | +* [dependency selectors](/using-npm/dependency-selectors)  | 
 | 221 | +* [package.json](/configuring-npm/package-json)  | 
 | 222 | +* [workspaces](/using-npm/workspaces)  | 
 | 223 | + | 
0 commit comments