-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.34 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.34 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
50
51
52
53
{
"name": "jira-cl",
"version": "1.2.2",
"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",
"docs": "hugo server --disableFastRender",
"docs-production": "hugo --cleanDestinationDir",
"prepublish": "npm run build"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"chalk": "^1.1.3",
"cli-table3": "^0.5.0",
"commander": "^2.20.0",
"fs-promise": "^1.0.0",
"hugo-bin": "^0.43.6",
"inquirer": "^6.3.1",
"jira-client": "^4.2.0",
"moment": "^2.19.3",
"opn": "^5.4.0",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"rimraf": "^2.5.4"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^5.6.1",
"watch": "^1.0.2"
}
}