2018-09-27 12:15:48 +03:00
|
|
|
{
|
|
|
|
|
"name": "thingsboard-js-executor",
|
|
|
|
|
"private": true,
|
2020-06-04 10:05:41 +03:00
|
|
|
"version": "3.0.1",
|
2018-09-27 12:15:48 +03:00
|
|
|
"description": "ThingsBoard JavaScript Executor Microservice",
|
|
|
|
|
"main": "server.js",
|
|
|
|
|
"bin": "server.js",
|
|
|
|
|
"scripts": {
|
2019-12-03 14:45:59 +02:00
|
|
|
"install": "pkg -t node10-linux-x64,node10-win-x64 --out-path ./target . && node install.js",
|
2018-09-27 12:15:48 +03:00
|
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
2019-12-03 14:45:59 +02:00
|
|
|
"start": "nodemon server.js",
|
|
|
|
|
"start-prod": "NODE_ENV=production nodemon server.js"
|
2018-09-27 12:15:48 +03:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2020-05-15 10:29:04 +03:00
|
|
|
"@azure/service-bus": "^1.1.7",
|
|
|
|
|
"@google-cloud/pubsub": "^1.7.3",
|
|
|
|
|
"amqplib": "^0.5.6",
|
|
|
|
|
"aws-sdk": "^2.677.0",
|
|
|
|
|
"azure-sb": "^0.11.1",
|
|
|
|
|
"config": "^3.3.1",
|
2018-09-27 12:15:48 +03:00
|
|
|
"js-yaml": "^3.12.0",
|
2020-04-29 09:41:21 +03:00
|
|
|
"kafkajs": "^1.12.0",
|
2018-09-27 21:05:14 +03:00
|
|
|
"long": "^4.0.0",
|
|
|
|
|
"uuid-parse": "^1.0.0",
|
2020-05-01 14:15:31 +03:00
|
|
|
"uuid-random": "^1.3.0",
|
2018-09-27 12:15:48 +03:00
|
|
|
"winston": "^3.0.0",
|
|
|
|
|
"winston-daily-rotate-file": "^3.2.1"
|
|
|
|
|
},
|
2019-07-24 11:25:00 +03:00
|
|
|
"engines": {
|
|
|
|
|
"node": ">=8.0.0 <11.0.0"
|
|
|
|
|
},
|
2018-09-27 12:15:48 +03:00
|
|
|
"nyc": {
|
|
|
|
|
"exclude": [
|
|
|
|
|
"test",
|
|
|
|
|
"__tests__",
|
|
|
|
|
"node_modules",
|
|
|
|
|
"target"
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"fs-extra": "^6.0.1",
|
|
|
|
|
"nodemon": "^1.17.5",
|
2020-05-15 10:29:04 +03:00
|
|
|
"pkg": "^4.4.8"
|
2019-07-24 13:27:39 +03:00
|
|
|
},
|
|
|
|
|
"pkg": {
|
|
|
|
|
"assets": [
|
|
|
|
|
"node_modules/config/**/*.*"
|
|
|
|
|
]
|
2018-09-27 12:15:48 +03:00
|
|
|
}
|
|
|
|
|
}
|