This repository has been archived by the owner on Feb 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
64 lines (64 loc) · 1.95 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
{
"name": "homebridge-withings-air-quality",
"version": "0.1.4",
"description": "Homebridge plugin to expose air quality data from the Withings WS-50 Smart Body Analyzer",
"repository": {
"type": "git",
"url": "https://github.com/dhayab/homebridge-withings-air-quality"
},
"bugs": {
"url": "https://github.com/dhayab/homebridge-withings-air-quality/issues"
},
"homepage": "https://github.com/dhayab/homebridge-withings-air-quality",
"main": "dist/index.js",
"files": [
"dist",
"config.sample.json",
"config.schema.json"
],
"scripts": {
"start": "npm run -s build && npm run -s start:homebridge",
"start:homebridge": "homebridge -D -I -P ./ -U ./",
"dev": "concurrently --kill-others npm:dev:parcel npm:dev:nodemon",
"dev:parcel": "parcel src/*.ts --target node --no-source-maps",
"dev:nodemon": "nodemon dist/index.ts",
"build": "npm run -s lint && parcel build src/*.ts --target node --no-source-maps",
"lint": "tslint src/*.ts --format stylish",
"postversion": "npm run build",
"version": "npm run -s version:check && npm run -s version:changelog && git add -A",
"version:changelog": "conventional-changelog -i CHANGELOG.md -s -r 0 -p angular",
"version:check": "npm run build"
},
"keywords": [
"homebridge-plugin",
"withings",
"smart body analyzer",
"ws-50",
"air quality",
"carbon dioxide",
"temperature",
"homekit"
],
"author": "Dhaya <https://github.com/dhayab>",
"license": "MIT",
"engines": {
"node": ">=8.0.0",
"homebridge": ">=0.4.0"
},
"devDependencies": {
"@types/superagent": "4.1.3",
"concurrently": "5.0.0",
"conventional-changelog-cli": "2.0.25",
"hap-nodejs": "0.5.0",
"homebridge": "0.4.50",
"nodemon": "1.19.3",
"parcel-bundler": "1.12.4",
"tslib": "1.10.0",
"tslint": "5.20.0",
"tslint-eslint-rules": "5.4.0",
"typescript": "3.6.4"
},
"dependencies": {
"superagent": "5.1.0"
}
}