UNPKG

dont-break

Version:

Checks if the current version of your package would break dependent projects

100 lines 2.5 kB
{ "name": "dont-break", "description": "Checks if the current version of your package would break dependent projects", "version": "1.13.4", "author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>", "bin": { "dont-break": "./bin/dont-break" }, "bugs": { "url": "https://github.com/bahmutov/dont-break/issues" }, "config": { "pre-git": { "commit-msg": "simple", "pre-commit": [ "npm run mocha", "npm test" ], "pre-push": [ "npm run e2e", "npm run size" ], "post-merge": [] } }, "contributors": [], "dependencies": { "chdir-promise": "0.6.2", "check-more-types": "2.24.0", "commander": "2.15.1", "debug": "3.1.0", "fs-extra": "^3.0.1", "ggit": "2.4.2", "hr": "0.1.3", "lazy-ass": "1.6.0", "lodash": "4.17.10", "mkdirp": "^0.5.1", "npm-registry": "0.1.13", "npm-utils": "1.14.1", "os-tmpdir": "1.0.2", "q": "2.0.3", "quote": "0.4.0", "rimraf": "2.6.2", "strip-json-comments": "2.0.1", "top-dependents": "1.0.0", "update-notifier": "2.5.0" }, "devDependencies": { "git-issues": "1.3.1", "github-post-release": "1.13.1", "if-node-version": "^1.1.1", "matchdep": "1.0.1", "mocha": "3.5.3", "next-update-travis": "^1.7.1", "pre-git": "3.17.1", "semantic-release": "^6.3.6", "simple-commit-message": "3.3.2", "standard": "10.0.3" }, "engines": { "node": ">= 0.12.0", "npm": ">= 3.0.0" }, "files": [ "bin", "index.js", "src/*.js", "!src/*-spec.js" ], "homepage": "https://github.com/bahmutov/dont-break", "keywords": [ "check", "dependency", "semver", "test", "update" ], "license": "MIT", "main": "index.js", "repository": { "type": "git", "url": "https://github.com/bahmutov/dont-break.git" }, "scripts": { "issues": "git-issues", "lint": "standard --verbose --fix bin/*.js src/*.js", "mocha": "mocha src/**/*-spec.js", "pretest": "npm run lint", "semantic-release": "semantic-release pre && npm publish && semantic-release post", "show-help": "./bin/dont-break --help", "size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";", "test": "npm run show-help", "test-empty": "node src/test/run-dont-break.js", "e2e": "./test/e2e.sh" }, "release": { "analyzeCommits": "simple-commit-message", "generateNotes": "github-post-release" } }