package.json 1.4 KB
Newer Older
EvanOne(文一)'s avatar
init  
EvanOne(文一) 已提交
1 2
{
  "name": "hexo-theme-stun",
EvanOne(文一)'s avatar
EvanOne(文一) 已提交
3
  "version": "1.5.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
    "release": "standard-version",
    "docs:dev": "vuepress dev docs",
EvanOne(文一)'s avatar
EvanOne(文一) 已提交
10 11
    "docs:build": "vuepress build docs",
    "lint": "eslint --ext .js source/js",
12 13
    "lint:fix": "eslint --fix --ext .js source/js",
    "theme:update": "git stash & git pull"
EvanOne(文一)'s avatar
init  
EvanOne(文一) 已提交
14 15 16 17 18 19 20 21 22 23 24 25 26 27
  },
  "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"
  },
28 29 30
  "dependencies": {
    "nib": "^1.1.2"
  },
31
  "devDependencies": {
EvanOne(文一)'s avatar
EvanOne(文一) 已提交
32 33
    "@commitlint/cli": "^8.1.0",
    "commitizen": "^3.1.2",
34 35
    "commitlint-config-cz": "^0.11.1",
    "cz-customizable": "^6.2.0",
EvanOne(文一)'s avatar
EvanOne(文一) 已提交
36 37 38 39 40 41
    "eslint": "^6.0.1",
    "eslint-config-standard": "^13.0.1",
    "eslint-plugin-import": "^2.18.0",
    "eslint-plugin-node": "^9.1.0",
    "eslint-plugin-promise": "^4.2.1",
    "eslint-plugin-standard": "^4.0.0",
42
    "husky": "^2.3.0",
43
    "standard-version": "^6.0.1",
EvanOne(文一)'s avatar
EvanOne(文一) 已提交
44
    "vuepress": "^1.0.2"
45 46 47 48 49 50 51 52 53 54 55 56 57 58
  },
  "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(文一) 已提交
59
}