-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
63 lines (63 loc) · 1.57 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
57
58
59
60
61
62
63
{
"name": "vitest-github-actions-reporter",
"version": "0.11.1",
"description": "Vitest reporter to create annotations when running tests in GitHub Actions",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "vitest",
"lint": "eslint --cache .",
"format": "prettier --write --cache .",
"type-check": "tsc --noEmit"
},
"engines": {
"node": ">=14.16.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sapphi-red/vitest-github-actions-reporter.git"
},
"keywords": [
"vitest",
"vitest-reporter"
],
"author": "sapphi-red",
"license": "MIT",
"bugs": {
"url": "https://github.com/sapphi-red/vitest-github-actions-reporter/issues"
},
"homepage": "https://github.com/sapphi-red/vitest-github-actions-reporter#readme",
"peerDependencies": {
"vitest": ">=0.28.5"
},
"devDependencies": {
"@types/node": "^20.9.2",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-vitest": "^0.3.9",
"execa": "^8.0.1",
"prettier": "^3.1.0",
"tsup": "^7.3.0",
"typescript": "^5.2.2",
"vitest": "^1.0.0-beta.5"
},
"dependencies": {
"@actions/core": "^1.10.0"
},
"packageManager": "[email protected]"
}