{
  "name": "contentful-import",
  "version": "8.5.19",
  "description": "this tool allows you to import JSON dump exported by contentful-export",
  "main": "dist/index.js",
  "engines": {
    "node": ">=12"
  },
  "bin": {
    "contentful-import": "./bin/contentful-import"
  },
  "scripts": {
    "build": "npm run clean && babel lib --out-dir dist",
    "build:watch": "babel lib --out-dir dist --watch",
    "clean": "rimraf dist && rimraf coverage",
    "lint": "eslint lib bin/contentful-import test",
    "pretest": "npm run lint && npm run build",
    "test": "npm run test:unit && npm run test:integration",
    "test:unit": "jest --testPathPattern=test/unit --coverage",
    "test:unit:debug": "node --inspect-brk ./node_modules/.bin/jest --runInBand --watch --testPathPattern=test/unit",
    "test:unit:watch": "npm run test:unit -- --watch",
    "test:integration": "jest --testPathPattern=test/integration",
    "test:integration:debug": "node --inspect-brk ./node_modules/.bin/jest --runInBand --watch --testPathPattern=test/integration",
    "test:integration:watch": "npm run test:integration -- --watch",
    "test:simulate-ci": "trevor",
    "browser-coverage": "npm run test:cover && opener coverage/lcov-report/index.html",
    "semantic-release": "semantic-release",
    "devmanage:build": "pushd ../contentful-management.js && npm run build && popd",
    "devmanage:clean": "pushd ../contentful-management.js && npm run clean && popd",
    "devmanage:install": "npm run devmanage:build && rm -rf node_modules/contentful-management.js && npm install ../contentful-management.js && npm run devmanage:clean",
    "devmanage:uninstall": "npm run devmanage:clean && rimraf node_modules/contentful-management.js",
    "devdep:build": "pushd ../contentful-batch-libs && npm run build && popd",
    "devdep:clean": "pushd ../contentful-batch-libs && npm run clean && popd",
    "devdep:install": "npm run devdep:build && rm -rf node_modules/contentful-batch-libs && npm install ../contentful-batch-libs && npm run devdep:clean",
    "devdep:uninstall": "npm run devdep:clean && rimraf node_modules/contentful-batch-libs",
    "precommit": "npm run lint",
    "prepush": "npm run test:unit"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/contentful/contentful-import.git"
  },
  "keywords": [
    "contentful",
    "contentful-import"
  ],
  "author": "Contentful <opensource@contentful.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/contentful/contentful-import/issues"
  },
  "dependencies": {
    "bluebird": "^3.5.1",
    "cli-table3": "^0.6.0",
    "contentful-batch-libs": "^9.4.2",
    "contentful-management": "^10.25.0",
    "date-fns": "^2.29.3",
    "joi": "^17.7.0",
    "listr": "^0.14.1",
    "listr-update-renderer": "^0.5.0",
    "listr-verbose-renderer": "^0.6.0",
    "lodash": "^4.17.10",
    "p-queue": "^6.6.2",
    "yargs": "^17.6.2"
  },
  "devDependencies": {
    "@babel/cli": "^7.19.3",
    "@babel/core": "^7.20.5",
    "@babel/plugin-proposal-object-rest-spread": "^7.19.4",
    "@babel/preset-env": "^7.20.2",
    "babel-eslint": "^10.1.0",
    "babel-jest": "^29.3.1",
    "babel-plugin-add-module-exports": "^1.0.2",
    "babel-preset-env": "^1.7.0",
    "cz-conventional-changelog": "^3.1.0",
    "eslint": "^7.2.0",
    "eslint-config-standard": "^16.0.0",
    "eslint-plugin-import": "^2.26.0",
    "eslint-plugin-jest": "^27.1.7",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-promise": "^6.1.1",
    "eslint-plugin-standard": "^5.0.0",
    "husky": "^8.0.2",
    "jest": "^29.3.1",
    "rimraf": "^3.0.2",
    "semantic-release": "^19.0.5"
  },
  "files": [
    "bin",
    "dist",
    "example-config.json"
  ],
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  },
  "release": {
    "plugins": [
      [
        "@semantic-release/commit-analyzer",
        {
          "releaseRules": [
            {
              "type": "build",
              "scope": "deps",
              "release": "patch"
            }
          ]
        }
      ],
      "@semantic-release/release-notes-generator",
      "@semantic-release/npm",
      "@semantic-release/github"
    ]
  },
  "jest": {
    "testEnvironment": "node",
    "collectCoverageFrom": [
      "lib/**/*.js"
    ],
    "coveragePathIgnorePatterns": [
      "usageParams.js"
    ],
    "transformIgnorePatterns": [
      "node_modules/(?!(contentful-batch-libs)/)"
    ]
  }
}
