MqttMongoNodejs/package.json

33 lines
781 B
JSON
Raw Normal View History

2017-04-28 21:19:00 +02:00
{
"name": "mqtt_mongo",
"version": "1.0.0",
"description": "MQTT to MongoDB Gateway",
"main": "dist/main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc -p ./",
"start": "node dist/main.js"
},
"author": "Wolfgang Hottgenroth",
"license": "ISC",
2017-04-30 19:00:16 +02:00
"repository": {
"type": "git",
"url": "git@gitlab.com:wolutator/MqttMongoNodejs.git"
2017-04-28 22:23:46 +02:00
},
2017-04-28 21:19:00 +02:00
"devDependencies": {
"@types/commander": "^2.9.0",
2017-04-30 19:00:16 +02:00
"@types/mongodb": "^2.2.0",
2017-04-28 22:04:27 +02:00
"@types/mqtt": "0.0.34",
2017-04-28 21:19:00 +02:00
"@types/node": "^7.0.14",
"typescript": "^2.3.1"
},
"dependencies": {
2017-05-04 21:44:39 +02:00
"chalk-console": "^1.0.1",
2017-04-28 21:19:00 +02:00
"commander": "^2.9.0",
2017-04-30 19:00:16 +02:00
"mongodb": "^2.2.26",
2017-05-03 22:11:41 +02:00
"mqtt": "^2.6.2",
"queuejs": "^0.1.0",
"readable-stream": "^2.2.9"
2017-04-28 21:19:00 +02:00
}
}