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.1.3",
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 12
    "docs:build": "vuepress build docs",
    "lint": "eslint --ext .js source/js",
    "lint:fix": "eslint --fix --ext .js source/js"
EvanOne(文一)'s avatar
init  
EvanOne(文一) 已提交
13 14 15 16 17 18 19 20 21 22 23 24 25 26
  },
  "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"
  },
27 28 29
  "dependencies": {
    "nib": "^1.1.2"
  },
30
  "devDependencies": {
EvanOne(文一)'s avatar
EvanOne(文一) 已提交
31 32
    "@commitlint/cli": "^8.1.0",
    "commitizen": "^3.1.2",
33 34
    "commitlint-config-cz": "^0.11.1",
    "cz-customizable": "^6.2.0",
EvanOne(文一)'s avatar
EvanOne(文一) 已提交
35 36 37 38 39 40
    "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",
41
    "husky": "^2.3.0",
42
    "standard-version": "^6.0.1",
EvanOne(文一)'s avatar
EvanOne(文一) 已提交
43
    "vuepress": "^1.0.2"
44 45 46 47 48 49 50 51 52 53 54 55 56 57
  },
  "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(文一) 已提交
58
}