-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 970 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
{
"name": "simplepgps",
"version": "1.0.0",
"description": "A Node.js project for reading data emitted from a GPS device attached to a Raspberry Pi",
"main": "index.js",
"scripts": {
"test": "mocha --timeout 15000 test/api-tests.js",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reselbob/simplepgps.git"
},
"keywords": [
"gps"
],
"author": "Bob Reselman <reselbob@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/reselbob/simplepgps/issues"
},
"homepage": "https://github.com/reselbob/simplepgps#readme",
"dependencies": {
"app-root-path": "^3.0.0",
"express": "^4.17.1",
"geo-distance": "^0.2.0",
"kafkajs": "^1.15.0",
"morgan": "^1.10.0",
"node-gpsd": "^0.3.2",
"read-last-lines": "^1.8.0",
"winston": "^3.3.3"
},
"devDependencies": {
"chai": "^4.3.4",
"mocha": "^8.4.0",
"supertest": "^6.1.3"
}
}