1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
{
"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",
"tsc": "tsc",
"doc": "typedoc src"
},
"author": "Kevin J Hoerr <kjhoerr@submelon.tech>",
"license": "Parity-7.0.0",
"dependencies": {
"badgen": "^3.2.2",
"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/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",
"!src/metadata.ts"
],
"roots": [
"src/"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 85,
"lines": 85,
"statements": 85
}
},
"coverageReporters": [
"cobertura",
"text"
]
},
"packageManager": "yarn@3.2.0"
}
|