forked from patrickmichalina/onvif-rx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 2.84 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
113
{
"name": "onvif-rx",
"version": "0.0.0-development",
"description": "Interact with ONVIF cameras and devices using RXJS",
"author": "Patrick Michalina <[email protected]>",
"main": "onvif-rx-cjs.js",
"module": "onvif-rx-esm.js",
"browser": "onvif-rx-umd.js",
"types": "node.d.ts",
"license": "MIT",
"keywords": [
"onvif",
"camera",
"video",
"rtsp",
"rtp",
"rxjs",
"node",
"typescript",
"udp",
"electron",
"universal",
"ptz"
],
"repository": {
"type": "git",
"url": "https://github.com/patrickmichalina/onvif-rx"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node-dev src/index.ts",
"lint": "tsc && tslint -p tsconfig.json",
"build": "npm run rollup && npm run minify",
"minify": "terser dist/onvif-rx-umd.js -o dist/onvif-rx-umd.min.js --source-map -c -m",
"rollup": "rollup -c",
"watch": "rollup -cw",
"docs": "typedoc src --theme markdown --out docs --readme none",
"gen.api": "rm -rf src/api && ts-node scripts/api/ast.ts && npm run docs"
},
"dependencies": {
"@akanass/rx-http-request": "^3.3.0",
"rxjs": "^6.5.3",
"typescript-monads": "^3.13.0",
"xml-js": "^1.6.11",
"xmldom": "^0.1.27"
},
"devDependencies": {
"@types/fs-extra": "^8.0.1",
"@types/node": "^12.12.9",
"@types/node-fetch": "^2.5.3",
"@types/xml-js": "^1.0.0",
"@types/xmldom": "^0.1.29",
"fs-extra": "^8.1.0",
"node-fetch": "^2.6.0",
"rollup": "^1.27.2",
"rollup-plugin-typescript2": "^0.25.2",
"semantic-release": "^15.13.31",
"terser": "^4.4.0",
"ts-node-dev": "^1.0.0-pre.43",
"ts-simple-ast": "^21.0.4",
"tslib": "^1.10.0",
"tslint": "^5.20.1",
"tslint-immutable": "^6.0.1",
"typedoc": "^0.15.2",
"typedoc-plugin-markdown": "^2.2.11",
"typescript": "^3.7.2"
},
"release": {
"pkgRoot": "dist",
"branch": "master",
"plugins": [
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/commit-analyzer",
{
"preset": "angular",
"releaseRules": [
{
"type": "docs",
"scope": "README",
"release": "patch"
},
{
"type": "refactor",
"release": "patch"
}
],
"parserOpts": {
"noteKeywords": [
"BREAKING CHANGE",
"BREAKING CHANGES",
"BREAKING"
]
}
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "angular",
"parserOpts": {
"noteKeywords": [
"BREAKING CHANGE",
"BREAKING CHANGES",
"BREAKING"
]
}
}
]
]
}
}