package.json 2.9 KB
Newer Older
E
init  
Evan You 已提交
1 2
{
  "name": "vuepress",
E
0.8.4  
Evan You 已提交
3
  "version": "0.8.4",
E
init  
Evan You 已提交
4 5
  "description": "Minimalistic doc generator with Vue component based layout system",
  "main": "lib/index.js",
E
wip  
Evan You 已提交
6 7 8
  "bin": {
    "vuepress": "bin/vuepress.js"
  },
E
init  
Evan You 已提交
9
  "scripts": {
E
cli  
Evan You 已提交
10
    "dev": "node bin/vuepress dev docs",
E
lint  
Evan You 已提交
11
    "build": "node bin/vuepress build docs",
12
    "lint": "eslint --fix --ext .js,.vue bin/ lib/ test/",
E
Evan You 已提交
13
    "prepublishOnly": "conventional-changelog -p angular -r 2 -i CHANGELOG.md -s"
E
init  
Evan You 已提交
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/vuejs/vuepress.git"
  },
  "keywords": [
    "documentation",
    "vue",
    "generator"
  ],
  "author": "Evan You",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/vuejs/vuepress/issues"
  },
  "homepage": "https://github.com/vuejs/vuepress#readme",
E
Evan You 已提交
30 31 32 33
  "gitHooks": {
    "pre-commit": "lint-staged"
  },
  "lint-staged": {
34
    "*.{js,vue}": [
E
Evan You 已提交
35 36 37 38
      "eslint --fix",
      "git add"
    ]
  },
E
init  
Evan You 已提交
39
  "dependencies": {
E
wip  
Evan You 已提交
40
    "autoprefixer": "^8.2.0",
41 42
    "buble": "^0.19.3",
    "buble-loader": "^0.5.0",
E
Evan You 已提交
43
    "chalk": "^2.3.2",
E
tweaks  
Evan You 已提交
44
    "chokidar": "^2.0.3",
E
cli  
Evan You 已提交
45
    "commander": "^2.15.1",
E
Evan You 已提交
46
    "connect-history-api-fallback": "^1.5.0",
E
Evan You 已提交
47
    "copy-webpack-plugin": "^4.5.1",
E
init  
Evan You 已提交
48
    "css-loader": "^0.28.11",
49
    "diacritics": "^1.3.0",
50
    "docsearch.js": "^2.5.2",
51
    "es6-promise": "^4.2.4",
52
    "escape-html": "^1.0.3",
E
init  
Evan You 已提交
53
    "file-loader": "^1.1.11",
E
Evan You 已提交
54
    "fs-extra": "^5.0.0",
E
init  
Evan You 已提交
55
    "globby": "^8.0.1",
56
    "gray-matter": "^4.0.1",
A
Aliex Leung 已提交
57
    "js-yaml": "^3.11.0",
E
Evan You 已提交
58
    "koa-connect": "^2.0.1",
E
Evan You 已提交
59
    "koa-mount": "^3.0.0",
E
Evan You 已提交
60
    "koa-static": "^4.0.2",
E
Evan You 已提交
61
    "loader-utils": "^1.1.0",
62
    "lodash.throttle": "^4.1.1",
E
Evan You 已提交
63
    "lru-cache": "^4.1.2",
E
init  
Evan You 已提交
64
    "markdown-it": "^8.4.1",
E
Evan You 已提交
65
    "markdown-it-anchor": "^4.0.0",
E
Evan You 已提交
66
    "markdown-it-container": "^2.0.0",
E
Evan You 已提交
67
    "markdown-it-emoji": "^1.4.0",
E
Evan You 已提交
68
    "markdown-it-table-of-contents": "^0.3.3",
E
init  
Evan You 已提交
69
    "mini-css-extract-plugin": "^0.4.0",
E
Evan You 已提交
70
    "nprogress": "^0.2.0",
71
    "object-assign": "^4.1.1",
E
Evan You 已提交
72
    "optimize-css-assets-webpack-plugin": "^4.0.0",
73
    "portfinder": "^1.0.13",
E
wip  
Evan You 已提交
74
    "postcss-loader": "^2.1.3",
E
Evan You 已提交
75
    "prismjs": "^1.13.0",
E
Evan You 已提交
76
    "register-service-worker": "^1.2.0",
77
    "semver": "^5.5.0",
E
Evan You 已提交
78 79
    "stylus": "^0.54.5",
    "stylus-loader": "^3.0.2",
80
    "toml": "^2.3.3",
E
init  
Evan You 已提交
81 82
    "url-loader": "^1.0.1",
    "vue": "^2.5.16",
83
    "vue-loader": "^15.0.0-rc.1",
E
Evan You 已提交
84
    "vue-router": "^3.0.1",
E
init  
Evan You 已提交
85 86
    "vue-server-renderer": "^2.5.16",
    "vue-template-compiler": "^2.5.16",
87 88 89
    "vuepress-html-webpack-plugin": "^3.2.0",
    "webpack": "^4.5.0",
    "webpack-chain": "^4.6.0",
E
Evan You 已提交
90
    "webpack-merge": "^4.1.2",
E
Evan You 已提交
91 92
    "webpack-serve": "^0.3.1",
    "webpackbar": "^2.6.1",
93
    "workbox-build": "^3.1.0"
E
cli  
Evan You 已提交
94
  },
E
Evan You 已提交
95
  "devDependencies": {
E
Evan You 已提交
96
    "conventional-changelog": "^1.1.23",
E
Evan You 已提交
97
    "eslint": "^4.19.1",
98
    "eslint-plugin-vue-libs": "^3.0.0",
E
Evan You 已提交
99
    "lint-staged": "^7.0.4",
E
Evan You 已提交
100
    "vuepress-theme-vue": "^1.0.2",
E
Evan You 已提交
101 102
    "yorkie": "^1.0.3"
  },
E
cli  
Evan You 已提交
103 104
  "engines": {
    "node": ">=8"
E
Evan You 已提交
105 106 107 108
  },
  "browserslist": [
    ">1%"
  ]
E
init  
Evan You 已提交
109
}