-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 892 Bytes
/
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
{
"name": "vitest-monocart-coverage",
"version": "2.1.3",
"description": "",
"type": "module",
"main": "./lib/index.js",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js",
"default": "./lib/index.js"
},
"./package.json": "./package.json"
},
"types": "./lib/index.d.ts",
"scripts": {
"link": "sf link ./ -f",
"test": "vitest run --coverage",
"patch": "npm run test && sf publish patch -r"
},
"files": [
"lib"
],
"license": "MIT",
"dependencies": {
"@vitest/coverage-istanbul": "^2.1.8",
"@vitest/coverage-v8": "^2.1.8",
"monocart-coverage-reports": "^2.11.5"
},
"devDependencies": {
"eslint": "^9.17.0",
"eslint-config-plus": "^2.0.2",
"vitest": "^2.1.8"
}
}