-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.96 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@totallyinformation/nr-uibuilder-uplot",
"version": "0.0.1-dev",
"description": "An add-on node for node-red-contrib-uibuilder that outputs a working uPlot chart. Also an exemplar for building your own uibuilder extensions",
"scripts": {
"watch": "gulp watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@types/node": "^14.14.00",
"@types/node-red": "*",
"eslint": "^8.31.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-es": "^4.1.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^40.0.1",
"eslint-plugin-n": "^15.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-sonarjs": "^0",
"execa": "^5.1.1",
"fs-extra": "^11.1.0",
"gulp": "^4.0.2",
"gulp-debug": "^4.0.0",
"gulp-esbuild": "^0.11.1",
"gulp-htmlmin": "^5.0.1",
"gulp-include": "^2.4.1",
"gulp-json-editor": "^2.5.6",
"gulp-once": "^2.1.1",
"gulp-prompt": "^1.2.0",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.1.3",
"gulp-uglify": "^3.0.2"
},
"node-red": {
"version": ">=3",
"nodes": {
"uib-uplot": "nodes/uib-uplot/customNode.js"
}
},
"engines": {
"node": ">=14.14"
},
"directories": {
"example": "./examples",
"doc": "./docs",
"lib": "./nodes",
"test": "./tests"
},
"main": "./nodes/uib-uplot/customNode.js",
"types": "index.d.ts",
"type": "commonjs",
"browserslist": [
"> 0.5%",
"maintained node versions",
"last 2 versions",
"not dead",
"not ie > 0"
],
"keywords": [
"chart",
"node-red",
"charting",
"zero-code",
"uibuilder",
"uplot",
"node-red-contrib-uibuilder"
],
"author": {
"name": "Julian Knight",
"url": "https://github.com/TotallyInformation"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/TotallyInformation/nr-uibuilder-uplot.git"
}
}