-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
55 lines (55 loc) · 1.37 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
{
"name": "homebridge-infinitude",
"version": "0.4.1",
"description": "Infinitude Plugin for Homebridge",
"license": "ISC",
"main": "src/index.js",
"keywords": [
"homebridge-plugin"
],
"repository": {
"type": "git",
"url": "git://github.com/dotfortun3-code/homebridge-infinitude-schedules.git"
},
"bugs": {
"url": "https://github.com/dotfortun3-code/homebridge-infinitude-schedules/issues"
},
"engines": {
"node": ">=8.9.0",
"homebridge": ">=0.4.38"
},
"author": {
"name": "Jim He"
},
"scripts": {
"dropcache": "rm -f ./node_modules/node-persist/storage/accessories/cachedAccessories && rm -f ./accessories/cachedAccessories",
"test": "jest",
"prettier": "prettier --write src/**/*.js",
"precommit": "lint-staged",
"start": "homebridge --debug --plugin-path . --user-storage-path ."
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"axios": "^0.18.1",
"fast-xml-parser": "^3.16.0",
"threads": "^0.12.0",
"yarn": "^1.22.4"
},
"devDependencies": {
"eslint": "^5.3.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^2.3.0",
"jest": "^24.8.0",
"jest-mock-axios": "^3.0.0",
"lint-staged": "^8.1.7",
"nock": "^10.0.6",
"prettier": "^1.14.2"
}
}