-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.84 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
{
"name": "@ryunen344/danger-plugin-jacoco",
"version": "0.0.5",
"description": "Dnager JS plugin for jacoco",
"author": "RyuNen344",
"repository": "https://github.com/RyuNen344/danger-plugin-jacoco",
"bugs": "https://github.com/RyuNen344/danger-plugin-jacoco/issues",
"homepage": "https://github.com/RyuNen344/danger-plugin-jacoco#readme",
"keywords": [
"danger",
"danger-plugin",
"jacoco"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"engines": {
"npm": "⚠️ plz use yarn instead ⚠️",
"node": ">=18.16.1"
},
"packageManager": "[email protected]",
"scripts": {
"build": "tsc --project tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"build:dev": "ts-node -r tsconfig-paths/register ./src/index.ts",
"test": "jest",
"coverage": "jest --coverage",
"predocs": "rm -rf docs/",
"docs": "typedoc",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"format": "prettier --write 'src/**/*.{ts,tsx}'",
"upgrade": "yarn up \"*\" \"@*/*\""
},
"jest": {
"verbose": true,
"moduleNameMapper": {
"^@/(.+)$": "<rootDir>/src/$1"
},
"transform": {
"^.+\\.ts$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.json"
}
},
"coverageDirectory": "coverage"
},
"devDependencies": {
"@types/jest": "29.5.12",
"@types/node": "20.4.2",
"@typescript-eslint/eslint-plugin": "5.61.0",
"@typescript-eslint/parser": "6.2.1",
"danger": "11.3.1",
"eslint": "8.57.0",
"eslint-config-prettier": "8.8.0",
"jest": "29.7.0",
"prettier": "3.2.5",
"ts-jest": "29.1.2",
"ts-node": "10.9.2",
"tsc-alias": "1.8.8",
"tsconfig-paths": "4.2.0",
"typedoc": "0.25.8",
"typescript": "5.1.6"
},
"dependencies": {
"fast-xml-parser": "^4.0.7",
"tslog": "^4.0.0"
}
}