vuepress-theme-reco/package.json

62 lines
1.5 KiB
JSON
Raw Normal View History

2019-04-15 10:35:40 +08:00
{
"name": "vuepress-theme-reco",
2020-04-03 11:06:41 +08:00
"private": true,
"license": "MIT",
2020-04-03 19:30:07 +08:00
"main": "index.js",
"workspaces": [
"packages/vuepress-theme-reco",
"packages/@vuepress-reco/*"
],
2019-04-15 10:35:40 +08:00
"scripts": {
2020-04-03 19:30:07 +08:00
"bootstrap": "lerna bootstrap",
"build": "vuepress build example",
2020-04-03 19:30:07 +08:00
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"commit": "git add . && git-cz",
"dev": "vuepress dev example",
2019-09-20 13:54:13 +08:00
"eslint-ext": "eslint --ext .js,.vue ./",
2020-04-03 11:06:41 +08:00
"eslint-fix": "eslint --fix --ext .js,.vue ./",
2020-04-03 19:30:07 +08:00
"prepublish": "lerna publish --dist-tag next",
"publish": "yarn changelog && lerna publish",
"push": "yarn commit && git push"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,ts,vue}": [
"eslint --fix --ext .js,.vue ./",
"git add"
],
"package.json": [
"sort-package-json",
"git add"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
2019-04-15 10:35:40 +08:00
},
2019-09-20 13:54:13 +08:00
"devDependencies": {
2020-04-03 19:30:07 +08:00
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
2020-04-03 11:06:41 +08:00
"babel-eslint": "^10.1.0",
2020-04-03 19:30:07 +08:00
"commitizen": "^4.0.3",
"conventional-changelog-cli": "^2.0.31",
"cz-customizable": "^6.2.0",
2020-04-03 11:06:41 +08:00
"eslint": "^6.8.0",
"eslint-plugin-vue": "^6.2.2",
2020-04-03 19:30:07 +08:00
"husky": "^4.2.3",
2020-04-03 11:06:41 +08:00
"lerna": "^3.20.2",
2020-04-03 19:30:07 +08:00
"lint-staged": "^10.1.1",
"sort-package-json": "^1.40.0",
2020-04-03 11:06:41 +08:00
"vuepress": "^1.4.0"
},
"publishConfig": {
"access": "public"
2019-04-15 10:35:40 +08:00
}
2019-09-20 13:54:13 +08:00
}