-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
54 lines (54 loc) · 1.07 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
{
"name": "jira-node-cli",
"version": "1.2.0",
"description": "JIRA command line interface",
"main": "index.js",
"scripts": {
"test:unit": "mocha",
"test": "nyc --reporter=text mocha",
"check-coverage": "nyc check-coverage --lines 62",
"lint": "eslint . --ext js"
},
"dependencies": {
"axios": "^0.17.1",
"clipboardy": "^1.2.2",
"colors": "^1.1.2",
"commander": "^2.13.0",
"inquirer": "^5.1.0",
"moment": "^2.20.1",
"opener": "^1.5.1"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.19.1",
"mocha": "^5.0.1",
"nyc": "^11.6.0",
"sinon": "^4.4.4"
},
"bin": {
"jira": "bin/jira.js"
},
"author": {
"name": "Łukasz Usarz",
"email": "[email protected]"
},
"license": "MIT",
"keywords": [
"jira",
"cli",
"node",
"issues",
"command",
"line"
],
"engines": {
"node": ">= 8"
},
"repository": {
"type": "git",
"url": "git://github.com/lusarz/jira-node-cli.git"
},
"bugs": {
"url": "https://github.com/lusarz/jira-node-cli/issues"
}
}