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",
E
Evan You 已提交
12
    "lint": "eslint 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 34 35 36 37 38 39 40 41 42
  "gitHooks": {
    "pre-commit": "lint-staged"
  },
  "lint-staged": {
    "lib/**/*.js": [
      "eslint --fix",
      "git add"
    ],
    "test/**/*.js": [
      "eslint --fix",
      "git add"
    ]
  },
E
init  
Evan You 已提交
43
  "dependencies": {
E
wip  
Evan You 已提交
44
    "autoprefixer": "^8.2.0",
45 46
    "buble": "^0.19.3",
    "buble-loader": "^0.5.0",
E
Evan You 已提交
47
    "chalk": "^2.3.2",
E
tweaks  
Evan You 已提交
48
    "chokidar": "^2.0.3",
E
cli  
Evan You 已提交
49
    "commander": "^2.15.1",
E
Evan You 已提交
50
    "connect-history-api-fallback": "^1.5.0",
E
Evan You 已提交
51
    "copy-webpack-plugin": "^4.5.1",
E
init  
Evan You 已提交
52
    "css-loader": "^0.28.11",
53
    "diacritics": "^1.3.0",
54
    "docsearch.js": "^2.5.2",
55
    "es6-promise": "^4.2.4",
56
    "escape-html": "^1.0.3",
E
init  
Evan You 已提交
57
    "file-loader": "^1.1.11",
E
Evan You 已提交
58
    "fs-extra": "^5.0.0",
E
init  
Evan You 已提交
59
    "globby": "^8.0.1",
60
    "gray-matter": "^4.0.1",
A
Aliex Leung 已提交
61
    "js-yaml": "^3.11.0",
E
Evan You 已提交
62
    "koa-connect": "^2.0.1",
E
Evan You 已提交
63
    "koa-mount": "^3.0.0",
E
Evan You 已提交
64
    "koa-static": "^4.0.2",
E
Evan You 已提交
65
    "loader-utils": "^1.1.0",
E
Evan You 已提交
66
    "lru-cache": "^4.1.2",
E
init  
Evan You 已提交
67
    "markdown-it": "^8.4.1",
E
Evan You 已提交
68
    "markdown-it-anchor": "^4.0.0",
E
Evan You 已提交
69
    "markdown-it-container": "^2.0.0",
E
Evan You 已提交
70
    "markdown-it-emoji": "^1.4.0",
E
Evan You 已提交
71
    "markdown-it-table-of-contents": "^0.3.3",
E
init  
Evan You 已提交
72
    "mini-css-extract-plugin": "^0.4.0",
E
Evan You 已提交
73
    "nprogress": "^0.2.0",
74
    "object-assign": "^4.1.1",
E
Evan You 已提交
75
    "optimize-css-assets-webpack-plugin": "^4.0.0",
76
    "portfinder": "^1.0.13",
E
wip  
Evan You 已提交
77
    "postcss-loader": "^2.1.3",
E
Evan You 已提交
78
    "prismjs": "^1.13.0",
E
Evan You 已提交
79
    "register-service-worker": "^1.2.0",
80
    "semver": "^5.5.0",
E
Evan You 已提交
81 82
    "stylus": "^0.54.5",
    "stylus-loader": "^3.0.2",
83
    "toml": "^2.3.3",
E
init  
Evan You 已提交
84 85
    "url-loader": "^1.0.1",
    "vue": "^2.5.16",
86
    "vue-loader": "^15.0.0-rc.1",
E
Evan You 已提交
87
    "vue-router": "^3.0.1",
E
init  
Evan You 已提交
88 89
    "vue-server-renderer": "^2.5.16",
    "vue-template-compiler": "^2.5.16",
90 91 92
    "vuepress-html-webpack-plugin": "^3.2.0",
    "webpack": "^4.5.0",
    "webpack-chain": "^4.6.0",
E
Evan You 已提交
93
    "webpack-merge": "^4.1.2",
E
Evan You 已提交
94 95
    "webpack-serve": "^0.3.1",
    "webpackbar": "^2.6.1",
96
    "workbox-build": "^3.1.0"
E
cli  
Evan You 已提交
97
  },
E
Evan You 已提交
98
  "devDependencies": {
E
Evan You 已提交
99
    "conventional-changelog": "^1.1.23",
E
Evan You 已提交
100 101 102
    "eslint": "^4.19.1",
    "eslint-plugin-vue-libs": "^2.1.0",
    "lint-staged": "^7.0.4",
103
    "vuepress-theme-vue": "^1.0.0",
E
Evan You 已提交
104 105
    "yorkie": "^1.0.3"
  },
E
cli  
Evan You 已提交
106 107
  "engines": {
    "node": ">=8"
E
Evan You 已提交
108 109 110 111
  },
  "browserslist": [
    ">1%"
  ]
E
init  
Evan You 已提交
112
}