56 lines
1.2 KiB
JSON
56 lines
1.2 KiB
JSON
{
|
|
"name": "node-red-contrib-ui-upload",
|
|
"version": "0.8.1",
|
|
"description": "Node-RED Dashboard UI widget node for uploading a file content by Socket.io streaming",
|
|
"keywords": [
|
|
"upload",
|
|
"backpressure",
|
|
"websocket",
|
|
"ui",
|
|
"dashboard",
|
|
"node-red",
|
|
"node-red-contrib",
|
|
"node-red-ui",
|
|
"nodered"
|
|
],
|
|
"author": {
|
|
"name": "Alexandre Alapetite",
|
|
"url": "https://alexandra.dk/alexandre.alapetite"
|
|
},
|
|
"license": "Apache-2.0",
|
|
"main": "ui_upload.js",
|
|
"engines": {
|
|
"node": ">=8"
|
|
},
|
|
"node-red": {
|
|
"version": ">=0.20.0",
|
|
"nodes": {
|
|
"ui_upload": "ui_upload.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"ui_upload.html",
|
|
"ui_upload.js"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/alexandrainst/node-red-contrib-ui-upload"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^8.51.0",
|
|
"eslint-config-standard": "^17.1.0",
|
|
"eslint-plugin-html": "^7.1.0",
|
|
"eslint-plugin-import": "^2.28.1",
|
|
"eslint-plugin-n": "^16.2.0",
|
|
"eslint-plugin-promise": "^6.1.1"
|
|
},
|
|
"scripts": {
|
|
"start": "node ./index.js",
|
|
"eslint": "eslint --ext .js,.html .",
|
|
"eslint_fix": "eslint --fix --ext .js,.html .",
|
|
"fix": "npm run eslint_fix",
|
|
"pretest": "npm run-script eslint",
|
|
"test": "npm -v"
|
|
}
|
|
}
|