forked from danshumaker/jira-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.59 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
{
"name": "jira-cli",
"description": "A JIRA Command Line Interface",
"version": "2.1.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.1",
"alasql": "^0.4.11",
"async": "^2.6.3",
"cheerio": "^1.0.0-rc.3",
"cli-table": "^0.2.0",
"commander": "~1.1.1",
"dargs": "^5.1.0",
"fs": "0.0.1-security",
"jira-connector": "^3.1.0",
"moment": "^2.24.0",
"nodemailer": "^6.4.6",
"openurl": "^1.1.0",
"qs": "~> 1.0.0",
"superagent": "~3.7.0",
"underscore": "^1.10.2"
},
"engines": {
"node": ">= 0.8"
},
"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.7.0",
"eslint": "^6.8.0",
"husky": "^4.2.5",
"jest": "^25.3.0",
"rimraf": "^3.0.2",
"testr": "0.0.5"
}
}