forked from alexryd/node-shellies-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.35 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
{
"name": "shellies-ng",
"version": "1.5.1",
"description": "Handles communication with the next generation of Shelly devices",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "rimraf ./dist && tsc",
"lint": "eslint ./src --ext .ts,.js --max-warnings=0",
"test": "jest",
"preversion": "npm run build && npm run lint && npm test",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexryd/node-shellies-ng.git"
},
"keywords": [
"shelly"
],
"author": "Alexander Rydén",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/alexryd/node-shellies-ng/issues"
},
"homepage": "https://github.com/alexryd/node-shellies-ng#readme",
"funding": {
"type": "kofi",
"url": "https://ko-fi.com/alexryd"
},
"devDependencies": {
"@types/jest": "^28.1.2",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"eslint": "^8.18.0",
"jest": "^28.1.1",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.5",
"typescript": "^4.7.4"
},
"dependencies": {
"@types/multicast-dns": "^7.2.1",
"eventemitter3": "^4.0.7",
"fast-deep-equal": "^3.1.3",
"json-rpc-2.0": "^1.3.0",
"multicast-dns": "^7.2.5",
"ws": "^8.8.0"
}
}