forked from tbouron/MMM-FlightTracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 1002 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 1002 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "MMM-FlightTracker",
"version": "2.0.0",
"description": "MagicMirror² module that uses ADS-B systems to track nearby planes",
"repository": {
"type": "git",
"url": "https://github.com/tbouron/MMM-FlightTracker"
},
"main": "MMM-FlightTracker.js",
"scripts": {
"data": "npm run data-airlines && npm run data-aircrafts",
"data-airlines": "mkdir -p data && curl -o data/airlines.csv https://raw.githubusercontent.com/jpatokal/openflights/master/data/airlines.dat",
"data-aircrafts": "mkdir -p data && curl -o data/aircrafts.zip https://junzis.com/adb/download && unzip data/aircrafts.zip aircraft_db.csv -d data && mv data/aircraft_db.csv data/aircrafts.csv && rm -rf data/aircrafts.zip",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Thomas Bouron <tbouron@gmail.com>",
"license": "Apache-2.0",
"dependencies": {
"csv-parse": "^5.6.0",
"mode-s-aircraft-store": "https://github.com/tbouron/mode-s-aircraft-store"
}
}