camera-probe
Version:
Realtime scanning and discovery of networked cameras.
116 lines (115 loc) • 2.72 kB
JSON
{
"name": "camera-probe",
"version": "7.0.5",
"description": "Realtime scanning and discovery of networked cameras.",
"author": "Patrick Michalina <patrickmichalina@mac.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/patrickmichalina/camera-probe.git"
},
"bugs": {
"url": "https://github.com/patrickmichalina/camera-probe/issues"
},
"homepage": "https://github.com/patrickmichalina/camera-probe#readme",
"keywords": [
"onvif",
"camera",
"cameras",
"rxjs",
"node",
"typescript",
"udp",
"electron",
"webcam",
"nvt",
"ptz",
"rtsp"
],
"main": "dist/camera-probe-cjs.js",
"module": "dist/camera-probe-esm.js",
"types": "dist/index.d.ts",
"bin": {
"camera-probe": "dist/camera-probe"
},
"files": [
"dist"
],
"scripts": {
"test": "jest",
"test.watch": "jest --watch",
"lint": "tslint -p tsconfig.json",
"rollup": "rollup -c",
"cli": "ts-node -P tsconfig.json -O '{\"module\":\"commonjs\"}' ./cli",
"build": "npm run rollup && npm run cli"
},
"dependencies": {
"@akanass/rx-http-request": "^3.3.0",
"ping-rx": "^1.0.0",
"rxjs": "^6.5.5",
"typescript-monads": "^4.0.3",
"xmldom": "0.3.0"
},
"devDependencies": {
"@types/jest": "^25.2.2",
"@types/node": "^14.0.1",
"@types/xmldom": "^0.1.29",
"jest": "^26.0.1",
"rollup": "^2.10.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-typescript2": "^0.27.1",
"semantic-release": "^17.0.7",
"ts-jest": "^26.0.0",
"ts-node": "^8.10.1",
"tslint": "^6.1.2",
"tslint-immutable": "^6.0.1",
"typescript": "^3.9.2"
},
"jest": {
"preset": "ts-jest"
},
"release": {
"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"
]
}
}
]
]
}
}