microsoft-capitalize
Version:
Sentence-style capitalization in titles and headings based on Microsoft Styleguide
90 lines (89 loc) • 2.81 kB
JSON
{
"name": "microsoft-capitalize",
"description": "Sentence-style capitalization in titles and headings based on Microsoft Styleguide",
"homepage": "https://github.com/Kikobeats/microsoft-capitalize",
"version": "1.0.8",
"main": "src/index.js",
"author": {
"email": "josefrancisco.verdu@gmail.com",
"name": "Kiko Beats",
"url": "https://kikobeats.com"
},
"contributors": [],
"repository": {
"type": "git",
"url": "git+https://github.com/Kikobeats/microsoft-capitalize.git"
},
"bugs": {
"url": "https://github.com/Kikobeats/microsoft-capitalize/issues"
},
"keywords": [
"capitalization",
"capitalize",
"microsoft",
"style",
"styleguide",
"title",
"titleize"
],
"devDependencies": {
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"ava": "latest",
"c8": "latest",
"ci-publish": "latest",
"conventional-changelog-cli": "latest",
"finepack": "latest",
"git-authors-cli": "latest",
"github-generate-release": "latest",
"nano-staged": "latest",
"simple-git-hooks": "latest",
"standard": "latest",
"standard-version": "latest"
},
"engines": {
"node": ">= 10"
},
"files": [
"src"
],
"scripts": {
"clean": "rm -rf node_modules",
"contributors": "(npx git-authors-cli && npx finepack && git add package.json && git commit -m 'build: contributors' --no-verify) || true",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "standard",
"postrelease": "npm run release:tags && npm run release:github && (ci-publish || npm publish --access=public)",
"pretest": "npm run lint",
"release": "pnpm run release:version && pnpm run release:changelog && pnpm run release:commit && pnpm run release:tag",
"release:changelog": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -s",
"release:commit": "git add package.json CHANGELOG.md && git commit -m \"chore(release): $(node -p \"require('./package.json').version\")\"",
"release:github": "github-generate-release",
"release:tag": "git tag -a v$(node -p \"require('./package.json').version\") -m \"v$(node -p \"require('./package.json').version\")\"",
"release:tags": "git push origin HEAD:master --follow-tags",
"release:version": "standard-version --skip.changelog --skip.commit --skip.tag",
"test": "c8 ava"
},
"license": "MIT",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-line-length": [
0
]
}
},
"nano-staged": {
"*.js": [
"standard --fix"
],
"package.json": [
"finepack"
]
},
"simple-git-hooks": {
"commit-msg": "npx commitlint --edit",
"pre-commit": "npx nano-staged"
}
}