{ "private": true, "license": "MIT", "author": { "name": "Pedro Nauck", "email": "pedronauck@gmail.com", "url": "https://github.com/pedronauck" }, "homepage": "https://docz.site", "bugs": { "url": "https://github.com/pedronauck/docz/issues" }, "repository": { "type": "git", "url": "https://github.com/pedronauck/docz.git" }, "scripts": { "clean": "lerna clean", "bs": "lerna bootstrap", "packages": "run-s packages:*", "packages:fix": "lerna run fix && echo", "packages:lint": "lerna run tslint", "packages:build": "lerna run build --ignore docz-example-*", "prerelease": "yarn run packages", "release": "lerna publish --conventional-commits", "release:beta": "yarn release --npm-tag=beta --preid=beta", "precommit": "lint-staged", "commit": "git-cz", "contributors:add": "all-contributors add", "contributors:generate": "all-contributors generate" }, "devDependencies": { "@commitlint/cli": "^7.2.1", "@commitlint/config-conventional": "^7.1.2", "@commitlint/config-lerna-scopes": "^7.2.1", "all-contributors-cli": "^5.4.1", "commitizen": "^3.0.4", "del": "^3.0.0", "husky": "^1.1.2", "lerna": "3.4.3", "libundler": "^1.7.6", "lint-staged": "^8.0.4", "npm-run-all": "^4.1.3", "prettier": "^1.14.2", "trash-cli": "^1.4.0", "tslint": "^5.11.0", "tslint-config-prettier": "^1.15.0", "typescript": "^3.1.4" }, "workspaces": [ "packages/*", "examples/*" ], "commitlint": { "extends": [ "@commitlint/config-conventional", "@commitlint/config-lerna-scopes" ] }, "lint-staged": { "*.{js,jsx,ts,tsx,md,mdx}": [ "yarn packages:fix", "git add" ] }, "husky": { "hooks": { "pre-commit": "yarn packages:lint", "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" } } }