branch-remover
Version:
A small application for quickly removing unnecessary branches from GitHub.
81 lines (80 loc) • 2.39 kB
JSON
{
"name": "branch-remover",
"version": "1.1.0",
"description": "A small application for quickly removing unnecessary branches from GitHub.",
"author": "Alexey Nemiro <alexey.nemiro@clearscale.com>",
"license": "MIT",
"keywords": [
"cli",
"github",
"automation",
"branch remover",
"branches",
"remover",
"cleaner",
"cleaning",
"removing",
"service"
],
"homepage": "https://github.com/sfm-tools/branch-remover#readme",
"bugs": {
"url": "https://github.com/sfm-tools/branch-remover/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/sfm-tools/branch-remover.git"
},
"engines": {
"node": ">=12.18.3"
},
"main": "dist/index.js",
"bin": "dist/index.js",
"scripts": {
"start": "node ./node_modules/ts-node/dist/bin.js src/index.ts",
"build": "rimraf dist/ && tsc",
"test": "mocha -r ts-node/register tests/*.ts tests/**/*.ts --timeout=30000",
"nyc": "nyc --reporter=html mocha -r ts-node/register tests/*.ts tests/**/*.ts --timeout=30000",
"coverage": "nyc --reporter=text-lcov mocha -r ts-node/register tests/*.ts tests/**/*.ts | ./node_modules/coveralls/bin/coveralls.js",
"eslint": "eslint src/ --ext ts"
},
"dependencies": {
"@octokit/rest": "18.9.0",
"axios": "0.21.4",
"chalk": "4.1.2",
"cli-table": "0.3.6",
"humanize-duration": "3.27.0",
"minimist": "1.2.5",
"node-cache": "5.1.2",
"parse-duration": "1.0.0",
"string-format": "2.0.0",
"trim-character": "2.0.1",
"winston": "3.3.3"
},
"devDependencies": {
"@types/chai": "4.2.21",
"@types/chai-as-promised": "7.1.4",
"@types/mocha": "9.0.0",
"@types/node": "16.4.10",
"@types/sinon": "10.0.3",
"@types/string-format": "2.0.0",
"@typescript-eslint/eslint-plugin": "4.29.0",
"@typescript-eslint/parser": "4.29.0",
"chai": "4.3.4",
"chai-as-promised": "7.1.1",
"coveralls": "3.1.1",
"eslint": "7.32.0",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-simple-import-sort": "7.0.0",
"eslint-plugin-sort-exports": "0.4.0",
"eslint-plugin-unused-imports": "1.1.2",
"faker": "5.5.3",
"memory-streams": "0.1.3",
"mocha": "9.0.3",
"mocha-lcov-reporter": "1.3.0",
"nyc": "15.1.0",
"rimraf": "3.0.2",
"sinon": "11.1.2",
"ts-node": "10.1.0",
"typescript": "4.3.5"
}
}