axis-discovery
Version:
A Node.js client library written in TypeScript capable of searching for Axis Communication cameras using Bonjour and SSDP (UPnP).
70 lines (69 loc) • 1.93 kB
JSON
{
"name": "axis-discovery",
"version": "3.0.1",
"description": "A Node.js client library written in TypeScript capable of searching for Axis Communication cameras using Bonjour and SSDP (UPnP).",
"keywords": [
"axis",
"communications",
"camera",
"device",
"discovery",
"bonjour",
"zero-configuration",
"ssdp",
"upnp"
],
"homepage": "https://github.com/FantasticFiasco/axis-js",
"repository": {
"type": "git",
"url": "https://github.com/FantasticFiasco/axis-js.git"
},
"bugs": {
"url": "https://github.com/FantasticFiasco/axis-js/issues"
},
"author": "Mattias Kindborg <mattias.kindborg@gmail.com> (https://twitter.com/FantasticFiasco)",
"license": "Apache-2.0",
"main": "./src/index.js",
"types": "./src/index.d.ts",
"engines": {
"node": ">=16.0.0"
},
"files": [
"src/**/*.js",
"src/**/*.d.ts"
],
"scripts": {
"clean": "rimraf \"./+(sample|src|test)/**/*.+(d.ts|d.ts.map|js|js.map)\" ./coverage",
"build": "yarn clean && tsc",
"start": "yarn build && node ./sample/index.js",
"test": "jest",
"lint": "eslint . --ext .ts",
"coverage": "jest --coverage && coveralls < coverage/lcov.info",
"prepack": "yarn build",
"preversion": "git add ./CHANGELOG.md",
"postversion": "git push --follow-tags"
},
"dependencies": {
"@fantasticfiasco/expect": "1.1.0",
"axis-discovery-bonjour": "3.0.0",
"axis-discovery-ssdp": "8.0.1",
"debug": "4.3.4"
},
"devDependencies": {
"@types/debug": "4.1.7",
"@types/jest": "29.5.0",
"@types/node": "18.15.11",
"@typescript-eslint/eslint-plugin": "5.57.1",
"@typescript-eslint/parser": "5.57.1",
"coveralls": "3.1.1",
"eslint": "8.38.0",
"jest": "29.5.0",
"rimraf": "3.0.2",
"ts-jest": "29.1.0",
"typescript": "5.0.4"
},
"resolutions": {
"json-schema": ">=0.4.0",
"minimist": ">=1.2.6"
}
}