forked from luk-schweizer/jest-code-coverage-badge-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.39 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
{
"name": "jest-code-coverage-badge-action",
"version": "1.0.0",
"description": "Github Action responsible for collecting jest code coverage and creating an informative badge",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "ncc build index.js --license licenses.txt",
"coverage": "jest --coverage --testPathIgnorePatterns tests/integration/ --collectCoverageFrom='**/*.js' --collectCoverageFrom='!dist/**/*.js' --collectCoverageFrom='!coverage/**/*.js' --collectCoverageFrom='!tests/integration/**/*.js' --coverageThreshold='{\"global\":{\"statements\":70, \"branches\":70, \"functions\":70, \"lines\":70}}'",
"postinstall": "npx eslint .",
"integration-test": "jest integration/integration.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/luk-schweizer/jest-code-coverage-badge-action.git"
},
"author": "Lucas Schweizer",
"license": "MIT",
"bugs": {
"url": "https://github.com/luk-schweizer/jest-code-coverage-badge-action/issues"
},
"homepage": "https://github.com/luk-schweizer/jest-code-coverage-badge-action#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.4",
"node-fetch": "^2.6.1",
"p-retry": "^4.4.0",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@vercel/ncc": "^0.27.0",
"eslint": "^7.20.0",
"eslint-config-google": "^0.14.0",
"jest": "^26.6.3"
}
}