-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.04 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
{
"name": "test-coverage-reporter",
"version": "1.0.13",
"description": "Generate a test coverage report for a PR",
"main": "dist/index.js",
"scripts": {
"test": "yarn jest",
"build": "rm -r ./dist; yarn ncc build src/index.ts -o dist --source-map; cp -v src/*.md dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jgillick/test-coverage-reporter.git"
},
"keywords": [
"unit",
"test",
"test",
"coverage"
],
"author": "Jeremy Gillick",
"license": "MIT",
"bugs": {
"url": "https://github.com/jgillick/test-coverage-reporter/issues"
},
"homepage": "https://github.com/jgillick/test-coverage-reporter#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/jest": "^29.2.4",
"@types/lodash": "^4.14.191",
"@types/node": "^18.11.11",
"@vercel/ncc": "^0.36.0",
"jest": "^29.3.1",
"prettier": "^2.8.0",
"ts-jest": "^29.0.3",
"typescript": "^4.9.3"
}
}