mirror of
https://github.com/wahyd4/vuepress.git
synced 2026-08-15 16:25:52 +10:00
59 lines
1.4 KiB
JSON
59 lines
1.4 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": "lerna exec --scope docs -- yarn dev",
|
|
"build": "lerna exec --scope docs -- yarn build",
|
|
"lint": "eslint --fix packages/**/*.js packages/**/*.vue packages/**/bin/*",
|
|
"prepublishOnly": "conventional-changelog -p angular -r 2 -i CHANGELOG.md -s",
|
|
"release": "/bin/bash scripts/release.sh",
|
|
"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"
|
|
},
|
|
"engines": {
|
|
"node": ">=8"
|
|
},
|
|
"browserslist": [
|
|
">1%"
|
|
]
|
|
}
|