forked from Koenkk/zigbee-herdsman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.6 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"author": {
"name": "Koen Kanters",
"email": "koenkanters94@gmail.com"
},
"bugs": {
"url": "https://github.com/koenkk/zigbee-herdsman/issues"
},
"contributors": [
{
"name": "Koen Kanters",
"email": "koenkanters94@gmail.com"
},
{
"name": "Hedy Wang",
"email": "hedywings@gmail.com"
},
{
"name": "Simen Li",
"email": "simenkid@gmail.com"
},
{
"name": "Jack Wu",
"email": "jackchased@gmail.com"
}
],
"dependencies": {
"@serialport/bindings-cpp": "^12.0.1",
"@serialport/parser-delimiter": "^12.0.0",
"@serialport/stream": "^12.0.0",
"bonjour-service": "^1.1.1",
"debounce": "^1.2.1",
"debug": "^4.3.4",
"fast-deep-equal": "^3.1.3",
"mixin-deep": "^2.0.1",
"mz": "^2.7.0",
"slip": "^1.0.2"
},
"deprecated": false,
"description": "An open source ZigBee gateway solution with node.js.",
"devDependencies": {
"@babel/cli": "*",
"@babel/core": "*",
"@babel/plugin-proposal-class-properties": "*",
"@babel/plugin-proposal-object-rest-spread": "*",
"@babel/preset-env": "*",
"@babel/preset-typescript": "*",
"@types/debounce": "^1.2.3",
"@types/debug": "*",
"@types/jest": "*",
"@types/mz": "^2.7.6",
"@types/nedb": "*",
"@types/node": "*",
"@typescript-eslint/eslint-plugin": "*",
"@typescript-eslint/parser": "*",
"babel-jest": "*",
"eslint": "*",
"jest": "*",
"regenerator-runtime": "*",
"typedoc": "^0.25.2",
"typedoc-plugin-markdown": "*",
"typedoc-plugin-no-inherit": "*",
"typedoc-plugin-sourcefile-url": "*",
"typescript": "*"
},
"homepage": "https://github.com/Koenkk/zigbee-herdsman",
"keywords": [
"zigbee",
"cc253x"
],
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"name": "zigbee-herdsman",
"repository": {
"type": "git",
"url": "git+https://github.com/Koenkk/zigbee-herdsman.git"
},
"scripts": {
"build": "./node_modules/.bin/tsc",
"start": "./node_modules/.bin/tsc -w",
"test": "jest test",
"test-with-coverage": "jest test --coverage --collectCoverageFrom 'src/**/*.ts'",
"test-watch": "jest test --watch",
"eslint": "node_modules/.bin/eslint . --ext .ts --max-warnings=0",
"docs": "typedoc --tsconfig typedoc-tsconfig.json",
"clean": "rimraf temp coverage dist",
"prepack": "npm run clean && npm run build"
},
"version": "0.20.0",
"jest": {
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
}
}