-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
56 lines (56 loc) · 1.68 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
{
"name": "jest-coverage-comment",
"version": "1.0.27",
"description": "Comments a pull request or commit with the jest code coverage badge, full report and tests summary",
"author": "Misha Kav <misha.kav@gmail.com>",
"license": "MIT",
"keywords": [
"actions",
"pull-request",
"comment",
"message",
"coverage",
"jest",
"junit"
],
"bugs": {
"url": "https://github.com/MishaKav/jest-coverage-comment/issues"
},
"homepage": "https://github.com/MishaKav/jest-coverage-comment/#readme",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint **/*.ts",
"bump-version": "npm version patch",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"test:coverage": "npm test -- --coverage",
"test:coverage:tee": "npm run test:coverage | tee ./coverage/covergate.txt",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"strip-color": "^0.1.0",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@types/jest": "^29.4.1",
"@types/node": "^18.15.2",
"@types/xml2js": "^0.4.11",
"@typescript-eslint/parser": "^5.55.0",
"@vercel/ncc": "^0.36.1",
"babel-plugin-rewire": "^1.2.0",
"eslint": "^8.36.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-github": "^4.6.1",
"eslint-plugin-jest": "^27.2.1",
"jest-junit": "^15.0.0",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}