forked from mshanemc/homebridge-griddy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.36 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
{
"displayName": "Homebridge Griddy",
"name": "@mshanemc/homebridge-griddy",
"version": "1.3.1",
"description": "Helps devices behave according to forecast and real-time power prices",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/mshanemc/homebridge-griddy.git"
},
"bugs": {
"url": "https://github.com/mshanemc/homebridge-griddy/issues"
},
"engines": {
"node": ">=10.17.0",
"homebridge": ">0.4.53"
},
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/**.ts",
"watch": "npm run build && npm link && nodemon",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run lint && npm run build"
},
"keywords": [
"homebridge-plugin"
],
"dependencies": {
"moment": "^2.27.0",
"request": "^2.34",
"request-promise-native": "^1.0.8"
},
"devDependencies": {
"@types/node": "^14.0.14",
"@types/request-promise-native": "^1.0.17",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"eslint": "^7.3.1",
"eslint-plugin-prettier": "^3.1.4",
"homebridge": "^1.1.1",
"nodemon": "^2.0.4",
"rimraf": "^3.0.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
}
}