UNPKG

github-mergerine

Version:

GitHub bot to automatically merge PRs matching certain criteria.

74 lines (73 loc) 2.25 kB
{ "name": "github-mergerine", "version": "1.15.1", "description": "GitHub bot to automatically merge PRs matching certain criteria.", "main": "dist/main.js", "bin": { "mergerine": "dist/main.js", "github-mergerine": "dist/main.js" }, "repository": "mergerine/github-mergerine", "license": "MIT", "scripts": { "build": "webpack", "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", "prepublishOnly": "yarn build && yarn test" }, "husky": { "hooks": { "pre-commit": "yarn test", "pre-push": "yarn test" } }, "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", "@babel/plugin-transform-runtime": "^7.12.1", "@babel/preset-env": "^7.12.1", "@babel/register": "^7.12.1", "@babel/runtime": "^7.12.5", "babel-loader": "^8.2.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": "^4.3.0", "jest": "^26.6.3", "lint-staged": "^6.1.0", "nock": "^9.1.5", "prettier": "^1.10.2", "prettier-check": "^2.0.0", "webpack": "^5.4.0", "webpack-cli": "^4.2.0", "webpack-node-externals": "^2.5.2" }, "dependencies": { "@commitlint/config-conventional": "^11.0.0", "@commitlint/lint": "^11.0.0", "@commitlint/load": "^11.0.0", "date-fns": "^1.29.0", "debug": "^3.1.0", "delay": "^4.1.0", "express": "^4.16.4", "fetch-paginate": "^1.1.2", "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": "^16.1.0" } }