forked from aarons22/homebridge-bond
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.59 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-bond",
"version": "3.2.10",
"description": "A homebridge plugin to control your Bond devices over the v2 API.",
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/**.ts",
"watch": "npm run build && npm link && nodemon",
"dev": "tsc --watch & nodemon dist",
"build": "rimraf ./dist && tsc -p tsconfig-build.json",
"prepublishOnly": "npm run lint && npm run build",
"test": "mocha -r ts-node/register tests/**/*.spec.ts",
"coverage": "nyc -r lcov -e .ts -x \"*.spec.ts\" npm run test"
},
"keywords": [
"homebridge-plugin",
"bond",
"bond-home",
"rf",
"ir"
],
"repository": {
"type": "git",
"url": "git://github.com/aarons22/homebridge-bond.git"
},
"bugs": {
"url": "http://github.com/aarons22/homebridge-bond/issues"
},
"engines": {
"node": ">=10.17.0",
"homebridge": ">=1.3.0"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/flake-idgen": "^0.1.30",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.31",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"chai": "^4.2.0",
"eslint": "^7.22.0",
"homebridge": "^1.3.1",
"mocha": "^9.1.2",
"nodemon": "^2.0.19",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"ts-node": "^10.8.1",
"typescript": "^4.2.2"
},
"dependencies": {
"axios": "^0.21.4",
"axios-retry": "^3.1.8",
"biguint-format": "^1.0.2",
"flake-idgen": "^1.4.0"
},
"homepage": "https://github.com/aarons22/homebridge-bond#readme",
"author": "Aaron Sapp"
}