-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 997 Bytes
/
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
{
"name": "coverage-monitor-action",
"version": "0.9.6",
"private": true,
"description": "A GitHub Action that monitor coverage.",
"main": "src/index.js",
"scripts": {
"lint": "eslint src/**",
"test": "jest",
"build": "ncc build src/index.js -o dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gmsllc/coverage-monitor-action.git"
},
"keywords": [
"actions",
"coverage",
"clover"
],
"author": "Andrzej Pasterczyk",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@aws-sdk/client-s3": "^3.501.0",
"@aws-sdk/lib-storage": "^3.501.0",
"@vercel/ncc": "^0.38.1",
"exponential-backoff": "^3.1.1",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.6.3",
"jest": "^29.7.0"
}
}