-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
46 lines (46 loc) · 1.12 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": "forecast-cli",
"description": "Gets the weather for you, and beautifully displays it in your terminal - using the forecast.io API.",
"version": "0.5.4",
"homepage": "https://github.com/joergd/forecast-cli",
"author": {
"name": "Joerg Diekmann",
"email": "[email protected]",
"url": "http://brea.kfa.st"
},
"repository": {
"type": "git",
"url": "git://github.com/joergd/forecast-cli.git"
},
"bugs": {
"url": "https://github.com/joergd/forecast-cli/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/joergd/forecast-cli/blob/master/LICENSE-MIT"
}
],
"main": "lib/forecast-cli",
"engines": {
"node": ">= 0.8.0"
},
"dependencies": {
"request-json": "0.5.2",
"geocoder": "0.2.2",
"colors": "1.0.3",
"moment": "2.10.2",
"commander": "2.8.0",
"prompt": "0.2.14"
},
"devDependencies": {
"grunt-contrib-watch": "~0.2.0",
"grunt-contrib-coffee": "0.6.4",
"grunt": "~0.4.1"
},
"keywords": ["cli", "weather", "forecast"],
"preferGlobal": "true",
"bin": {
"forecast" : "./lib/forecast-cli.js"
}
}