forked from TotallyInformation/node-red-contrib-uibuilder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
129 lines (129 loc) · 3.4 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "node-red-contrib-uibuilder",
"version": "2.0.8",
"description": "Easily create web UI's for Node-RED using any (or no) front-end library. VueJS and bootstrap-vue included but change as desired.",
"scripts": {
"postinstall": "node ./bin/postinstall",
"build": "node ./bin/mergehtml",
"watchbuild": "node ./bin/watchhtml",
"prepush": "npm run packfe && npm run build",
"push": "git push origin",
"pull": "git pull origin",
"presync": "npm run pull",
"sync": "npm run push",
"packfe": "uglifyjs ./nodes/src/uibuilderfe.js --output ./nodes/src/uibuilderfe.min.js --compress --mangle",
"prepublishOnly": "npm run packfe && npm run build",
"listbin": "ls ./node_modules/bin",
"npmtags": "npm dist-tag ls node-red-contrib-uibuilder",
"npmtagnext": "npm dist-tag add node-red-contrib-uibuilder@$npm_package_version next",
"gittags": "git tag",
"gittag": "git tag -a v%npm_package_version%",
"gitpushtags": "git push origin --tags",
"release": "github-release-from-changelog --dry-run"
},
"dependencies": {
"body-parser": "^1.19.0",
"bootstrap-vue": "^2.15.0",
"fs-extra": "^8.1.0",
"serve-index": "^1.9.1",
"serve-static": "^1.14.1",
"socket.io": "^2.3.0",
"vue": "^2.6.11"
},
"devDependencies": {
"@types/jquery": "^3.3.31",
"@types/node-red": "^0.20.0",
"replace-in-file": "^3.4.4",
"uglify-js": "^3.6.9"
},
"node-red": {
"version": ">=0.16.0",
"nodes": {
"uibuilder": "nodes/uibuilder.js"
},
"notyetnodes": {}
},
"engines": {
"node": ">=8.16"
},
"directories": {
"bin": "./bin",
"example": "./examples",
"doc": "./docs",
"lib": "./nodes",
"test": "./tests"
},
"main": "./nodes/uibuilder.js",
"browser": "./nodes/src/uibuilderfe.js",
"bin": {
"mergehtml": "./bin/mergehtml.js",
"watchhtml": "./bin/watchhtml.js"
},
"browserslist": [
"> 0.5%",
"maintained node versions",
"last 2 versions",
"not dead",
"not ie < 11"
],
"keywords": [
"node-red",
"ui",
"gui",
"dashboard",
"spa",
"web",
"website",
"data-driven",
"webpage"
],
"homepage": "https://github.com/TotallyInformation/node-red-contrib-uibuilder",
"bugs": "https://github.com/TotallyInformation/node-red-contrib-uibuilder/issues",
"author": {
"name": "Julian Knight",
"url": "https://github.com/TotallyInformation"
},
"contributors": [
{
"name": "Julian Knight",
"url": "https://github.com/TotallyInformation"
},
{
"name": "Colin Law",
"url": "https://github.com/colinl"
},
{
"name": "Steve Rickus",
"url": "https://github.com/shrickus"
},
{
"name": "Ellie Lee",
"url": "https://github.com/ellieejlee"
},
{
"name": "Thomas Wagner",
"url": "https://github.com/Thomseeen"
},
{
"name": "Arlena Derksen",
"url": "https://github.com/boisei0"
},
{
"name": "cflurin",
"url": "https://discourse.nodered.org/u/cflurin"
},
{
"name": "Scott Page - IndySoft",
"url": "https://github.com/scottpageindysoft"
},
{
"name": "Stephen McLaughlin - Steve-Mcl",
"url": "https://discourse.nodered.org/u/Steve-Mcl"
}
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/TotallyInformation/node-red-contrib-uibuilder.git"
}
}