UNPKG

jsonlint-cli

Version:
71 lines (70 loc) 2.48 kB
{ "name": "jsonlint-cli", "version": "1.0.1", "description": "cli wrapper for jsonlint", "main": "index.js", "scripts": { "commit": "git-cz", "commitmsg": "conventional-changelog-lint -e", "changelog": "conventional-changelog --preset angular --infile changelog.md --same-file --output-unreleased", "push": "git push && git push --tags && hub release create \"v$(cat .git/RELEASE_VERSION.tmp)\" --message=\"v$(cat .git/RELEASE_VERSION.tmp)\n$(cat .git/COMMITMSG.tmp)\" && npm publish && rm .git/RELEASE_VERSION.tmp && rm .git/COMMITMSG.tmp", "release": "npm version $(conventional-recommended-bump -p angular)", "test": "parallelshell \"eslint index.js\" \"node index.js **/*.json *.json\" ", "preversion": "npm test", "version": "npm run changelog && git add . && echo \"$(conventional-changelog -p angular)\" > .git/COMMITMSG.tmp", "postversion": "echo $(git log -1 --pretty=%B HEAD^..HEAD) > .git/RELEASE_VERSION.tmp && git tag -d v$(cat .git/RELEASE_VERSION.tmp) && git commit --amend -m \"chore(release): $(cat .git/RELEASE_VERSION.tmp)\n$(cat .git/COMMITMSG.tmp)\" && git tag -a v$(cat .git/RELEASE_VERSION.tmp) -m \"$(cat .git/COMMITMSG.tmp)\"" }, "config": { "commitizen": { "path": "cz-conventional-changelog-lint" } }, "bin": { "jsonlint-cli": "./index.js" }, "repository": { "type": "git", "url": "git+https://github.com/marionebl/jsonlint-cli.git" }, "keywords": [ "jsonlint", "cli", "jsonschema" ], "author": { "name": "Mario Nebl", "email": "hello@herebecode.com" }, "license": "MIT", "bugs": { "url": "https://github.com/marionebl/jsonlint-cli/issues" }, "homepage": "https://github.com/marionebl/jsonlint-cli#readme", "devDependencies": { "commitizen": "2.7.2", "conventional-changelog-cli": "1.0.0", "conventional-changelog-lint": "0.3.2", "conventional-recommended-bump": "0.1.0", "cz-conventional-changelog-lint": "0.1.3", "eslint": "1.10.3", "eslint-config-xo": "0.9.2", "husky": "0.11.3", "parallelshell": "2.0.0" }, "dependencies": { "cli-rc": "1.0.12", "core-js": "2.1.5", "denodeify": "1.2.1", "get-stdin": "5.0.1", "globby": "4.0.0", "isomorphic-fetch": "2.2.1", "jjv": "1.0.2", "jsonlint": "1.6.2", "lodash": "4.6.1", "meow": "3.7.0", "minimatch": "3.0.0", "mkdirp": "0.5.1", "omni-fetch": "0.1.0", "path-exists": "2.1.0" } }