# npm License Audit: Map package.json Deps

**Use case:** 

Feed your package.json dependencies and return the license and source repository for each npm package - a fast OSS compliance check for engineering teams.

## Input

```json
{
  "registry": "npm",
  "searchQuery": "",
  "packageNames": [
    "react",
    "webpack",
    "eslint",
    "typescript",
    "jest",
    "babel-core"
  ],
  "includeDownloads": false,
  "maxItems": 50,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "registry": {
    "label": "Registry",
    "format": "text"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "version": {
    "label": "Version",
    "format": "text"
  },
  "monthlyDownloads": {
    "label": "Monthly downloads",
    "format": "number"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Package Registry Scraper (npm + PyPI)](https://apify.com/dami_studio/package-registry-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/dami_studio/package-registry-scraper) to learn more, explore other use cases, and run it yourself.