UNPKG

axis-core

Version:

A Node.js library written in TypeScript containing shared behavior for the other packages, e.g. code handling communication and authentication with Axis Communication cameras.

63 lines (62 loc) 1.79 kB
{ "name": "axis-core", "version": "3.0.1", "description": "A Node.js library written in TypeScript containing shared behavior for the other packages, e.g. code handling communication and authentication with Axis Communication cameras.", "keywords": [ "axis", "communications", "camera", "device", "communication", "authentication" ], "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": ">=22.0.0" }, "files": [ "src/**/*.js", "src/**/*.d.ts" ], "scripts": { "clean": "rimraf --glob \"./+(sample|src|test)/**/*.+(d.ts|d.ts.map|js|js.map)\"", "build": "yarn clean && tsc", "start": "yarn build && node ./sample/index.js", "test": "jest", "lint": "eslint . --ext .ts", "prepack": "yarn build", "preversion": "git add ./CHANGELOG.md", "postversion": "git push --follow-tags" }, "dependencies": { "uuid": "11.0.5" }, "devDependencies": { "@types/express": "5.0.0", "@types/jest": "29.5.14", "@types/node": "22.13.1", "@types/passport-http": "0.3.11", "@types/uuid": "10.0.0", "@typescript-eslint/eslint-plugin": "8.24.0", "@typescript-eslint/parser": "8.24.0", "eslint": "9.20.1", "express": "4.21.2", "jest": "29.7.0", "passport": "0.7.0", "passport-http": "0.3.0", "rimraf": "6.0.1", "ts-jest": "29.2.5", "typescript": "5.7.3" } }