-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.85 KB
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.7",
"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": "yarn@3.8.7",
"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": "30.0.0",
"@types/node": "18.19.111",
"@typescript-eslint/eslint-plugin": "^8.29.1",
"@typescript-eslint/parser": "^8.28.0",
"danger": "^13.0.4",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.2",
"jest": "30.0.4",
"prettier": "3.6.2",
"ts-jest": "29.4.0",
"ts-node": "10.9.2",
"tsc-alias": "1.8.16",
"tsconfig-paths": "4.2.0",
"typedoc": "0.28.7",
"typescript": "5.8.3"
},
"dependencies": {
"fast-xml-parser": "^5.2.0",
"tslog": "^4.0.0"
}
}