{ "name": "ao-coverage", "version": "0.5.4", "description": "Simple code coverage storage and server", "repository": { "type": "git", "url": "https://git.submelon.dev/kjhoerr/ao-coverage.git" }, "main": "build/index.js", "scripts": { "start:dev": "tsc-watch --onSuccess \"yarn node ./build/index.js\"", "start": "tsc && yarn node ./build/index.js", "start:prod": "tsc && NODE_ENV=production yarn node ./build/index.js", "format": "prettier --write 'src/**/*.ts'", "lint": "eslint 'src/**/*.ts'", "lint:fix": "eslint --fix 'src/**/*.ts'", "test": "jest", "test:coverage": "jest --coverage", "test:debug": "node --expose-gc $(yarn bin jest) --logHeapUsage", "tsc": "tsc", "doc": "typedoc src" }, "author": "Kevin J Hoerr ", "license": "Parity-7.0.0", "dependencies": { "badgen": "^3.2.2", "bcrypt": "^5.0.1", "bson": "^4.6.2", "dotenv": "^16.0.0", "express": "^4.17.3", "express-winston": "^4.2.0", "handlebars": "^4.7.7", "jsdom": "^19.0.0", "logform": "^2.4.0", "mongodb": "^4.5.0", "uuid": "^8.3.2", "winston": "^3.7.2", "winston-transport": "^4.5.0", "xml2js": "^0.4.23" }, "devDependencies": { "@microsoft/tsdoc": "^0.13.2", "@types/bcrypt": "^5.0.0", "@types/express": "^4.17.13", "@types/jest": "^27.4.1", "@types/jsdom": "^16.2.14", "@types/node": "^17.0.23", "@types/supertest": "^2.0.12", "@types/triple-beam": "^1.3.2", "@types/uuid": "^8.3.4", "@types/xml2js": "^0.4.9", "@typescript-eslint/eslint-plugin": "^5.18.0", "@typescript-eslint/parser": "^5.18.0", "eslint": "^8.12.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-prettier": "^4.0.0", "eslint-plugin-tsdoc": "^0.2.14", "jest": "^27.5.1", "prettier": "^2.6.2", "supertest": "^6.2.2", "triple-beam": "^1.3.0", "ts-jest": "^27.1.4", "tsc-watch": "^5.0.2", "typedoc": "^0.22.13", "typescript": "^4.6.3" }, "jest": { "preset": "ts-jest", "testEnvironment": "node", "collectCoverageFrom": [ "src/**/*.ts", "!src/**/*.test.ts", "!src/**/__tests__/**/*.ts", "!src/index.ts" ], "roots": [ "src/" ], "coverageThreshold": { "global": { "branches": 80, "functions": 85, "lines": 85, "statements": 85 } }, "coverageReporters": [ "cobertura", "text" ] }, "packageManager": "yarn@3.2.0" }