-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.13 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
{
"name": "junit-results-aggregator",
"version": "1.0.0",
"description": "GitHub action for aggregating JUnit results",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/index.ts",
"prettier": "prettier --write .",
"test": "jest",
"test:ci": "npm-run-all test lint",
"lint": "npm-run-all lint:js lint:prettier",
"lint:js": "eslint .",
"lint:prettier": "prettier --check ."
},
"author": "Michael Stringer",
"license": "Apache-2.0",
"devDependencies": {
"@tsconfig/node20": "^20.1.2",
"@types/ejs": "^3.1.0",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.10",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.4",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@actions/artifact": "^1.0.0",
"@actions/core": "^1.6.0",
"@actions/github": "^6.0.0",
"@actions/io": "^1.1.2",
"date-fns": "^3.3.1",
"ejs": "^3.1.6"
}
}