forked from dgreif/ring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 3.49 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "ring-client-api",
"version": "9.17.0",
"description": "Unofficial API for Ring doorbells, cameras, security alarm system and smart lighting",
"main": "lib/api/index.js",
"bin": {
"ring-auth-cli": "ring-auth-cli.js",
"ring-device-data-cli": "ring-device-data-cli.js"
},
"scripts": {
"test": "jest && eslint '**/*.ts'",
"watch:tests": "jest --watch",
"lint": "eslint '**/*.ts' --fix",
"build": "rm -rf lib && tsc --declaration",
"example": "npm run build && node ./lib/examples/example.js",
"api-example": "npm run build && node ./lib/examples/api-example.js",
"record-example": "npm run build && node ./lib/examples/record-example.js",
"stream-example": "npm run build && node ./lib/examples/stream-example.js",
"browser-example": "npm run build && node ./lib/examples/browser-example.js",
"auth-cli": "npm run build && ./ring-auth-cli.js",
"device-data-cli": "npm run build && ./ring-device-data-cli.js",
"hb": "npm run build && ./build/package-homebridge.sh && homebridge -P ./release-homebridge -U ./.homebridge",
"prepare-npm-packages": "./build/package-api.sh && ./build/package-homebridge.sh",
"push-with-tags": "git push --follow-tags && node ./build/github-releaser.js",
"deploy": "standard-version && npm publish ./release-api && npm publish ./release-homebridge && npm run push-with-tags",
"deploy-beta": "standard-version --prerelease beta && npm publish --tag beta ./release-api && npm publish --tag beta ./release-homebridge && npm run push-with-tags"
},
"standard-version": {
"scripts": {
"prerelease": "npm run build && npm test",
"posttag": "npm run prepare-npm-packages"
}
},
"repository": {
"type": "git",
"url": "git://github.com/dgreif/ring.git"
},
"keywords": [
"ring",
"doorbell",
"doorbot",
"camera",
"alarm",
"smart",
"light",
"beam",
"security",
"client",
"api"
],
"author": "dgreif",
"license": "MIT",
"dependencies": {
"@homebridge/camera-utils": "2.0.0",
"colors": "1.4.0",
"debug": "4.3.1",
"got": "11.8.2",
"rxjs": "6.6.7",
"sdp": "3.0.2",
"sip": "0.0.6",
"socket.io-client": "2.4.0",
"stun": "2.1.0",
"systeminformation": "5.6.12",
"uuid": "8.3.2",
"werift-rtp": "0.0.5"
},
"devDependencies": {
"@nestjs/common": "7.6.15",
"@nestjs/core": "7.6.15",
"@types/debug": "4.1.5",
"@types/jest": "26.0.22",
"@types/node": "14.14.37",
"@types/socket.io-client": "1.4.36",
"@types/uuid": "8.3.0",
"@typescript-eslint/eslint-plugin": "4.21.0",
"@typescript-eslint/parser": "4.21.0",
"conventional-github-releaser": "3.1.5",
"dotenv": "8.2.0",
"eslint": "7.24.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-jest": "24.3.4",
"eslint-plugin-prettier": "3.3.1",
"express": "4.17.1",
"homebridge": "1.3.4",
"homebridge-config-ui-x": "4.41.0",
"jest": "26.6.3",
"prettier": "2.2.1",
"reflect-metadata": "0.1.13",
"rimraf": "3.0.2",
"standard-version": "9.2.0",
"ts-jest": "26.5.4",
"typescript": "4.2.4"
},
"engines": {
"node": "^10 || ^12.20 || ^14",
"homebridge": ">=1.0.0"
},
"bugs": {
"url": "https://github.com/dgreif/ring/issues"
},
"homepage": "https://github.com/dgreif/ring#readme",
"funding": [
{
"type": "paypal",
"url": "https://www.paypal.me/dustingreif"
},
{
"type": "github",
"url": "https://github.com/sponsors/dgreif"
}
]
}