UNPKG

jira-cli

Version:
71 lines (70 loc) 1.67 kB
{ "name": "jira-cli", "description": "A JIRA Command Line Interface", "version": "3.0.0", "author": "Dan Shumaker <danpshumaker@gmail.com> (https://danshumaker.github.io/)", "contributors": [], "scripts": { "test": "jest", "test:e2e": "bin/tests.sh && exit 1", "patch-release": "npm version patch && npm publish && git push --follow-tags", "dev": "node bin/jira.js", "start": "npm i -g && jira", "clean:dev": "rimraf -rf ./.jira-cli", "clean": "rimraf -rf ~/.jira-cli && npm uninstall jira-cli -g", "lint": "eslint . --ext .js,.ts --ignore-path .gitignore", "fix": "npm run lint -- --fix" }, "dependencies": { "@types/jest": "^25.2.3", "alasql": "^1.7.3", "async": "^2.6.3", "cheerio": "^1.0.0-rc.3", "cli-table": "^0.2.0", "commander": "~2.20.1", "dargs": "^5.1.0", "fs": "0.0.1-security", "jira-connector": "^3.1.0", "lodash.set": "^4.3.2", "moment": "^2.29.1", "nodemailer": "^6.4.14", "openurl": "^1.1.0", "promptly": "^3.2.0", "qs": "^6.9.4", "superagent": "~5.3.1", "underscore": "^1.11.0" }, "engines": { "node": ">= 4" }, "keywords": [ "jira", "api", "client", "command", "cli", "tool", "command-line-junky" ], "license": "MIT", "repository": { "type": "git", "url": "git://github.com/danshumaker/jira-cli.git" }, "bin": { "jira": "bin/jira.js" }, "husky": { "hooks": { "pre-push": "npm test" } }, "devDependencies": { "ava": "^3.13.0", "eslint": "^6.8.0", "husky": "^4.3.0", "jest": "^25.3.0", "rimraf": "^3.0.2", "testr": "0.0.5" } }