-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
27 lines (27 loc) · 1.19 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
{
"name": "MMM-FlightTracker",
"version": "1.2.1",
"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",
"postinstall": "./node_modules/.bin/MagicMirror-rebuild",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Thomas Bouron <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"csv-parse": "^4.6.5",
"magicmirror-rebuild": "^1.0.5",
"mode-s-aircraft-store": "https://github.com/tbouron/mode-s-aircraft-store",
"mode-s-decoder": "^1.0.1",
"mode-s-demodulator": "^1.0.1",
"rtl-sdr": "https://github.com/tbouron/rtl-sdr"
}
}