UNPKG

@openhps/video

Version:

Open Hybrid Positioning System

136 lines (135 loc) 4.21 kB
{ "name": "@openhps/video", "version": "0.1.14", "description": "Open Hybrid Positioning System", "author": "Maxim Van de Wynckel", "license": "Apache-2.0", "repository": { "type": "git", "url": "https://github.com/OpenHPS/openhps-video.git" }, "bugs": { "url": "https://github.com/OpenHPS/openhps-video/issues" }, "homepage": "https://openhps.org", "publishConfig": { "access": "public" }, "sideEffects": false, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", "unpkg": "./dist/web/openhps-video.min.js", "jsdelivr": "./dist/web/openhps-video.min.js", "lsd:module": true, "browser": { "typescript": false, "microtime": false }, "module": "./dist/esm5/index.js", "es2015": "./dist/esm/index.js", "files": [ "dist/**/*", "src/**/*", "components/**/*.jsonld", "config/**/*.json", "LICENSE" ], "scripts": { "example": "shx cp node_modules/@openhps/*/dist/web/*.js examples/common/ && shx cp dist/web/*.js examples/common/ && serve ./examples", "test": "mocha --config test/.mocharc.json", "cover": "nyc mocha --config test/.mocharc.json && nyc report --reporter=cobertura", "cover:ci": "nyc mocha --config test/.mocharc.json --reporter mocha-junit-reporter && nyc report --reporter=cobertura", "lint": "eslint src/**", "clean": "shx rm -rf ./dist && shx rm -rf ./docs/out", "build": "npm run clean && npm-run-all --parallel build:ts:* && npm run build:webpack", "build:components": "componentsjs-generator", "build:quick": "npm-run-all --parallel build:ts:* && npm run build:webpack", "build:typedoc": "typedoc --options docs/typedoc.json", "build:ts:cjs": "tsc --build ./tsconfig/tsconfig.bundle.cjs.json", "build:ts:esm": "tsc --build ./tsconfig/tsconfig.bundle.esm.json", "build:ts:esm5": "tsc --build ./tsconfig/tsconfig.bundle.esm5.json", "build:ts:types": "tsc --build ./tsconfig/tsconfig.bundle.types.json", "build:webpack": "npm-run-all --parallel build:webpack:*", "build:webpack:prod": "webpack --env prod --", "build:webpack:dev": "webpack --env dev --", "deploy:typedoc": "gh-pages -d ./docs/out", "bump:development": "standard-version --prerelease alpha -m 'chore(alpha): %s' --skip.changelog", "bump:beta": "standard-version --prerelease beta -m 'chore(beta): %s' --skip.changelog", "bump:release": "standard-version -m 'chore(release): %s' --skip.changelog" }, "keywords": [ "openhps", "video" ], "dependencies": {}, "peerDependencies": { "@openhps/core": ">=0.6.4", "reflect-metadata": ">=0.1.13" }, "devDependencies": { "@commitlint/cli": "^18.4.3", "@commitlint/config-conventional": "^18.4.3", "@openhps/core": ">=0.6.4", "@types/chai": "^4.3.11", "@types/mocha": "^10.0.6", "@types/node": "^20.10.0", "@typescript-eslint/eslint-plugin": "^6.13.1", "@typescript-eslint/parser": "^6.13.1", "chai": "^4.3.10", "eslint": "^8.54.0", "eslint-config-prettier": ">=9.0.0", "eslint-plugin-import": "^2.29.0", "eslint-plugin-jsdoc": "^46.9.0", "eslint-plugin-prettier": ">=5.0.1", "gh-pages": "^6.1.0", "husky": "^8.0.3", "mocha": "^10.2.0", "mocha-junit-reporter": "^2.2.1", "npm-run-all": "^4.1.5", "nyc": "^15.1.0", "prettier": "^3.1.0", "reflect-metadata": ">=0.1.13", "serve": "^14.2.1", "shx": "^0.3.4", "standard-version": "^9.5.0", "terser-webpack-plugin": "^5.3.9", "ts-node": "^10.9.1", "typedoc": "^0.25.4", "typescript": "^5.3.2", "webpack": "^5.89.0", "webpack-cli": "^5.1.4" }, "nyc": { "branches": 0, "lines": 0, "functions": 0, "statements": 0, "include": [ "src" ], "exclude": [ "test" ], "extension": [ ".ts" ], "reporter": [ "lcov", "text-summary" ], "cache": true, "all": true, "check-coverage": true, "report-dir": "./coverage" }, "engines": { "node": ">=12.0.0" }, "husky": { "hooks": { "pre-commit": "npm run lint", "pre-push": "npm run test", "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" } } }