-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·39 lines (39 loc) · 915 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": "us-weather-cli",
"version": "1.0.1",
"description": "Get the current day's weather and a 5-day forecast for a specified U.S. zip code.",
"main": "./lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"weather": "./bin/module.js"
},
"preferGlobal": true,
"keywords": [
"cli-app",
"cli",
"weather",
"temperature",
"weather-app",
"weather-forecast",
"weather-data",
"forecast"
],
"author": "Tynan DeBold <[email protected]> (https://www.tynandebold.com/)",
"repository": "github:tynandebold/us-weather-cli",
"license": "ISC",
"engines": {
"node": ">=8.4.0",
"npm": ">=3.8.6"
},
"dependencies": {
"colors": "^1.1.2",
"inquirer": "^5.1.0",
"moment": "^2.20.1",
"node-emoji": "^1.8.1",
"node-fetch": "^2.0.0",
"yargs": "^11.0.0",
"zipcodes": "^6.0.0"
}
}