-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 835 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
{
"name": "drone-location-tracker",
"version": "1.0.0",
"description": "location tracking system for a fleet of drones",
"main": "index.js",
"scripts": {
"test": "DEBUG=null ./node_modules/mocha/bin/mocha --watch ./tests",
"simulation": "FLEET_SIZE=15 node ./tests/drone-simulator/createFleet.js"
},
"repository": {
"type": "git",
"url": "https://gitlab.com/dsinecos/drone-location-tracker.git"
},
"author": "Divyanshu",
"license": "MIT",
"devDependencies": {
"chai": "^4.2.0",
"eslint-config-rallycoding": "^3.2.0",
"faker": "^4.1.0",
"jsdoc": "^3.5.5",
"mocha": "^5.2.0",
"nodemon": "^1.18.4",
"sinon": "^7.0.0"
},
"dependencies": {
"debug": "^4.1.0",
"dotenv": "^6.1.0",
"express": "^4.16.4",
"geolib": "^2.0.24",
"socket.io": "^2.1.1"
}
}