forked from credding/homebridge-sonos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.31 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
{
"displayName": "Sonos",
"name": "@the-dan/homebridge-sonos-faves",
"version": "0.2.7",
"description": "",
"keywords": [
"homebridge",
"homebridge-plugin",
"sonos"
],
"homepage": "https://github.com/the-dan/homebridge-sonos#README.md",
"bugs": {
"url": "https://github.com/the-dan/homebridge-sonos/issues"
},
"license": "ISC",
"author": "Chandler Redding",
"files": [
"lib/",
"config.schema.json"
],
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/the-dan/homebridge-sonos.git"
},
"scripts": {
"clean": "rimraf \"./lib/*\"",
"lint": "eslint --max-warnings=0 \"./src/\" && prettier --check \"./src\"",
"compile": "tsc",
"build": "npm run clean && npm run lint && npm run compile",
"prepare": "npm run build"
},
"dependencies": {
"@credding/homebridge-jsx": "^0.2.2",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.0",
"@types/node-fetch": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"homebridge": "^1.1.6",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"typescript": "^4.1.2"
},
"engines": {
"homebridge": ">=1.0.0"
}
}