-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.3 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
{
"name": "jicli",
"version": "0.4.0",
"description": "Jira CLI focused on flexible ticket creation",
"main": "index.js",
"bin": {
"jicli": "./bin/jicli.js"
},
"dependencies": {
"app-root-path": "^2.0.1",
"chalk": "^1.1.3",
"colors": "^1.1.2",
"commander": "^2.9.0",
"debug": "^2.6.3",
"find-config": "^1.0.0",
"inquirer": "^1.2.3",
"jira-client": "^4.2.0",
"lowdb": "^0.16.0",
"q": "^1.5.0",
"request-promise": "^4.2.0",
"simple-node-logger": "^0.93.17"
},
"devDependencies": {
"ava": "^0.18.2",
"husky": "^0.13.3",
"np": "^2.13.1",
"snazzy": "^7.0.0",
"standard": "^10.0.2"
},
"scripts": {
"deploy": "node_modules/.bin/np",
"precommit": "npm run lint && npm test",
"prepush": "npm run lint && npm test",
"preversion": "npm run lint && npm test",
"lint": "./node_modules/.bin/standard --verbose | ./node_modules/.bin/snazzy",
"test": "./node_modules/.bin/ava --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/goldcaddy77/jicli.git"
},
"keywords": [
"jira",
"cli",
"node"
],
"author": "Dan Caddigan",
"license": "MIT",
"bugs": {
"url": "https://github.com/goldcaddy77/jicli/issues"
},
"homepage": "https://github.com/goldcaddy77/jicli#readme"
}