hexojs/hexo-cli

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "hexo-cli",
  "version": "4.3.2",
  "description": "Command line interface for Hexo",
  "main": "dist/hexo",
  "bin": {
    "hexo": "./bin/hexo"
  },
  "files": [
    "dist/**",
    "completion",
    "bin",
    "assets"
  ],
  "types": "./dist/hexo.d.ts",
  "scripts": {
    "prepublishOnly": "npm install && npm run clean && npm run build",
    "build": "tsc -b",
    "clean": "tsc -b --clean",
    "eslint": "eslint .",
    "pretest": "npm run clean && npm run build",
    "test": "mocha test/**/*.ts --require ts-node/register",
    "test-cov": "nyc --reporter=lcovonly npm test",
    "prepare": "git submodule init && git submodule update && git submodule foreach git pull origin master"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/hexojs/hexo-cli.git"
  },
  "homepage": "https://hexo.io/",
  "keywords": [
    "website",
    "blog",
    "cms",
    "framework",
    "hexo",
    "cli"
  ],
  "author": "Tommy Chen <tommy351@gmail.com> (https://zespia.tw)",
  "maintainers": [
    "Abner Chou <hi@abnerchou.me> (https://abnerchou.me)"
  ],
  "license": "MIT",
  "dependencies": {
    "abbrev": "^2.0.0",
    "bluebird": "^3.7.2",
    "command-exists": "^1.2.9",
    "hexo-fs": "^4.1.1",
    "hexo-log": "^4.0.1",
    "hexo-util": "^3.3.0",
    "minimist": "^1.2.5",
    "picocolors": "^1.0.0",
    "resolve": "^1.20.0",
    "tildify": "^2.0.0"
  },
  "devDependencies": {
    "@types/abbrev": "^1.1.5",
    "@types/bluebird": "^3.5.37",
    "@types/chai": "^4.3.14",
    "@types/command-exists": "^1.2.3",
    "@types/minimist": "^1.2.5",
    "@types/mocha": "^10.0.6",
    "@types/node": "^18.11.8",
    "@types/rewire": "^2.5.30",
    "@types/sinon": "^17.0.3",
    "chai": "^4.3.4",
    "eslint": "^8.2.0",
    "eslint-config-hexo": "^5.0.0",
    "hexo-renderer-marked": "^6.0.0",
    "mocha": "^10.0.0",
    "nyc": "^15.1.0",
    "rewire": "^6.0.0",
    "sinon": "^17.0.1",
    "ts-node": "^10.9.1",
    "typescript": "^5.0.0"
  },
  "engines": {
    "node": ">=14"
  }
}