forked from foxythemes/jira-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.19 KB
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
{
"name": "jira-cl",
"version": "1.1.1",
"description": "A Jira command line client",
"author": "Eduardo Henao & Miguel Henao",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/foxythemes/jira-cli.git"
},
"main": "lib/index.js",
"files": [
"lib"
],
"bin": {
"jira": "./lib/index.js"
},
"scripts": {
"build": "rimraf lib && babel src --out-dir lib",
"dev": "watch \"npm run build\" src",
"lint": "eslint ./",
"test": "npm run lint -s",
"prepublish": "npm run build"
},
"dependencies": {
"babel-runtime": "^6.23.0",
"chalk": "^1.1.3",
"cli-table2": "^0.2.0",
"commander": "^2.9.0",
"fs-promise": "^1.0.0",
"inquirer": "^1.2.3",
"jira-client": "^4.2.0",
"moment": "^2.19.3",
"opn": "^4.0.2",
"request-promise": "^4.2.2",
"rimraf": "^2.5.4"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.20.0",
"babel-eslint": "^7.1.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"eslint": "^3.12.0",
"watch": "^1.0.1"
}
}