{
|
|
"name": "ao-coverage",
|
|
"version": "0.4.3",
|
|
"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": "jest",
|
|
"test:coverage": "jest --coverage",
|
|
"tsc": "tsc",
|
|
"doc": "typedoc src"
|
|
},
|
|
"author": "Kevin J Hoerr <kjhoerr@submelon.tech>",
|
|
"license": "Parity-7.0.0",
|
|
"dependencies": {
|
|
"@types/express": "^4.17.6",
|
|
"@types/jsdom": "^12.2.4",
|
|
"@types/mongodb": "^3.5.16",
|
|
"badgen": "^3.0.1",
|
|
"dotenv": "^8.2.0",
|
|
"express": "^4.17.1",
|
|
"express-winston": "^4.0.3",
|
|
"handlebars": "^4.7.6",
|
|
"jsdom": "^15.2.1",
|
|
"mongodb": "^3.5.7",
|
|
"typescript": "^3.8.3",
|
|
"winston": "^3.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"@microsoft/tsdoc": "^0.12.19",
|
|
"@types/jest": "^25.2.1",
|
|
"@types/supertest": "^2.0.9",
|
|
"@types/triple-beam": "^1.3.0",
|
|
"@typescript-eslint/eslint-plugin": "^2.31.0",
|
|
"@typescript-eslint/parser": "^2.31.0",
|
|
"eslint": "^6.8.0",
|
|
"eslint-config-prettier": "^6.11.0",
|
|
"eslint-plugin-prettier": "^3.1.3",
|
|
"eslint-plugin-tsdoc": "^0.2.4",
|
|
"jest": "^25.5.4",
|
|
"prettier": "^1.19.1",
|
|
"supertest": "^4.0.2",
|
|
"triple-beam": "^1.3.0",
|
|
"ts-jest": "^25.5.0",
|
|
"tsc-watch": "^4.2.3",
|
|
"typedoc": "^0.17.6"
|
|
},
|
|
"jest": {
|
|
"preset": "ts-jest",
|
|
"testEnvironment": "node",
|
|
"collectCoverageFrom": [
|
|
"src/**/*.ts",
|
|
"!src/**/*.test.ts",
|
|
"!src/**/__tests__/**/*.ts",
|
|
"!src/index.ts"
|
|
],
|
|
"roots": [
|
|
"src/"
|
|
]
|
|
}
|
|
}
|