-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 888 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": "live-gomedia-position",
"description": "Live vehicle geolocation, taken from the GoMedia on-board WiFi entertainment system.",
"version": "1.0.0",
"type": "module",
"main": "index.js",
"files": [
"index.js",
"example.js"
],
"keywords": [
"icomera",
"wifi",
"gps",
"geolocation",
"flixbus"
],
"author": "Jannis R <mail@jannisr.de>",
"homepage": "https://github.com/derhuerst/live-gomedia-position",
"repository": "derhuerst/live-gomedia-position",
"bugs": "https://github.com/derhuerst/live-gomedia-position/issues",
"license": "ISC",
"engines": {
"node": ">=18"
},
"dependencies": {
"cross-fetch": "^3.1.5"
},
"devDependencies": {
"eslint": "^8.0.0",
"tap-min": "^2.0.0",
"tape": "^5.0.1"
},
"scripts": {
"test": "env NODE_ENV=dev node test.js | tap-min",
"lint": "eslint .",
"prepublishOnly": "npm run lint && npm test"
}
}