UNPKG

@sailboat-computer/health-monitoring

Version:

Comprehensive health monitoring system for sailboat computer v3 with marine-specific health checks

91 lines (90 loc) 2.27 kB
{ "name": "@sailboat-computer/health-monitoring", "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" }, "repository": { "type": "git", "url": "git+https://github.com/sailboat-computer/sailboat-computer-v3.git" }, "version": "1.1.56", "description": "Comprehensive health monitoring system for sailboat computer v3 with marine-specific health checks", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "tsc && npm run post-build", "build:watch": "tsc --watch", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "lint": "eslint src/**/*.ts", "lint:fix": "eslint src/**/*.ts --fix", "clean": "rm -rf dist", "post-build": "cp -r dist/src/* dist/ && rm -rf dist/src" }, "keywords": [ "sailboat", "marine", "health-monitoring", "system-health", "marine-sensors", "diagnostics" ], "author": "Sailboat Computer Team", "license": "MIT", "dependencies": { "@sailboat-computer/sailboat-types": "^1.1.55", "@sailboat-computer/validation": "^1.1.55", "uuid": "^11.1.0" }, "peerDependencies": { "@sailboat-computer/resilience": "^1.1.55" }, "devDependencies": { "@types/jest": "^29.5.0", "@types/node": "^18.15.0", "@types/uuid": "^10.0.0", "@typescript-eslint/eslint-plugin": "^5.57.0", "@typescript-eslint/parser": "^5.57.0", "eslint": "^8.37.0", "jest": "^29.5.0", "ts-jest": "^29.1.0", "typescript": "^5.0.0" }, "jest": { "preset": "ts-jest", "testEnvironment": "node", "roots": [ "<rootDir>/src", "<rootDir>/tests" ], "testMatch": [ "**/__tests__/**/*.ts", "**/?(*.)+(spec|test).ts" ], "collectCoverageFrom": [ "src/**/*.ts", "!src/**/*.d.ts", "!src/**/index.ts" ], "coverageThreshold": { "global": { "branches": 80, "functions": 80, "lines": 80, "statements": 80 } } }, "exports": { ".": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "./marine": { "types": "./dist/marine/index.d.ts", "default": "./dist/marine/index.js" } } }