mirror of
https://github.com/wahyd4/vuepress.git
synced 2026-08-18 01:35:55 +10:00
63 lines
1.6 KiB
JSON
63 lines
1.6 KiB
JSON
{
|
|
"private": true,
|
|
"workspaces": [
|
|
"packages/@vuepress/*",
|
|
"packages/vuepress",
|
|
"packages/docs"
|
|
],
|
|
"description": "Minimalistic doc generator with Vue component based layout system",
|
|
"scripts": {
|
|
"boot": "node scripts/bootstrap.js",
|
|
"dev": "yarn workspace docs dev",
|
|
"build": "yarn workspace docs build",
|
|
"dev:blog-example": "yarn workspace blog-example dev",
|
|
"build:blog-example": "yarn workspace blog-example build",
|
|
"lint": "eslint --fix packages/**/*.js packages/**/*.vue packages/**/bin/*",
|
|
"release": "yarn --pure-lockfile && node scripts/release.js",
|
|
"changelog": "node scripts/genChangelog.js run",
|
|
"test": "node scripts/test.js"
|
|
},
|
|
"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": {
|
|
"*.{js,vue}": [
|
|
"eslint --fix",
|
|
"git add"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"conventional-changelog-cli": "^1.3.22",
|
|
"eslint": "^4.19.1",
|
|
"eslint-plugin-jest": "^21.15.1",
|
|
"eslint-plugin-vue-libs": "^3.0.0",
|
|
"lerna": "^2.11.0",
|
|
"lint-staged": "^7.0.4",
|
|
"minimist": "^1.2.0",
|
|
"yorkie": "^1.0.3",
|
|
"inquirer": "^6.2.0",
|
|
"@vue/conventional-changelog": "^0.1.1"
|
|
},
|
|
"engines": {
|
|
"node": ">=8"
|
|
},
|
|
"browserslist": [
|
|
">1%"
|
|
]
|
|
}
|