-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.15 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": "somfy-home-controller",
"version": "1.4.0",
"type": "module",
"description": "Simple Node app to automatically control your Somfy shutters based on your local day cycle.",
"main": "src/main.js",
"scripts": {
"start": "node --experimental-json-modules src/main.js",
"cli": "node src/cli.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Coko7/somfy-home-controller.git"
},
"keywords": [
"Somfy",
"Home",
"Controller",
"Tahoma",
"Automation",
"Daylight",
"CLI"
],
"author": "Coko7",
"license": "MIT",
"bugs": {
"url": "https://github.com/Coko7/somfy-home-controller/issues"
},
"homepage": "https://github.com/Coko7/somfy-home-controller#readme",
"dependencies": {
"axios": "^1.2.3",
"chalk": "^5.3.0",
"csv-parse": "^5.3.3",
"dayjs": "^1.11.7",
"prompt-sync": "^4.2.0",
"suncalc": "^1.9.0",
"winston": "^3.8.2"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/plugin-transform-modules-commonjs": "^7.21.2",
"@babel/preset-env": "^7.20.2",
"babel-jest": "^29.5.0",
"jest": "^29.5.0"
}
}