-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
46 lines (46 loc) · 1.2 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
{
"name": "vitest-teamcity-reporter",
"version": "0.3.1",
"description": "A TeamCity reporter for vitest.",
"repository": {
"type": "git",
"url": "https://github.com/eratio08/vitest-teamcity-reporter"
},
"keywords": [
"vitest",
"teamcity",
"reporter"
],
"files": [
"lib/**/*"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"clean": "rimraf lib",
"test": "vitest --run src/test/index.spec.ts",
"build": "pnpm clean && tsc -p tsconfig.lib.json",
"lint": "eslint ./src/**/*.ts --fix"
},
"devDependencies": {
"@types/node": "^22.1.0",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@vitest/coverage-v8": "^2.0.3",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"rimraf": "^6.0.1",
"typescript": "^5.1.6",
"vitest": "^2.0.3"
},
"peerDependencies": {
"typescript": "3.x || 4.x || 5.x",
"vitest": ">=0.34.0 || >=1.0.0"
},
"author": "Eike Lurz<[email protected]>",
"license": "MIT"
}