-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.23 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.23 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
{
"name": "@tradeshift/actions-coverage-upload",
"version": "0.0.0",
"private": true,
"description": "Github action to upload coverage info to backstage",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write src/**/*.ts",
"format-check": "prettier --check src/**/*.ts",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tradeshift/actions-coverage-upload.git"
},
"keywords": [
"actions",
"backstage"
],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/core": "1.11.1",
"@actions/exec": "1.1.1"
},
"devDependencies": {
"@types/jest": "30.0.0",
"@types/node": "24.11.0",
"@typescript-eslint/eslint-plugin": "8.56.1",
"@typescript-eslint/parser": "8.56.1",
"@vercel/ncc": "0.38.1",
"eslint": "8.57.0",
"eslint-plugin-github": "5.1.8",
"eslint-plugin-jest": "28.14.0",
"jest": "30.2.0",
"jest-circus": "30.2.0",
"prettier": "3.8.1",
"ts-jest": "29.4.6",
"typescript": "5.9.3"
}
}