-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.82 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
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "issue",
"version": "0.0.7",
"description": "Command line tool for displaying issues using the issuemd library",
"keywords": [
"issue",
"issuemd",
"md",
"markdown",
"jira",
"github",
"tracking",
"cli",
"command",
"line",
"interface"
],
"author": "Billy Moon <[email protected]>",
"contributors": [
{
"name": "Luka Siric",
"email": "[email protected]"
}
],
"license": "MIT",
"bin": {
"issue": "./bin/issue"
},
"scripts": {
"start": "npm run format && npm run lint && npm run test:cover",
"format": "bash -c \"js-beautify -f bin/issue -f src/*.js test/*.js plugins/*/*.js plugins/*/*/*.js -r\"",
"lint": "jshint src test plugins bin/issue",
"test": "bash -c \"minijasminenode2 --noStack --verbose test/*.unit.js plugins/*/tests/*.unit.js\"",
"test:record": "npm_config_record=true npm test",
"test:cover": "bash -c \"istanbul cover --print none --report none --dir reports/coverage -- node_modules/minijasminenode2/bin/minijn --noStack --verbose plugins/*/*/*.unit.js test/*.unit.js\" && istanbul report --root reports/coverage text",
"update": "updtr"
},
"repository": {
"type": "git",
"url": "git://github.com/issuemd/issue.git"
},
"bugs": {
"url": "https://github.com/issuemd/issue/issues"
},
"homepage": "https://github.com/issuemd/issue",
"dependencies": {
"chalk": "^1.1.1",
"ini": "^1.3.4",
"issuemd": "^0.1.7",
"mkdirp": "^0.5.1",
"promptly": "^1.0.0",
"q": "^1.4.1",
"request": "^2.67.0",
"underscore": "~1.8.2",
"underscore-deep-extend": "0.0.5",
"yargs": "^3.31.0"
},
"devDependencies": {
"istanbul": "^0.4.1",
"js-beautify": "^1.5.10",
"jshint": "^2.9.1-rc1",
"minijasminenode2": "^1.0.0",
"nock": "^3.4.0",
"updtr": "^0.1.6"
}
}