-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
47 lines (47 loc) · 1.76 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
{
"name": "@victronenergy/node-red-contrib-victron",
"description": "Custom Node-RED Nodes for Victron Energy",
"version": "1.6.15",
"dependencies": {
"dbus-native-victron": "^0.4.2",
"dbus-victron-virtual": "^0.1.8",
"debug": "^4.4.0",
"lodash": "^4.17.21",
"promise-retry": "^2.0.1",
"standard": "^17.1.2"
},
"node-red": {
"nodes": {
"victron-client": "./src/nodes/config-client.js",
"victron-nodes": "./src/nodes/victron-nodes.js",
"victron-virtual": "./src/nodes/victron-virtual.js"
},
"version": ">=3.0.2"
},
"devDependencies": {
"@babel/eslint-parser": "^7.26.5",
"csv-parse": "^5.6.0",
"eslint": "^9.18.0",
"eslint-config-google": "^0.14.0",
"gar": "^1.0.4",
"yargs": "^17.7.2"
},
"keywords": [
"node-red"
],
"scripts": {
"test": "standard --fix src/ scripts/",
"codespell": "codespell src/ scripts/",
"release": "git tag -d v$npm_package_version; git tag v$npm_package_version && git push --tags && git push && npm run create-release",
"documentation": "bash -c '( sed \"/^<!--/q\" src/nodes/config-client.html && node scripts/service2doc.js -s src/services/services.json -r src/nodes/victron-nodes.html -t nodered ) | sponge src/nodes/config-client.html'",
"wiki": "bash -c 'node scripts/service2doc.js -s src/services/services.json -r src/nodes/victron-nodes.html -t md | sponge ../node-red-contrib-victron.wiki/Available-nodes.md'"
},
"repository": {
"type": "git",
"url": "https://github.com/victronenergy/node-red-contrib-victron"
},
"engines": {
"node": ">=14.17.4"
},
"license": "MIT"
}