-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.05 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "live-icomera-position",
"description": "Live vehicle geolocation, taken from the on-board Icomera WiFi system.",
"version": "2.0.0",
"type": "module",
"main": "index.js",
"bin": {
"live-icomera-position": "./cli.js"
},
"files": [
"cli.js",
"index.js",
"lib",
"example.js"
],
"keywords": [
"icomera",
"wifi",
"gps",
"geolocation",
"flixbus",
"bus",
"coach",
"cli"
],
"author": "Jannis R <mail@jannisr.de>",
"homepage": "https://github.com/derhuerst/live-icomera-position",
"repository": {
"type": "git",
"url": "git+https://github.com/derhuerst/live-icomera-position.git"
},
"bugs": "https://github.com/derhuerst/live-icomera-position/issues",
"license": "ISC",
"engines": {
"node": ">=20"
},
"dependencies": {
"fetch-ponyfill": "^7.1.0",
"parse-jsonp": "^2.0.0",
"pinkie-promise": "^2.0.1",
"query-string": "^8.2.0"
},
"devDependencies": {
"eslint": "^8.56.0",
"ndjson": "^2.0.0"
},
"scripts": {
"test": "node test.js",
"lint": "eslint .",
"prepublishOnly": "npm run lint && npm test"
}
}