-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
65 lines (65 loc) · 1.75 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
{
"name": "node-red-contrib-genetic-charging-strategy",
"version": "0.0.0-development",
"description": "A module for Node-RED that adds a battery charging strategy to node-red-contrib-power-saver. It uses genetic algorithms to find the best schedule",
"main": "dist/main.js",
"type": "commonjs",
"keywords": [
"node-red",
"tibber",
"energy",
"smarthome",
"home-automation",
"home-assistant",
"power",
"powersaver"
],
"scripts": {
"test": "jest test/*.test.js",
"lint": "eslint",
"benchmark": "cd benchmark && node bench.js | tee output.txt",
"release": "semantic-release"
},
"author": "Johan Enell<[email protected]>",
"license": "MIT",
"files": [
"src/*",
"./package.json"
],
"node-red": {
"nodes": {
"enell-strategy-genetic-charging": "src/strategy-battery-charging.js"
},
"version": ">=2.2.0"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@jest/globals": "29.7.0",
"babel-jest": "29.7.0",
"benchmark": "2.1.4",
"eslint": "8.57.1",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "28.10.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.1.0",
"jest": "29.7.0",
"jest-mock-random": "1.1.1",
"moment": "2.30.1",
"node-red": "4.0.8",
"node-red-node-test-helper": "0.3.4",
"prettier": "3.4.2",
"semantic-release": "24.2.0"
},
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/enell/node-red-contrib-genetic-charging-scheduler.git"
}
}