{ "name": "ao-coverage", "version": "0.3.0", "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 \"node ./build/index.js\"", "start": "tsc && node ./build/index.js", "start:prod": "tsc && NODE_ENV=production node ./build/index.js", "format": "prettier --write 'src/**/*.ts'", "lint": "eslint 'src/**/*.ts'", "lint:fix": "eslint --fix 'src/**/*.ts'", "test": "tsc && jest", "test:coverage": "tsc && jest --coverage", "tsc": "tsc" }, "author": "Kevin J Hoerr ", "license": "Parity-7.0.0", "dependencies": { "@types/express": "^4.17.2", "@types/jsdom": "^12.2.4", "@types/mongodb": "^3.3.12", "badgen": "3.0.1", "dotenv": "8.2.0", "express": "4.17.1", "express-winston": "^4.0.1", "handlebars": "^4.5.3", "jsdom": "^15.2.1", "mongodb": "^3.3.5", "typescript": "^3.7.3", "winston": "^3.2.1" }, "devDependencies": { "@types/jest": "^24.0.23", "@types/triple-beam": "^1.3.0", "@typescript-eslint/eslint-plugin": "^2.11.0", "@typescript-eslint/parser": "^2.11.0", "eslint": "^6.7.2", "eslint-config-prettier": "^6.7.0", "eslint-plugin-prettier": "^3.1.1", "jest": "^24.9.0", "prettier": "^1.19.1", "triple-beam": "^1.3.0", "tsc-watch": "^4.0.0" }, "jest": { "testEnvironment": "node", "roots": [ "build/" ] } }