{
  "name": "react-native-background-downloader-queue",
  "version": "5.3.3",
  "description": "A background downloader that works even when your app has quit, and maintains a queue of files so you don't have to babysit it.",
  "main": "./lib/index.js",
  "files": [
    "lib/**/*"
  ],
  "scripts": {
    "build": "tsc --project tsconfig.build.json",
    "clean": "rm -rf ./lib/",
    "cm": "cz",
    "lint": "eslint ./src/ --fix",
    "prepare": "husky install",
    "semantic-release": "semantic-release",
    "test:watch": "jest --watch",
    "test": "jest --coverage",
    "typecheck": "tsc --noEmit"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/fivecar/react-native-background-downloader-queue.git"
  },
  "license": "MIT",
  "author": {
    "name": "Philip Su",
    "email": "39933441+fivecar@users.noreply.github.com",
    "url": "https://github.com/fivecar"
  },
  "engines": {
    "node": ">=12.0"
  },
  "keywords": [
    "download",
    "downloader",
    "background",
    "files",
    "react-native",
    "queue"
  ],
  "bugs": {
    "url": "https://github.com/fivecar/react-native-background-downloader-queue/issues"
  },
  "homepage": "https://github.com/fivecar/react-native-background-downloader-queue#readme",
  "devDependencies": {
    "@react-native-community/netinfo": "^9.3.7",
    "@ryansonshine/commitizen": "^4.2.8",
    "@ryansonshine/cz-conventional-changelog": "^3.3.4",
    "@types/jest": "^27.5.2",
    "@types/kesha-antonov__react-native-background-downloader": "^2.6.0",
    "@types/node": "^12.20.11",
    "@types/react-native-background-downloader": "^2.3.6",
    "@typescript-eslint/eslint-plugin": "^4.22.0",
    "@typescript-eslint/parser": "^4.22.0",
    "babel-jest": "^29.3.1",
    "conventional-changelog-conventionalcommits": "^5.0.0",
    "eslint": "^7.25.0",
    "eslint-config-prettier": "^8.3.0",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-prettier": "^3.4.0",
    "husky": "^6.0.0",
    "jest": "^29.3.0",
    "jest-mock-extended": "^3.0.1",
    "lint-staged": "^10.5.4",
    "prettier": "^2.2.1",
    "react-native": "^0.71.0",
    "semantic-release": "^19.0.2",
    "ts-jest": "^29.0.5",
    "ts-node": "^10.2.1",
    "typescript": "^4.2.4"
  },
  "peerDependencies": {
    "@kesha-antonov/react-native-background-downloader": "^3.2.6",
    "@react-native-async-storage/async-storage": "^1.17.11",
    "react-native-fs": "^2.20.0"
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/@ryansonshine/cz-conventional-changelog"
    }
  },
  "lint-staged": {
    "*.ts": "eslint --cache --cache-location .eslintcache --fix"
  },
  "release": {
    "branches": [
      "main"
    ],
    "plugins": [
      [
        "@semantic-release/commit-analyzer",
        {
          "preset": "conventionalcommits",
          "releaseRules": [
            {
              "type": "build",
              "scope": "deps",
              "release": "patch"
            }
          ]
        }
      ],
      [
        "@semantic-release/release-notes-generator",
        {
          "preset": "conventionalcommits",
          "presetConfig": {
            "types": [
              {
                "type": "feat",
                "section": "Features"
              },
              {
                "type": "fix",
                "section": "Bug Fixes"
              },
              {
                "type": "build",
                "section": "Dependencies and Other Build Updates",
                "hidden": false
              }
            ]
          }
        }
      ],
      "@semantic-release/npm",
      "@semantic-release/github"
    ]
  },
  "dependencies": {
    "key-value-file-system": "^1.1.0",
    "react-uuid": "^2.0.0"
  }
}
