-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
61 lines (61 loc) · 1.98 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
{
"name": "homebridge-pc-volume",
"version": "1.2.4",
"description": "Control your system's volume using Apple's HomeKit",
"author": "Joseph Duffy",
"license": "MIT",
"main": "build/index.js",
"preferGlobal": true,
"scripts": {
"prepublishOnly": "rm -rf build && npm run build",
"build": "tsc",
"build:watch": "nodemon -e ts,json --watch src --watch tsconfig.json --watch package.json --exec \"tsc\"",
"build:watch:debug": "nodemon -e ts,json --watch src --watch tsconfig.json --watch package.json --watch .homebridge-debug/config.json --exec \"tsc && homebridge --debug --user-storage-path .homebridge-debug --plugin-path .\"",
"test": "jest",
"test:watch": "npm run test -- --watch",
"test:watchAll": "npm run test -- --watchAll",
"test:coverage": "npm run test -- --coverage",
"test:coverage:watch": "npm run test -- --coverage --watch",
"lint": "eslint . --ext .js,.ts",
"lint:fix": "npm run lint -- --fix",
"lint-staged": "lint-staged",
"format": "prettier --cache --write \"src/**/*.ts\" jest.config.js",
"format:check": "prettier --cache --check \"src/**/*.ts\" jest.config.js",
"prepare": "husky install"
},
"dependencies": {
"loudness": "^0.4.1"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "~12.20.27",
"@types/sinon": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^8.1.0",
"homebridge": "^1.1.7",
"husky": "^8.0.1",
"jest": "^27.2.4",
"lint-staged": "^13.0.0",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"sinon": "^14.0.0",
"ts-jest": "^27.0.5",
"typescript": "^4.1.5"
},
"engines": {
"node": ">=14.0.0",
"homebridge": ">=0.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/JosephDuffy/homebridge-pc-volume.git"
},
"keywords": [
"homebridge-plugin",
"volume",
"mac",
"linux"
]
}