forked from tebriel/jira-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.1 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-cli",
"description": "Command line interface for Jira",
"version": "0.2.8",
"homepage": "https://tebriel.github.com/jira-cli",
"author": {
"name": "Chris Moultrie",
"email": "tebriel@gmail.com"
},
"bin": {
"jira": "./lib/jira.js"
},
"repository": {
"type": "git",
"url": "git://github.com/tebriel/jira-cli.git"
},
"bugs": {
"url": "https://github.com/tebriel/jira-cli/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/tebriel/jira-cli/blob/master/LICENSE-MIT"
}
],
"main": "lib/jira-cli",
"engines": {
"node": ">= 0.6.0"
},
"scripts": {
"test": "grunt test"
},
"dependencies": {
"jira": ">= 0.0.5",
"optimist": "~0.3.5",
"ansi-color": "~0.2.1",
"wordwrap": "0.0.2"
},
"devDependencies": {
"grunt": "~0.3.17",
"grunt-contrib-coffee": "~0.3.2",
"grunt-jasmine-node": "0.0.4",
"docco": "~0.4.0",
"grunt-docco": "~0.1.2",
"grunt-bump": "0.0.1",
"grunt-coffeelint": "0.0.3"
},
"keywords": [
"jira",
"awesomeness",
"win",
"whisky"
]
}