Skip to content

Commit c72be2a

Browse files
chore: update dependencies (#24)
1 parent 9c1fb49 commit c72be2a

File tree

6 files changed

+114
-73
lines changed

6 files changed

+114
-73
lines changed

.node-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
12.0.0
1+
12.4.0

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
12.0.0
1+
12.4.0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<h1 align="center" style="border-bottom: none;">onvif-probe-rx</h1>
2-
<h3 align="center">Continous monitoring of your home network ONVIF IP cameras.</h3>
2+
<h3 align="center">Continous monitoring of ONVIF IP cameras.</h3>
33
<p align="center">
44
<a href="https://circleci.com/gh/patrickmichalina/onvif-probe-rx">
55
<img alt="circeci" src="https://circleci.com/gh/patrickmichalina/onvif-probe-rx.svg?style=shield">

package-lock.json

Lines changed: 94 additions & 57 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,11 @@
1919
"node",
2020
"typescript",
2121
"udp",
22-
"elecctron"
22+
"electron",
23+
"webcam",
24+
"nvt",
25+
"ptz",
26+
"rtsp"
2327
],
2428
"main": "dist/onvif-probe-rx-cjs.js",
2529
"module": "dist/onvif-probe-rx-esm.js",
@@ -39,25 +43,25 @@
3943
"object-hash": "^1.3.1",
4044
"ping-rx": "^1.0.0",
4145
"rxjs": "^6.5.2",
42-
"typescript-monads": "^3.12.0",
46+
"typescript-monads": "^3.13.0",
4347
"uuid": "^3.3.2",
4448
"xmldom": "^0.1.27"
4549
},
4650
"devDependencies": {
47-
"@types/fs-extra": "^5.1.0",
48-
"@types/node": "^12.0.0",
51+
"@types/fs-extra": "^7.0.0",
52+
"@types/node": "^12.0.7",
4953
"@types/object-hash": "^1.2.0",
5054
"@types/uuid": "^3.4.4",
5155
"@types/xmldom": "^0.1.29",
52-
"fs-extra": "^8.0.0",
53-
"rollup": "^1.11.3",
54-
"rollup-plugin-commonjs": "^9.3.4",
55-
"rollup-plugin-typescript2": "^0.21.0",
56+
"fs-extra": "^8.0.1",
57+
"rollup": "^1.14.4",
58+
"rollup-plugin-commonjs": "^10.0.0",
59+
"rollup-plugin-typescript2": "^0.21.1",
5660
"semantic-release": "^15.13.12",
57-
"ts-node": "^8.1.0",
58-
"tslint": "^5.16.0",
59-
"tslint-immutable": "^5.5.2",
60-
"typescript": "^3.4.5"
61+
"ts-node": "^8.2.0",
62+
"tslint": "^5.17.0",
63+
"tslint-immutable": "^6.0.0",
64+
"typescript": "^3.5.1"
6165
},
6266
"release": {
6367
"branch": "master",

src/socket-stream.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { createSocket, SocketType } from 'dgram'
2-
import { Observable, Observer, Subject, interval } from 'rxjs'
32
import { AddressInfo } from 'net'
43
import { startWith, filter, switchMap, mapTo } from 'rxjs/operators'
4+
import { Observable, Observer, Subject, interval } from 'rxjs'
55

66
export interface SocketMessage {
77
readonly buffer: Buffer

0 commit comments

Comments
 (0)