-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.54 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "@matteoh2o1999/github-actions-jest-reporter",
"version": "4.0.0",
"description": "A Github Actions reporter for Jest supporting log folding",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"jest",
"reporter",
"github",
"actions",
"gha",
"github actions"
],
"scripts": {
"test": "jest",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint .",
"build": "tsc --build",
"integration-base": "cd test_repo && cd test-app && npm run test",
"integration-new": "cd test_repo && cd test-app && npm run test-reporter"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MatteoH2O1999/github-actions-jest-reporter.git"
},
"author": "MatteoH2O1999",
"license": "MIT",
"bugs": {
"url": "https://github.com/MatteoH2O1999/github-actions-jest-reporter/issues"
},
"homepage": "https://github.com/MatteoH2O1999/github-actions-jest-reporter#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"chalk": "^4.0.0",
"jest": "^29.7.0",
"jest-util": "^29.7.0"
},
"devDependencies": {
"@babel/preset-env": "^7.24.4",
"@stylistic/eslint-plugin-ts": "^2.11.0",
"@types/node": "^22.0.0",
"@typescript-eslint/parser": "^8.16.0",
"eslint": "^9.15.0",
"eslint-plugin-github": "^5.0.0",
"eslint-plugin-jest": "^28.2.0",
"js-yaml": "^4.1.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5"
}
}