{
  "name": "json-excel-cli",
  "version": "1.0.22",
  "description": "🦅 Support multi-language file and Chinese-English comparison table excel file conversion",
  "main": "index.js",
  "bin": {
    "json2excel": "./bin/json2excel.js"
  },
  "packageManager": "yarn@1.22.19",
  "scripts": {
    "xo-lint": "xo",
    "xo-fix": "xo --fix",
    "test": "xo && nyc  --reporter=html --reporter=lcov ava",
    "coverage": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls -v",
    "fix": "eslint --ext .js,.vue,.css --fix",
    "release:prerelease": "standard-version --prerelease",
    "release:prefix": "standard-version --prerelease alpha",
    "release:patch": "standard-version --release-as patch && git push --follow-tags origin master",
    "release:minor": "standard-version --release-as minor && git push --follow-tags origin master",
    "release:major": "standard-version --release-as major && git push --follow-tags origin master"
  },
  "files": [
    "packages/lib",
    "bin"
  ],
  "keywords": [
    "MIT-licensed",
    "JSON",
    "JS",
    "Excel",
    "XLS",
    "XLSX",
    "internationalization",
    "json2excel",
    "json-excel-cli",
    "lightweight",
    "CLI",
    "transform"
  ],
  "engines": {
    "node": ">=12"
  },
  "author": "chendq",
  "repository": {
    "type": "git",
    "url": "https://github.com/chandq/json2excel-cli"
  },
  "license": "MIT",
  "homepage": "https://github.com/chandq/json2excel-cli#readme",
  "dependencies": {
    "chalk": "^3.0.0",
    "commander": "^5.0.0",
    "minimist": "^1.2.5",
    "ora": "^4.0.3",
    "xlsx": "^0.17.0"
  },
  "devDependencies": {
    "@commitlint/cli": "^8.3.5",
    "@commitlint/config-conventional": "^8.3.4",
    "ava": "^3.8.2",
    "babel-eslint": "^10.1.0",
    "coveralls": "^3.1.0",
    "eslint": "^7.0.0",
    "husky": "^4.2.5",
    "lint-staged": "^10.2.2",
    "nyc": "^15.0.1",
    "standard-version": "^8.0.0",
    "xo": "0.24.0"
  },
  "xo": {
    "space": true,
    "esnext": true,
    "semicolon": false,
    "rules": {
      "no-console": 1,
      "space-before-function-paren": 0,
      "unicorn/escape-case": 0,
      "camelcase": 0,
      "object-curly-spacing": 0,
      "allowShortCircuit": 0,
      "unicorn/prevent-abbreviations": 0,
      "no-unused-expressions": 0,
      "no-unused-vars": 0,
      "no-negated-condition": 0,
      "unicorn/no-console-spaces": 0,
      "unicorn/no-for-loop": 0,
      "unicorn/prefer-string-slice": 0,
      "prefer-const": 0,
      "unicorn/prefer-number-properties": 0,
      "capitalized-comments": 0,
      "promise/prefer-await-to-then": 0
    },
    "ignores": [
      "examples/**/*"
    ]
  },
  "ava": {
    "failfast": true
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged",
      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
    }
  },
  "lint-staged": {
    "*.{js,vue}": [
      "eslint"
    ]
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  }
}
