{
  "name": "@amplience/dc-cli",
  "version": "0.22.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'",
    "clean": "rimraf dist packages",
    "build": "npm run clean && tsc && cp HOW_TO_USE.1 dist/dc-cli.1",
    "update:man": "./update_man.sh",
    "build:package": "npm run build && pkg --targets node18-macos-x64,node18-linux-x64,node18-win-x64 --out-dir packages .",
    "dev": "ts-node ./src/index.ts"
  },
  "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": "^19.7.1",
    "@commitlint/config-conventional": "^19.7.1",
    "@eslint/eslintrc": "^3.2.0",
    "@eslint/js": "^9.20.0",
    "@types/fs-extra": "^9.0.13",
    "@types/jest": "^29.5.14",
    "@types/lodash": "^4.14.144",
    "@types/node": "^20.17.19",
    "@types/node-fetch": "^2.5.7",
    "@types/rimraf": "^3.0.0",
    "@types/table": "^4.0.7",
    "@types/url-template": "^2.0.28",
    "@types/yargs": "^16.0.4",
    "@typescript-eslint/eslint-plugin": "^8.24.1",
    "@typescript-eslint/parser": "^8.24.1",
    "axios-mock-adapter": "^1.19.0",
    "commitizen": "^4.2.4",
    "cz-conventional-changelog": "^3.0.2",
    "eslint": "^9.20.1",
    "eslint-config-prettier": "^10.0.1",
    "eslint-plugin-prettier": "^5.2.3",
    "globals": "^15.15.0",
    "husky": "^3.0.5",
    "jest": "^29.7.0",
    "nock": "^12.0.3",
    "pkg": "^5.8.1",
    "prettier": "^3.5.1",
    "ts-jest": "^29.2.5",
    "ts-node": "^10.9.1",
    "typescript": "^5.7.3"
  },
  "dependencies": {
    "ajv": "^6.12.3",
    "axios": "^0.21.1",
    "axios-retry": "^3.9.1",
    "chalk": "^2.4.2",
    "dc-management-sdk-js": "^2.1.0",
    "enquirer": "^2.3.6",
    "fs-extra": "^10.1.0",
    "lodash": "^4.17.21",
    "node-fetch": "^2.6.1",
    "rimraf": "^3.0.0",
    "sanitize-filename": "^1.6.3",
    "table": "^5.4.6",
    "url-template": "^2.0.8",
    "yargs": "^14.0.0"
  },
  "engines": {
    "node": ">=18"
  }
}
