-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
39 lines (39 loc) · 919 Bytes
/
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
{
"name": "issues",
"preferGlobal": "true",
"version": "0.3.2",
"description": "GitHub Issues from the CLI.",
"keywords": [
"github",
"github issues"
],
"author": "Veselin Todorov <[email protected]>",
"dependencies": {
"flatiron": "~0.3.4",
"request": "~2.14.0",
"cli-color": "~0.2.2",
"cli-table": "~0.2.0",
"moment": "~2.0.0"
},
"devDependencies": {
"mocha": "1.8.1",
"should": "1.2.2",
"sinon": "1.6.0"
},
"repository": {
"type": "git",
"url": "http://github.com/vesln/issues.git"
},
"homepage": "http://github.com/vesln/issues",
"scripts": {
"test": "NODE_ENV=test mocha --require should --timeout 5000 --slow 4000 --reporter spec test/*.test.js test/reporters/*.test.js"
},
"bin": {
"issues": "./bin/issues",
"git-issues": "./bin/git-issues"
},
"main": "./lib/index",
"engines": {
"node": ">= 0.8.0 < 0.9.0"
}
}