forked from victronenergy/node-red-contrib-victron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.17 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
{
"name": "@victronenergy/node-red-contrib-victron",
"description": "Custom Node-RED Nodes for Victron Energy",
"version": "1.4.24",
"dependencies": {
"dbus-native": "^0.4.0",
"debug": "^4.1.0",
"lodash": "^4.17.11",
"promise-retry": "^1.1.1"
},
"node-red": {
"nodes": {
"victron-client": "./src/nodes/config-client.js",
"victron-nodes": "./src/nodes/victron-nodes.js"
}
},
"devDependencies": {
"@babel/eslint-parser": "^7.17.0",
"@signalk/github-create-release": "^1.2.0",
"csv-parse": "^4.4.6",
"eslint": "^8.12.0",
"eslint-config-google": "^0.11.0",
"gar": "^1.0.4"
},
"keywords": [
"node-red"
],
"scripts": {
"create-release": "github-create-release --owner victronenergy --repository node-red-contrib-victron",
"release": "git tag -d v$npm_package_version; git tag v$npm_package_version && git push --tags && git push && npm run create-release"
},
"repository": {
"type": "git",
"url": "https://github.com/victronenergy/node-red-contrib-victron"
},
"license": "MIT"
}