MqttMongoNodejs/package.json

28 lines
637 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-28 22:23:46 +02:00
"repository": {
"type" : "git",
"url" : "git@gitlab.com:wolutator/MqttMongoNodejs.git"
},
2017-04-28 21:19:00 +02:00
"devDependencies": {
"@types/commander": "^2.9.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": {
"commander": "^2.9.0",
"mqtt": "^2.6.2"
}
}