-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.54 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
{
"name": "@flowfuse/nr-project-nodes",
"version": "0.7.4",
"description": "A collection of Node-RED nodes for easy communication between Node-RED instances running in the FlowFuse platform",
"scripts": {
"test": "mocha test/unit/**/*_spec.js --timeout 5000",
"lint": "eslint -c .eslintrc --ext js,html nodes/**/*.js lib/**/*.js test/**/*.js",
"lint:fix": "eslint -c .eslintrc --ext js,html nodes/**/*.js lib/**/*.js test/**/*.js --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FlowFuse/nr-project-nodes.git"
},
"author": "FlowFuse Inc.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/FlowFuse/nr-project-nodes/issues"
},
"homepage": "https://github.com/FlowFuse/nr-project-nodes#readme",
"devDependencies": {
"eslint": "^8.25.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-html": "7.1.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"mocha": "^10.4.0",
"mocha-cli": "^1.0.1",
"node-red": "^3.1.9",
"node-red-node-test-helper": "^0.3.4",
"sinon": "^18.0.0"
},
"keywords": [
"node-red"
],
"node-red": {
"nodes": {
"project-link": "nodes/project-link.js"
}
},
"engines": {
"node": ">=16.x"
},
"dependencies": {
"got": "^11.8.6",
"http-proxy-agent": "^7.0.2",
"https-proxy-agent": "^7.0.4",
"mqtt": "^4.3.7",
"proxy-from-env": "^1.1.0"
}
}