UNPKG

danger-plugin-no-console

Version:

Danger plugin to prevent merging code that still has `console.log`s inside it.

69 lines (68 loc) 1.8 kB
{ "name": "danger-plugin-no-console", "description": "Danger plugin to prevent merging code that still has `console.log`s inside it.", "author": { "name": "Max Stoiber", "email": "contact@mxstbr.com" }, "repository": { "type": "git", "url": "https://github.com/withspectrum/danger-plugin-no-console.git" }, "bugs": { "url": "https://github.com/withspectrum/danger-plugin-no-console/issues" }, "homepage": "https://github.com/withspectrum/danger-plugin-no-console#readme", "keywords": [ "danger", "danger-plugin", "" ], "version": "1.1.2", "main": "dist/index.js", "types": "types/index.d.ts", "scripts": { "precommit": "lint-staged", "commit": "git-cz", "commitmsg": "validate-commit-msg", "build": "babel src --out-dir dist --ignore *.test.js", "test": "jest", "predocs": "rm -rf docs/", "docs": "esdoc -c .esdoc.json", "prepublish": "npm run build", "semantic-release": "semantic-release pre && npm publish && semantic-release post" }, "license": "MIT", "engines": { "node": ">=4.0.0" }, "devDependencies": { "babel-cli": "^6.24.1", "babel-jest": "^20.0.1", "babel-preset-env": "^1.4.0", "typings-tester": "^0.2.2", "commitizen": "^2.9.6", "cz-conventional-changelog": "^2.0.0", "husky": "^0.13.3", "jest": "^20.0.1", "lint-staged": "^3.4.1", "prettier": "^1.3.1", "semantic-release": "^6.3.6", "typescript": "^2.3.2", "validate-commit-msg": "^2.12.1" }, "optionalDependencies": { "esdoc": "^0.5.2" }, "config": { "commitizen": { "path": "cz-conventional-changelog" } }, "lint-staged": { "*.js": [ "prettier --single-quote --trailing-comma=all --no-semi --write", "git add" ] } }