dashboardjavacloudcoapiotiot-analyticsiot-platformiot-solutionskafkalwm2mmicroservicesmiddlewaremqttnettyplatformsnmpthingsboardvisualizationwebsocketswidgets
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
867 B
35 lines
867 B
{
|
|
"name": "thingsboard-js-executor",
|
|
"private": true,
|
|
"version": "2.2.0",
|
|
"description": "ThingsBoard JavaScript Executor Microservice",
|
|
"main": "server.js",
|
|
"bin": "server.js",
|
|
"scripts": {
|
|
"install": "pkg -t node8-linux-x64,node8-win-x64 --out-path ./target . && node install.js",
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"start": "nodemon server.js",
|
|
"start-prod": "NODE_ENV=production nodemon server.js"
|
|
},
|
|
"dependencies": {
|
|
"config": "^1.30.0",
|
|
"js-yaml": "^3.12.0",
|
|
"kafka-node": "^3.0.1",
|
|
"winston": "^3.0.0",
|
|
"winston-daily-rotate-file": "^3.2.1"
|
|
},
|
|
"engine": "node >= 5.9.0",
|
|
"nyc": {
|
|
"exclude": [
|
|
"test",
|
|
"__tests__",
|
|
"node_modules",
|
|
"target"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"fs-extra": "^6.0.1",
|
|
"nodemon": "^1.17.5",
|
|
"pkg": "^4.3.3"
|
|
}
|
|
}
|
|
|