-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.05 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-annotations",
"version": "1.0.2",
"description": "A github action that add file annotations to areas of code lacking test coverage",
"main": "dist/index.ts",
"scripts": {
"test": "yarn jest",
"build": "rm -r ./dist; yarn ncc build src/index.ts -o dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jgillick/test-coverage-annotations.git"
},
"keywords": [
"github",
"actions",
"test",
"coverage",
"annotations"
],
"author": "Jeremy Gillick",
"license": "MIT",
"bugs": {
"url": "https://github.com/jgillick/test-coverage-annotations/issues"
},
"homepage": "https://github.com/jgillick/test-coverage-annotations#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1"
},
"devDependencies": {
"@jest/globals": "^29.3.1",
"@types/jest": "^29.2.3",
"@types/node": "^18.11.9",
"@vercel/ncc": "^0.34.0",
"jest": "^29.3.1",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.3"
}
}