-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.13 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
{
"name": "@ptweety/node-red-contrib-ccu-jack",
"version": "0.0.12",
"deprecated": false,
"description": "Node-RED Nodes for the Homematic integration via CCU-Jack",
"main": "none",
"node-red": {
"nodes": {
"jack-config": "nodes/jack-config.js",
"jack-bridge": "nodes/jack-bridge.js",
"jack-event": "nodes/jack-event.js",
"jack-value": "nodes/jack-value.js",
"messages": "nodes/messages.js"
}
},
"scripts": {
"debug": "node --nolazy --inspect ./node_modules/node-red/red.js -s ../.node-red/settings.js -u ../.node-red",
"lint": "npx eslint \"nodes/**/*.{js,html}\"; exit 0",
"lint:dry": "npx eslint \"nodes/**/*.{js,html}\" --fix-dry-run; exit 0",
"lint:fix": "npx eslint \"nodes/**/*.{js,html}\" --fix; exit 0",
"prettify": "npx prettier --check \"packages/**/*.{js,html}\"; exit 0",
"start": "node ./node_modules/node-red/red.js -s ../.node-red/settings.js -u ../.node-red",
"test": "jest",
"watch:test": "jest --watchAll",
"update": "npx npm-check-updates -u && npm install",
"version": "auto-changelog -p && git add CHANGELOG.md",
"postversion": "git push origin --all && git push origin --no-verify --tags"
},
"keywords": [
"node-red",
"ccu",
"ccu-jack",
"homematic"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ptweety/node-red-contrib-ccu-jack.git"
},
"bugs": {
"url": "https://github.com/ptweety/node-red-contrib-ccu-jack/issues"
},
"homepage": "https://github.com/ptweety/node-red-contrib-ccu-jack#readme",
"author": "ptweety",
"license": "MIT",
"engines": {
"node": ">=14"
},
"dependencies": {
"axios": "1.5.1",
"axios-retry": "3.8.0"
},
"devDependencies": {
"@types/jest": "29.5.5",
"auto-changelog": "2.4.0",
"axios-mock-adapter": "1.22.0",
"eslint": "8.50.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-html": "7.1.0",
"eslint-plugin-jest": "27.4.2",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-unicorn": "48.0.1",
"jest": "29.7.0",
"node-red": "^3.1.0",
"prettier": "3.0.3"
}
}