-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.29 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
{
"name": "jirascope",
"description": "tools for making sense of jira dependency graphs",
"homepage": "https://github.com/pikselpalette/jirascope.git",
"version": "2.1.0",
"main": "index",
"engines": {
"node": ">=7.6.x"
},
"dependencies": {
"chalk": "^1.1.3",
"child-process-promise": "^2.2.0",
"escape-html": "^1.0.3",
"fs-promise": "^2.0.0",
"json-stable-stringify": "^1.0.1",
"lodash": "^4.17.4",
"meow": "^3.7.0",
"node-fetch": "^1.6.3",
"qs": "^6.3.1",
"rc": "^1.1.7",
"update-notifier": "^2.1.0"
},
"devDependencies": {
"ava": "^0.18.2",
"ink-docstrap": "^1.3.0",
"jsdoc": "^3.6.3",
"jsdoc-strip-async-await": "^0.1.0",
"nyc": "^10.1.2",
"sinon": "^7.3.2",
"standard": "^8.6.0"
},
"bin": {
"jirascope": "./bin/jirascope"
},
"scripts": {
"doc": "jsdoc -c jsdoc.conf.json -r lib -p -R README.md -P package.json --verbose --pedantic",
"test": "NODE_ENV=test nyc ava",
"report": "nyc report --reporter=html",
"report-open": "nyc report --reporter=html && open coverage/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pikselpalette/jirascope.git"
},
"keywords": [
"jira"
],
"author": "Kris Brown <kris@kris.me.uk>",
"license": "Apache-2.0"
}