forked from mi-kas/kover-report
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.48 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
{
"name": "kover-report",
"version": "0.0.1",
"private": true,
"description": "Github action that publishes the Kover code coverage report as a comment in pull requests",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"all": "yarn run format && yarn run lint && yarn test && yarn build && yarn run package",
"dev": "ts-node-dev --respawn --transpile-only src/dev.ts",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mi-kas/kover-report.git"
},
"keywords": [
"actions",
"node",
"kotlin",
"kover",
"code coverage"
],
"author": "Michael Kaserer <mi.kaserer@gmail.com>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@types/node": "^18.11.19",
"@types/xml2js": "^0.4.11",
"@typescript-eslint/parser": "^5.51.0",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-github": "^4.6.0",
"eslint-plugin-jest": "^27.2.1",
"husky": "^8.0.3",
"jest": "^29.4.1",
"js-yaml": "^4.1.0",
"prettier": "^2.8.3",
"ts-jest": "^29.0.5",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.5"
}
}