contentful-import
Version:
this tool allows you to import JSON dump exported by contentful-export
131 lines (130 loc) • 4.47 kB
JSON
{
"name": "contentful-import",
"version": "7.9.20",
"description": "this tool allows you to import JSON dump exported by contentful-export",
"main": "dist/index.js",
"engines": {
"node": ">=6"
},
"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",
"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.0.1",
"contentful-management": "^6.0.2",
"echo-cli": "^1.0.8",
"joi": "^13.4.0",
"listr": "^0.14.1",
"listr-update-renderer": "^0.5.0",
"listr-verbose-renderer": "^0.4.1",
"lodash": "^4.17.10",
"moment": "^2.22.2",
"yargs": "^16.0.3"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.0.0",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.7.0",
"codecov": "^3.0.4",
"cz-conventional-changelog": "^3.1.0",
"eslint": "^7.2.0",
"eslint-config-standard": "^16.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jest": "^24.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.3",
"jest": "^23.4.2",
"nixt": "^0.5.0",
"rimraf": "^3.0.2",
"semantic-release": "^17.0.4"
},
"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)/)"
]
}
}