Files
vuepress/package.json
T
2018-04-06 15:53:12 -04:00

93 lines
2.3 KiB
JSON

{
"name": "vuepress",
"version": "1.0.0",
"description": "Minimalistic doc generator with Vue component based layout system",
"main": "lib/index.js",
"bin": {
"vuepress": "bin/vuepress.js"
},
"scripts": {
"dev": "node bin/vuepress dev docs",
"build": "node bin/vuepress build docs",
"lint": "eslint bin lib test"
},
"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",
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"lib/**/*.js": [
"eslint --fix",
"git add"
],
"test/**/*.js": [
"eslint --fix",
"git add"
]
},
"dependencies": {
"autoprefixer": "^8.2.0",
"buble": "^0.19.3",
"buble-loader": "^0.5.0",
"chalk": "^2.3.2",
"chokidar": "^2.0.3",
"commander": "^2.15.1",
"connect-history-api-fallback": "^1.5.0",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.11",
"es6-promise": "^4.2.4",
"file-loader": "^1.1.11",
"globby": "^8.0.1",
"html-webpack-plugin": "^3.2.0",
"koa-connect": "^2.0.1",
"koa-static": "^4.0.2",
"loader-utils": "^1.1.0",
"markdown-it": "^8.4.1",
"markdown-it-anchor": "^4.0.0",
"markdown-it-container": "^2.0.0",
"markdown-it-emoji": "^1.4.0",
"markdown-it-table-of-contents": "^0.3.3",
"mini-css-extract-plugin": "^0.4.0",
"mkdirp": "^0.5.1",
"nprogress": "^0.2.0",
"object-assign": "^4.1.1",
"postcss-loader": "^2.1.3",
"prismjs": "^1.13.0",
"rimraf": "^2.6.2",
"url-loader": "^1.0.1",
"vue": "^2.5.16",
"vue-loader": "^15.0.0-beta.7",
"vue-router": "^3.0.1",
"vue-server-renderer": "^2.5.16",
"vue-template-compiler": "^2.5.16",
"webpack": "^4.4.1",
"webpack-chain": "^4.5.0",
"webpack-serve": "^0.3.1",
"webpackbar": "^2.6.1",
"yaml-front-matter": "^4.0.0"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-plugin-vue-libs": "^2.1.0",
"lint-staged": "^7.0.4",
"yorkie": "^1.0.3"
},
"engines": {
"node": ">=8"
}
}