-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
57 lines (57 loc) · 1.28 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"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": "^9.8.0",
"@eslint/js": "^9.8.0",
"eslint-plugin-html": "^8.1.1",
"globals": "^15.9.0",
"markdownlint-cli": "^0.41.0",
"neostandard": "^0.11.2"
},
"scripts": {
"eslint": "eslint .",
"eslint_fix": "eslint --fix .",
"markdownlint": "markdownlint '**/*.md'",
"markdownlint_fix": "markdownlint --fix '**/*.md'",
"fix": "npm run rtlcss && npm run eslint_fix && npm run markdownlint_fix",
"pretest": "npm run eslint && npm run markdownlint",
"start": "node ./index.js",
"test": "npm -v"
}
}