-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 864 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
{
"name": "noaa-metar-feed",
"version": "1.0.0",
"description": "Pulls the latest coded METAR collectives from NOAA as described here http://www.nws.noaa.gov/tg/datahelp.php and decodes to JSON format.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/rheh/noaa-metar-feed.git"
},
"keywords": [
"METAR",
"NOAA",
"Weather",
"ICAO",
"Airfields"
],
"author": "Ray Hammond",
"license": "GNU GPL2",
"bugs": {
"url": "https://github.com/rheh/noaa-metar-feed/issues"
},
"homepage": "https://github.com/rheh/noaa-metar-feed",
"dependencies": {
"basic-ftp": "^5.0.5",
"metar": "^1.0.0"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-google": "^0.14.0",
"jest": "^29.7.0"
}
}