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
|
{
"name": "ao-coverage",
"version": "0.3.1",
"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"
},
"author": "Kevin J Hoerr <kjhoerr@submelon.tech>",
"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.4.0",
"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",
"ts-jest": "^24.2.0",
"tsc-watch": "^4.0.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"collectCoverageFrom": [
"src/**/*.ts",
"!src/**/*.test.ts"
],
"roots": [
"src/"
]
}
}
|