-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.06 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
{
"name": "greenhub-cli",
"version": "1.3.2",
"description": "A command line app for interacting with the GreenHub REST API.",
"bin": {
"greenhub": "index.js"
},
"engines": {
"node": ">=6"
},
"scripts": {
"dev": "NODE_ENV=development node index.js",
"test": "eslint . && ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/greenhub-project/lumberjack.git"
},
"keywords": [
"greenhub",
"cli",
"api"
],
"author": "Hugo Matalonga <[email protected]> (http://hmatalonga.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/greenhub-project/lumberjack/issues"
},
"homepage": "https://github.com/greenhub-project/lumberjack#readme",
"dependencies": {
"axios": "^0.17.0",
"chalk": "^2.2.0",
"commander": "^2.9.0",
"conf": "^1.1.1",
"inquirer": "^3.0.6",
"log-symbols": "^2.1.0",
"moment": "^2.18.1",
"opn": "^5.1.0",
"update-notifier": "^2.1.0"
},
"devDependencies": {
"ava": "^0.22.0",
"eslint": "^4.9.0",
"execa": "^0.8.0"
}
}