{ "name": "release-drafter-github-app", "version": "2.1.0", "description": "A GitHub app that bumps version numbers in readmes", "author": "Tim Lucas (https://github.com/toolmantim)", "license": "ISC", "repository": "toolmantim/release-drafter", "scripts": { "dev": "nodemon --exec \"npm start\"", "start": "probot run ./index.js", "now-start": "PRIVATE_KEY=$(echo $PRIVATE_KEY_BASE64 | base64 -d) npm start", "lint": "standard --fix", "test": "jest && standard", "test:watch": "jest --watch --notify --notifyMode=change --coverage", "postversion": "npm run test && git push && git push --tags && npm publish && npm run deploy && npm run open-releases", "open-releases": "open \"$(node -e 'console.log(`https://github.com/${require(\"./package.json\").repository}/releases`)')\"", "deploy": "now && now alias" }, "dependencies": { "compare-versions": "3.3.1", "probot": "7.1.0", "probot-config": "0.2.0", "request": "2.88.0" }, "devDependencies": { "jest": "23.5.0", "nock": "9.6.1", "nodemon": "1.18.3", "smee-client": "1.0.2", "standard": "12.0.0" }, "engines": { "node": ">= 8.3.0" }, "standard": { "env": [ "jest" ] }, "jest": { "collectCoverage": true, "collectCoverageFrom": [ "index.js", "lib/**" ] } }