UNPKG

onvif-ptz-cli

Version:

Node.js cli tool for controlling PTZ cameras via the ONVIF protocol.

45 lines (44 loc) 929 B
{ "name": "onvif-ptz-cli", "version": "2.0.0", "description": "Node.js cli tool for controlling PTZ cameras via the ONVIF protocol.", "bin": { "onvif-ptz": "bin/cli.js" }, "type": "module", "main": "bin/cli.js", "keywords": [ "onvif", "cli", "camera", "ptz" ], "author": "Mark Lagendijk <mark@lagendijk.nl>", "license": "MIT", "scripts": { "lint": "prettier --write . && eslint --cache --fix ." }, "dependencies": { "chalk": "^5.3.0", "lodash": "^4.17.21", "node-onvif": "^0.1.7", "table": "^6.8.1", "yargs": "^17.7.2" }, "devDependencies": { "eslint": "^8.48.0", "eslint-config-prettier": "^9.0.0", "husky": "^8.0.3", "lint-staged": "^14.0.1", "prettier": "^3.0.3" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*": "prettier --write", "*.js": "eslint --cache --fix" } }