forked from dgreif/ring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.78 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
{
"name": "ring-client-api",
"version": "5.7.0-alpha.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"
},
"scripts": {
"test": "eslint **/*.ts",
"lint": "eslint **/*.ts --fix",
"build": "rm -rf lib && tsc --declaration",
"example": "npm run build && node ./lib/examples/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",
"cli": "npm run build && ./ring-auth-cli.js",
"test-homebridge": "npm run build && ./build/package-homebridge.sh && homebridge -P ./release-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-alpha": "standard-version --prerelease alpha && npm publish --tag alpha release-api && npm publish --tag alpha 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": {
"axios": "^0.19.0",
"colors": "^1.3.3",
"debug": "^4.1.1",
"execa": "^2.0.4",
"get-port": "^5.0.0",
"nat-puncher": "^0.1.3",
"public-ip": "^3.1.0",
"rxjs": "^6.5.2",
"sdp": "^2.9.0",
"sip": "0.0.5",
"socket.io": "^2.2.0",
"stun": "^2.0.0"
},
"devDependencies": {
"@types/debug": "^4.1.4",
"@types/node": "^11.9.5",
"@types/socket.io-client": "^1.4.32",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"conventional-github-releaser": "^3.1.3",
"dotenv": "^8.0.0",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"express": "^4.17.1",
"homebridge": "^0.4.50",
"homebridge-config-ui-x": "^4.5.1",
"prettier": "^1.18.2",
"rimraf": "^2.6.3",
"standard-version": "^6.0.1",
"typescript": "^3.5.3"
},
"engines": {
"node": ">=8.3.0"
},
"bugs": {
"url": "https://github.com/dgreif/ring/issues"
},
"homepage": "https://github.com/dgreif/ring#readme"
}