-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
49 lines (49 loc) · 1.47 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
{
"name": "homebridge-http-motion-sensor",
"version": "1.2.2",
"description": "Homebridge plugin for a remote motion sensor based on http",
"main": "dist/index.js",
"scripts": {
"build": "npx tsc",
"test": "npx jest",
"clean": "rm -rf dist",
"cbuild": "npm run clean && npm run build",
"format": "npx eslint --fix src/**/*.ts",
"prepare": "npm run cbuild"
},
"files": ["dist"],
"repository": {
"type": "git",
"url": "git+https://github.com/lucavb/homebridge-http-motion-sensor.git"
},
"keywords": [
"homebridge-plugin",
"homebridge",
"homekit",
"motionsensor",
"motion"
],
"author": "Luca Becker <[email protected]> (https://sunbury.xyz/)",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/lucavb/homebridge-http-motion-sensor/issues"
},
"homepage": "https://github.com/lucavb/homebridge-http-motion-sensor#readme",
"engines": {
"node": ">=0.12.0",
"homebridge": ">=0.2.0"
},
"dependencies": {
"homebridge-ts-helper": "^2.0.0-beta.4"
},
"devDependencies": {
"@types/node": "^13.7.1",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"typescript": "^3.9.7",
"hap-nodejs": "^0.7.7",
"homebridge": "^1.1.1"
}
}