-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
74 lines (74 loc) · 1.89 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
{
"name": "@totallyinformation/node-red-contrib-events",
"version": "1.1.3",
"description": "Event broadcast and receive nodes for Node-RED.",
"keywords": [
"events",
"links",
"pub/sub",
"publish",
"subscribe",
"broadcast",
"eventhandler",
"node-red"
],
"main": "none",
"scripts": {
"build": "gulp build",
"watch": "gulp watch",
"setPackageVersion": "gulp setPackageVersion",
"createTag": "gulp createTag",
"publish": "publish"
},
"node-red": {
"version": ">=2.0.0",
"nodes": {
"event-in": "nodes/event-in.js",
"event-out": "nodes/event-out.js",
"event-return": "nodes/event-return.js"
}
},
"dependencies": {
"@totallyinformation/ti-common-event-handler": "^1.0.0",
"eventemitter2": "^6.4.4"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jquery": "^3.5.6",
"@types/node": "^14.17.19",
"@types/node-red": "^1.1.1",
"eslint": "^7.32.0",
"eslint-plugin-es": "^4.1.0",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-jsdoc": "^36.0.8",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-sonarjs": "^0.10.0",
"execa": "^5.1.1",
"gulp": "^4.0.2",
"gulp-changed": "^4.0.3",
"gulp-include": "^2.4.1",
"gulp-once": "^2.1.1",
"gulp-rename": "^2.0.0",
"gulp-uglify": "^3.0.2"
},
"engines": {
"node": ">=12.0"
},
"homepage": "https://github.com/TotallyInformation/node-red-contrib-events",
"bugs": "https://github.com/TotallyInformation/node-red-contrib-events/issues",
"author": {
"name": "Julian Knight",
"url": "https://github.com/TotallyInformation"
},
"contributors": [
{
"name": "Julian Knight",
"url": "https://github.com/TotallyInformation"
}
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/TotallyInformation/node-red-contrib-events.git"
}
}