52 lines
1.2 KiB
JSON
52 lines
1.2 KiB
JSON
{
|
|
"name": "thingsboard-js-executor",
|
|
"private": true,
|
|
"version": "3.3.3",
|
|
"description": "ThingsBoard JavaScript Executor Microservice",
|
|
"main": "server.js",
|
|
"bin": "server.js",
|
|
"scripts": {
|
|
"install": "pkg -t node12-linux-x64,node12-linux-arm64,node12-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": {
|
|
"@azure/service-bus": "^1.1.9",
|
|
"@google-cloud/pubsub": "^2.5.0",
|
|
"amqplib": "^0.6.0",
|
|
"aws-sdk": "^2.741.0",
|
|
"azure-sb": "^0.11.1",
|
|
"config": "^3.3.1",
|
|
"express": "^4.17.1",
|
|
"js-yaml": "^3.14.0",
|
|
"kafkajs": "^1.15.0",
|
|
"long": "^4.0.0",
|
|
"uuid-parse": "^1.1.0",
|
|
"uuid-random": "^1.3.2",
|
|
"winston": "^3.3.3",
|
|
"winston-daily-rotate-file": "^4.5.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=12.0.0 <14.0.0"
|
|
},
|
|
"nyc": {
|
|
"exclude": [
|
|
"test",
|
|
"__tests__",
|
|
"node_modules",
|
|
"target"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"fs-extra": "^10.0.0",
|
|
"nodemon": "^2.0.12",
|
|
"pkg": "^5.3.1"
|
|
},
|
|
"pkg": {
|
|
"assets": [
|
|
"node_modules/config/**/*.*"
|
|
]
|
|
}
|
|
}
|