-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.02 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
{
"name": "node-jira-worklog-cli",
"version": "1.5.0",
"description": "Node.js interactive command line tool to calculate and report Jira work logs",
"author": "George Raptis <[email protected]> (georapbox.github.io)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/georapbox/node-jira-worklog-cli.git"
},
"bugs": {
"url": "https://github.com/georapbox/node-jira-worklog-cli/issues"
},
"homepage": "https://github.com/georapbox/node-jira-worklog-cli#readme",
"keywords": [
"jira",
"worklog",
"node",
"cli",
"report"
],
"main": "./lib/index.js",
"bin": {
"node-jira-worklog-cli": "./lib/index.js"
},
"scripts": {
"start": "node .",
"lint": "eslint ./lib/*.js"
},
"engines": {
"node": ">=6.0.0",
"npm": ">=3.0.0"
},
"devDependencies": {
"eslint": "~3.17.1"
},
"dependencies": {
"bluebird": "~3.5.0",
"chalk": "~1.1.3",
"moment": "~2.17.1",
"tty-table": "~2.2.5",
"yargs": "~7.0.2"
}
}