forked from Koenkk/zigbee-herdsman-converters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.63 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
{
"name": "zigbee-herdsman-converters",
"version": "15.94.2",
"description": "Collection of device converters to be used with zigbee-herdsman",
"main": "index.js",
"types": "index.d.ts",
"files": [
"/index.js",
"/converters",
"/lib",
"/devices",
"CHANGELOG.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Koenkk/zigbee-herdsman-converters.git"
},
"keywords": [
"xiaomi",
"tradfri",
"hue",
"wemo",
"zigbee",
"zigbee-shepherd"
],
"scripts": {
"lint": "eslint .",
"test": "ZHC_TEST=true jest test",
"test-watch": "ZHC_TEST=true jest test --watch",
"clean": "rimraf index* devices lib converters tsconfig.tsbuildinfo",
"build": "tsc",
"prepack": "npm run clean && npm run build"
},
"author": "Koen Kanters",
"license": "MIT",
"bugs": {
"url": "https://github.com/Koenkk/zigbee-herdsman-converters/issues"
},
"homepage": "https://github.com/Koenkk/zigbee-herdsman-converters",
"dependencies": {
"axios": "^1.5.1",
"buffer-crc32": "^0.2.13",
"https-proxy-agent": "^7.0.2",
"tar-stream": "^3.1.6",
"zigbee-herdsman": "^0.19.2"
},
"devDependencies": {
"@types/buffer-crc32": "^0.2.2",
"@types/jest": "^29.5.5",
"@types/node": "^20.8.6",
"@types/tar-stream": "^3.1.1",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"eslint": "^8.51.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-jest": "^27.4.2",
"fast-deep-equal": "*",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}