forked from Koenkk/zigbee-herdsman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.04 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
{
"author": {
"name": "willieee802"
},
"dependencies": {
"@serialport/bindings-cpp": "^12.0.1",
"@serialport/parser-delimiter": "^12.0.0",
"@serialport/stream": "^12.0.0",
"bonjour-service": "^1.2.1",
"debounce": "^2.0.0",
"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": "Custom fork from zigbee-herdsman",
"devDependencies": {
"@babel/cli": "*",
"@babel/core": "*",
"@babel/preset-env": "*",
"@babel/preset-typescript": "*",
"@serialport/binding-mock": "^10.2.2",
"@types/debounce": "^1.2.4",
"@types/debug": "*",
"@types/jest": "*",
"@types/mz": "^2.7.8",
"@types/nedb": "*",
"@types/node": "*",
"@typescript-eslint/eslint-plugin": "*",
"@typescript-eslint/parser": "*",
"babel-jest": "*",
"eslint": "*",
"jest": "*",
"regenerator-runtime": "*",
"typedoc": "^0.25.13",
"typedoc-plugin-markdown": "*",
"typedoc-plugin-no-inherit": "*",
"typescript": "*"
},
"homepage": "https://github.com/Koenkk/zigbee-herdsman",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"name": "@willieee802/zigbee-herdsman",
"repository": {
"type": "git",
"url": "git://github.com/willieee802/zigbee-herdsman.git"
},
"scripts": {
"build": "./node_modules/.bin/tsc",
"start": "./node_modules/.bin/tsc -w",
"test": "jest test --silent --maxWorkers=50%",
"test-with-coverage": "jest test --silent --maxWorkers=50% --coverage",
"test-watch": "jest test --silent --maxWorkers=25% --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.48.1",
"jest": {
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
}
}