-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
70 lines (70 loc) · 1.63 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "jira-cli",
"description": "A JIRA Command Line Interface",
"version": "2.7.0",
"author": "Dan Shumaker <[email protected]> (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"
}
}