-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
41 lines (41 loc) · 1 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
{
"name": "gree-hvac-client",
"version": "0.0.0-development",
"description": "A client for controlling Gree smart air conditioners",
"scripts": {
"lint": "eslint ./",
"test": "jest",
"docs": "jsdoc2md -t README.hbs src/*.js > README.md; echo",
"semantic-release": "semantic-release"
},
"files": [
"src",
"index.js"
],
"keywords": [],
"author": "Igor Starovierov <[email protected]>",
"license": "GPL-3.0",
"dependencies": {
"clone": "^2.1.2",
"object-diff": "^0.0.4",
"winston": "^3.17.0"
},
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"eslint": ">=8.27.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-jsdoc": "^43.2.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.7.0",
"@types/jest": "^29.5.13",
"jsdoc-to-markdown": "9.0.2",
"prettier": "^2.8.0",
"semantic-release": "^24.1.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inwaar/gree-hvac-client.git"
}
}