-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
59 lines (59 loc) · 1.85 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
{
"name": "homebridge-openzwave",
"version": "1.1.0-beta.1",
"description": "OpenZWave Platform for Homebridge",
"author": "Shaun Harrison (@shnhrrsn)",
"license": "MIT",
"main": "lib/registerPlatform.js",
"scripts": {
"code:typecheck": "tsc --noEmit",
"code:format": "prettier --write **/*.ts *.json *.yaml .babelrc *.markdown",
"code:lint": "prettier --check **/*.ts *.json *.yaml .babelrc *.markdown",
"util": "node utils/util.js",
"test": "ava --verbose",
"testharness": "node utils/util.js testharness",
"build": "tsc --noEmit && rm -fr lib && babel src --out-dir lib --extensions .ts --source-maps inline",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/shnhrrsn/homebridge-openzwave.git"
},
"keywords": [
"homebridge-plugin",
"homebridge-platform",
"z-wave",
"zwave",
"openzwave"
],
"dependencies": {
"fast-xml-parser": "^3.16.0",
"openzwave-shared": "^1.5.10",
"rxjs": "^6.5.4"
},
"engines": {
"homebridge": ">=0.4.50"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-dynamic-import": "^7.8.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.7.4",
"@babel/plugin-proposal-numeric-separator": "^7.8.0",
"@babel/plugin-proposal-optional-chaining": "^7.7.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.0",
"@babel/plugin-transform-modules-commonjs": "^7.7.5",
"@babel/preset-typescript": "^7.7.7",
"@babel/register": "^7.7.7",
"@types/node": "^13.1.6",
"ascii-table": "^0.0.9",
"ava": "^2.4.0",
"dotenv": "^8.2.0",
"homebridge": "^0.4.50",
"is-port-reachable": "^3.0.0",
"nopt": "^4.0.1",
"prettier": "1.19.1",
"typescript": "^3.7.4"
}
}