generated from homebridge/homebridge-plugin-template
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 1.88 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
65
{
"displayName": "Homebridge Spotify Speaker",
"name": "homebridge-spotify-speaker",
"version": "1.3.3",
"description": "Homebridge plugin that creates a speaker that plays a specific Spotify playlist",
"license": "MIT",
"author": "Joey Hage <contact@jmhage.com>",
"repository": {
"type": "git",
"url": "git://github.com:joeyhage/homebridge-spotify-speaker.git"
},
"bugs": {
"url": "https://github.com/joeyhage/homebridge-spotify-speaker/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/joeyhage"
},
"engines": {
"node": ">=14.18.1",
"homebridge": ">=1.3.5"
},
"main": "dist/index.js",
"scripts": {
"build": "rimraf ./dist && tsc",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"lint": "eslint src/**.ts --max-warnings=0",
"pre-commit": "lint-staged",
"prepare": "husky install",
"prepublishOnly": "npm run lint && npm run format && npm run build",
"watch": "npm run build && npm link && nodemon",
"test": "jest --silent=false --runInBand",
"test-ci": "jest --silent=true --runInBand --testPathPattern='test.ts'"
},
"keywords": [
"homebridge-plugin",
"homebridge",
"spotify",
"speaker",
"music"
],
"dependencies": {
"spotify-web-api-node": "^5.0.2"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@types/spotify-web-api-node": "^5.0.7",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"dotenv": "^16.0.3",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"homebridge": "^1.6.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.0",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"rimraf": "^4.4.1",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}