{
  "name": "@rezakalfane/dc-cli",
  "version": "1.0.0",
  "description": "Dynamic Content CLI Tool",
  "main": "./dist/index.js",
  "man": "./dist/dc-cli.1",
  "bin": {
    "dc-cli": "./dist/index.js"
  },
  "scripts": {
    "precommit": "npm run lint",
    "commit": "npx git-cz",
    "lint": "prettier --check \"**/*.ts\" && eslint \"**/*.ts\"",
    "pretest": "npm run lint",
    "test": "FORCE_COLOR=1 jest --silent --coverage",
    "fix": "prettier --write '**/*.ts'",
    "reset": "git clean -dfx && git reset --hard && npm ci",
    "prerelease": "npm run reset",
    "release": "standard-version",
    "prereleaseas": "npm run reset",
    "releaseas": "standard-version --release-as ",
    "clean": "rimraf dist packages",
    "build": "npm run clean && tsc",
    "build:man": "./build_man.sh",
    "build:package": "npm run build && npm run build:man && pkg --targets node8-macos-x64,node8-linux-x64,node8-win-x64 --out-dir packages .",
    "build:compress": "npm run build:package && scripts/compress",
    "dev": "ts-node ./src/index.ts"
  },
  "standard-version": {
    "scripts": {
      "prerelease": "npm run build:package",
      "posttag": "scripts/compress"
    }
  },
  "repository": {
    "type": "git",
    "url": "git@github.com:amplience/dc-cli.git"
  },
  "keywords": [
    "Dynamic",
    "Content",
    "CLI"
  ],
  "author": "Amplience",
  "license": "Apache-2.0",
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  },
  "husky": {
    "hooks": {
      "pre-commit": "npm test",
      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
    }
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ],
    "rules": {
      "header-max-length": [
        2,
        "always",
        100
      ],
      "type-case": [
        1,
        "always",
        "lower-case"
      ],
      "subject-case": [
        1,
        "always",
        "lower-case"
      ]
    }
  },
  "pkg": {
    "scripts": [
      "./dist/**/*.js"
    ]
  },
  "devDependencies": {
    "@commitlint/cli": "^8.2.0",
    "@commitlint/config-conventional": "^8.2.0",
    "@types/chalk": "^2.2.0",
    "@types/jest": "^24.0.18",
    "@types/lodash": "^4.14.144",
    "@types/node-fetch": "^2.5.7",
    "@types/rimraf": "^3.0.0",
    "@types/table": "^4.0.7",
    "@typescript-eslint/eslint-plugin": "^2.3.0",
    "@typescript-eslint/parser": "^2.3.0",
    "adm-zip": "^0.4.13",
    "commitizen": "^4.0.3",
    "cz-conventional-changelog": "^3.0.2",
    "eslint": "^6.4.0",
    "eslint-config-prettier": "^6.3.0",
    "eslint-plugin-prettier": "^3.1.1",
    "husky": "^3.0.5",
    "jest": "^24.9.0",
    "nock": "^12.0.3",
    "pkg": "^4.4.0",
    "prettier": "^1.18.2",
    "standard-version": "^7.0.0",
    "ts-jest": "^24.1.0",
    "ts-node": "^8.4.1",
    "typescript": "^3.6.3"
  },
  "dependencies": {
    "ajv": "^6.12.3",
    "axios": "^0.18.1",
    "chalk": "^2.4.2",
    "dc-management-sdk-js": "^1.9.0",
    "lodash": "^4.17.15",
    "node-fetch": "^2.6.1",
    "rimraf": "^3.0.0",
    "sanitize-filename": "^1.6.3",
    "table": "^5.4.6",
    "yargs": "^14.0.0"
  }
}
