@flowfuse/nr-project-nodes 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc +19 -0
- package/.github/workflows/build.yml +25 -0
- package/.github/workflows/project-automation.yml +10 -0
- package/.github/workflows/publish.yml +66 -0
- package/.github/workflows/release-publish.yml +19 -0
- package/CHANGELOG.md +31 -0
- package/LICENSE +203 -0
- package/README.md +49 -0
- package/nodes/icons/ff-logo.svg +6 -0
- package/nodes/project-link.html +475 -0
- package/nodes/project-link.js +936 -0
- package/package.json +37 -0
package/package.json
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@flowfuse/nr-project-nodes",
|
|
3
|
+
"version": "0.4.0",
|
|
4
|
+
"description": "A collection of Node-RED nodes for easy communication between Node-RED instances running in the FlowFuse platform",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
7
|
+
"lint": "eslint -c .eslintrc --ext js,html nodes/**/*.js",
|
|
8
|
+
"lint:fix": "eslint -c .eslintrc --ext js,html nodes/**/*.js --fix"
|
|
9
|
+
},
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "git+https://github.com/FlowFuse/nr-project-nodes.git"
|
|
13
|
+
},
|
|
14
|
+
"author": "FlowFuse Inc.",
|
|
15
|
+
"license": "Apache-2.0",
|
|
16
|
+
"bugs": {
|
|
17
|
+
"url": "https://github.com/FlowFuse/nr-project-nodes/issues"
|
|
18
|
+
},
|
|
19
|
+
"homepage": "https://github.com/FlowFuse/nr-project-nodes#readme",
|
|
20
|
+
"devDependencies": {
|
|
21
|
+
"eslint": "^8.25.0",
|
|
22
|
+
"eslint-config-standard": "^17.0.0",
|
|
23
|
+
"eslint-plugin-html": "7.1.0"
|
|
24
|
+
},
|
|
25
|
+
"node-red": {
|
|
26
|
+
"nodes": {
|
|
27
|
+
"project-link": "nodes/project-link.js"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"engines": {
|
|
31
|
+
"node": ">=16.x"
|
|
32
|
+
},
|
|
33
|
+
"dependencies": {
|
|
34
|
+
"got": "^11.8.6",
|
|
35
|
+
"mqtt": "^4.3.7"
|
|
36
|
+
}
|
|
37
|
+
}
|