forked from cubi1337/node-shellies-ds9
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.53 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.53 KB
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
{
"name": "shellies-ds9",
"version": "1.1.9",
"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",
"pretty": "prettier --write \"./**/*.{js,jsx,json}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/cubi1337/node-shellies-ds9.git"
},
"keywords": [
"shelly"
],
"author": "Alexander Rydén/ David S.",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/cubi1337/node-shellies-ds9/issues"
},
"homepage": "https://github.com/cubi1337/node-shellies-ds9#readme",
"funding": {
"type": "kofi",
"url": "https://ko-fi.com/cubi1337"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"typescript": "^4.7.4"
},
"dependencies": {
"@types/multicast-dns": "^7.2.4",
"eventemitter3": "^5.0.1",
"fast-deep-equal": "^3.1.3",
"json-rpc-2.0": "^1.7.0",
"multicast-dns": "^7.2.5",
"ws": "^8.14.2"
}
}