package.json 1.1 KB
Newer Older
EvanOne(文一)'s avatar
init  
EvanOne(文一) 已提交
1 2
{
  "name": "hexo-theme-stun",
EvanOne(文一)'s avatar
EvanOne(文一) 已提交
3
  "version": "1.1.1",
4
  "description": "A beautiful blog theme - stun",
EvanOne(文一)'s avatar
init  
EvanOne(文一) 已提交
5 6
  "homepage": "https://liuyib.github.io",
  "scripts": {
7
    "cz": "git cz",
8 9 10
    "release": "standard-version",
    "docs:dev": "vuepress dev docs",
    "docs:build": "vuepress build docs"
EvanOne(文一)'s avatar
init  
EvanOne(文一) 已提交
11 12 13 14 15 16 17 18 19 20 21 22 23 24
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/liuyib/hexo-theme-stun"
  },
  "keywords": [
    "stun",
    "Hexo"
  ],
  "author": "liuyib",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/liuyib/hexo-theme-stun/issues"
  },
25 26 27 28
  "dependencies": {
    "eslint-config-standard": "^12.0.0",
    "nib": "^1.1.2"
  },
29 30 31 32 33 34
  "devDependencies": {
    "@commitlint/cli": "^7.6.1",
    "commitizen": "^3.1.1",
    "commitlint-config-cz": "^0.11.1",
    "cz-customizable": "^6.2.0",
    "husky": "^2.3.0",
35 36
    "standard-version": "^6.0.1",
    "vuepress": "^0.14.11"
37 38 39 40 41 42 43 44 45 46 47 48 49 50
  },
  "husky": {
    "hooks": {
      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
    }
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-customizable"
    },
    "cz-customizable": {
      "config": "./config.js"
    }
  }
EvanOne(文一)'s avatar
init  
EvanOne(文一) 已提交
51
}