forked from asednev/govee-bt-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 965 Bytes
/
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
{
"name": "govee-bt-client",
"version": "1.0.11",
"description": "Govee H5xxx Thermometer Hygrometer Bluetooth Client",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "tsc --watch",
"build": "rimraf ./dist && tsc",
"dev": "rimraf ./dist && tsc && node dist/example.js",
"lint": "prettier -c src/**/*.ts",
"test": "jest",
"test:ci": "jest --ci",
"test:watch": "jest --watch",
"prepublishOnly": "npm run lint && npm run build"
},
"author": "Alexey Sednev",
"license": "MIT",
"keywords": [
"Govee",
"H5072",
"H5074",
"H5075",
"H5101",
"H5102",
"H5179",
"API",
"Client"
],
"dependencies": {
"@abandonware/noble": "1.9.2-11",
"typescript": "4.0.2"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^14.14.33",
"jest": "^26.6.3",
"prettier": "2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4"
}
}