-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.25 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.25 KB
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
{
"name": "datadog-upload-code-coverage-action",
"version": "1.0.0",
"type": "module",
"description": "Fast GitHub Action to upload code coverage files to DataDog",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/index.ts --transpile-only --license licenses.txt",
"test": "jest --coverage",
"test:watch": "jest --watch",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts",
"all": "npm run format && npm run lint && npm run build && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/your-org/datadog-upload-code-coverage-action.git"
},
"keywords": [
"datadog",
"code-coverage",
"github-actions",
"ci",
"coverage"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/github": "^9.0.0",
"@actions/glob": "^0.6.1",
"axios": "^1.6.7",
"form-data": "^4.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/jest": "^30.0.0",
"@types/node": "^25.2.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^9.39.2",
"jest": "^30.2.0",
"prettier": "^3.8.1",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3",
"typescript-eslint": "^8.54.0"
}
}