-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
91 lines (91 loc) · 2.59 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"displayName": "Homebridge PetSafe Smart Feed",
"name": "homebridge-petsafe-smart-feed",
"version": "2.0.4",
"description": "Homebridge plugin for PetSafe Smart Feed",
"main": "lib/index.js",
"bin": {
"petsafe-auth-cli": "petsafe-auth-cli.js"
},
"scripts": {
"start": "concurrently -c yellow,blue --kill-others \"npm:hb\" \"npm:watch:ui\"",
"watch:ui": "npm start --prefix homebridge-ui",
"test": "eslint '**/*.{js,ts,tsx}'",
"lint": "eslint '**/*.{js,ts,tsx}' --fix",
"build": "rm -rf lib && tsc",
"example": "ts-node ./examples/example.ts",
"auth-cli": "npm run build && ./petsafe-auth-cli.js",
"hb": "npm run build && homebridge -P . -U ./.homebridge",
"push-with-tags": "git push --follow-tags && node ./build/github-releaser.js",
"deploy": "standard-version && npm publish && npm run push-with-tags",
"deploy-beta": "standard-version --prerelease beta && npm publish --tag beta && npm run push-with-tags"
},
"standard-version": {
"scripts": {
"prerelease": "npm run build && npm test && npm run build --prefix homebridge-ui"
}
},
"repository": {
"type": "git",
"url": "git://github.com/dgreif/homebridge-petsafe-smart-feed.git"
},
"keywords": [
"homebridge-plugin",
"petsafe",
"smart feed",
"feeder",
"pet"
],
"author": "dgreif",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-cognito-identity-provider": "^3.159.0",
"@homebridge/plugin-ui-utils": "^0.0.19",
"got": "^11.8.5",
"rxjs": "^7.5.6"
},
"devDependencies": {
"@types/debug": "4.1.7",
"@types/node": "18.7.13",
"@typescript-eslint/eslint-plugin": "5.35.1",
"@typescript-eslint/parser": "5.35.1",
"concurrently": "7.3.0",
"conventional-github-releaser": "3.1.5",
"dotenv": "16.0.1",
"eslint": "8.23.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"homebridge": "1.5.0",
"prettier": "2.7.1",
"standard-version": "9.5.0",
"ts-node": "10.9.1",
"typescript": "4.7.4"
},
"engines": {
"node": ">=12",
"homebridge": ">=1.0.0"
},
"bugs": {
"url": "https://github.com/dgreif/homebridge-petsafe-smart-feed/issues"
},
"homepage": "https://github.com/dgreif/homebridge-petsafe-smart-feed#readme",
"funding": [
{
"type": "paypal",
"url": "https://www.paypal.me/dustingreif"
},
{
"type": "github",
"url": "https://github.com/sponsors/dgreif"
}
],
"files": [
"lib",
"petsafe-auth-cli.js",
"CHANGELOG.md",
"config.schema.json"
],
"workspaces": [
"homebridge-ui"
]
}