UNPKG

github-mergerine

Version:

GitHub bot to automatically merge PRs matching certain criteria.

69 lines (68 loc) 2.22 kB
{ "name": "github-mergerine", "version": "1.6.1", "description": "GitHub bot to automatically merge PRs matching certain criteria.", "main": "dist/index.js", "bin": { "mergerine": "dist/index.js", "github-mergerine": "dist/index.js" }, "repository": "mergerine/github-mergerine", "license": "MIT", "scripts": { "build": "webpack -p --env.production", "start": "babel-node src", "start:dist": "node dist", "lint": "yarn prettier-check && yarn eslint", "eslint": "yarn eslint:only src", "eslint:only": "eslint", "prettier-check": "yarn prettier-check:only '**/*.{js,json,md}'", "prettier-check:only": "prettier-check", "format": "yarn format:only '**/*.{js,json,md}'", "format:only": "prettier --write", "test": "lint-staged && MERGERINE_CONFIG=mergerine.example.json jest", "test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand", "commitmsg": "commitlint -e $GIT_PARAMS", "precommit": "yarn test", "prepush": "yarn test", "prepublishOnly": "yarn build && yarn test" }, "devDependencies": { "@commitlint/cli": "^6.1.0", "@commitlint/config-conventional": "^6.1.0", "babel-cli": "^6.26.0", "babel-core": "^6.26.0", "babel-loader": "^7.1.2", "babel-plugin-transform-object-rest-spread": "^6.26.0", "babel-preset-env": "^1.6.1", "eslint": "^4.13.1", "eslint-config-standard": "^11.0.0-beta.0", "eslint-plugin-import": "^2.8.0", "eslint-plugin-node": "^5.2.1", "eslint-plugin-promise": "^3.6.0", "eslint-plugin-standard": "^3.0.1", "husky": "^0.14.3", "jest": "^21.2.1", "lint-staged": "^6.1.0", "nock": "^9.1.5", "prettier": "^1.10.2", "prettier-check": "^2.0.0", "semantic-release": "^12.4.1", "shebang-loader": "^0.0.1", "webpack": "^3.10.0", "webpack-node-externals": "^1.6.0" }, "dependencies": { "axios": "^0.17.1", "babel-polyfill": "^6.26.0", "date-fns": "^1.29.0", "debug": "^3.1.0", "fetch-paginate": "^1.0.3", "lodash": "^4.17.4", "node-fetch": "^2.1.2", "parse-github-url": "^1.0.2", "parse-link-header": "^1.0.1", "timestring": "^5.0.1", "yargs": "^11.0.0" } }