forked from freejosh/lcov-badge
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
88 lines (88 loc) · 2.1 KB
/
package.json
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
{
"name": "lcov-badge2",
"version": "1.1.2",
"description": "Generate a badge from a LCOV report",
"keywords": [
"lcov",
"badge",
"coverage",
"test"
],
"bin": "main.js",
"main": "main.js",
"repository": {
"type": "git",
"url": "https://github.com/stevenhair/lcov-badge2.git"
},
"author": "Steve Hair <me@stevenhair.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/stevenhair/lcov-badge2/issues"
},
"homepage": "https://github.com/stevenhair/lcov-badge2#readme",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"coverage": "jest --coverage",
"postbuild": "gulp postbuild",
"prebuild": "gulp clean",
"start:dev": "ts-node src/main.ts",
"start:prod": "dist/main.js",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src"
},
"dependencies": {
"badge-up2": "^2.0.1",
"minimist": "^1.2.5",
"minimist-options": "^4.1.0",
"parse-lcov": "^1.0.4"
},
"devDependencies": {
"@eslint/compat": "^1.2.7",
"@eslint/eslintrc": "^3.3.0",
"@eslint/js": "^9.21.0",
"@stylistic/eslint-plugin-ts": "^4.0.1",
"@types/jest": "^29.2.0",
"@types/minimist": "^1.2.2",
"@types/node": "^22.10.5",
"@typescript-eslint/eslint-plugin": "^8.24.1",
"@typescript-eslint/parser": "^8.24.1",
"del": "^8.0.0",
"eslint": "^9.21.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^28.5.0",
"eslint-plugin-unicorn": "^57.0.0",
"globals": "^16.0.0",
"gulp": "^5.0.0",
"gulp-header": "^2.0.9",
"jest": "^29.2.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.4.0",
"typescript": "^5.0.3",
"typescript-eslint": "^8.24.1"
},
"engines": {
"node": ">=16"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"modulePaths": [
"<rootDir>"
],
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.ts"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"maxWorkers": 1
}
}