forked from eratio08/vitest-mock-extended
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "vitest-mock-extended",
"version": "1.2.1",
"homepage": "https://github.com/eratio08/vitest-mock-extended",
"description": "Type safe mocking extensions for vitest, forked from jest-mock-extended",
"repository": {
"type": "git",
"url": "https://github.com/eratio08/vitest-mock-extended"
},
"author": "Eike Lurz <eike.lurz@tuta.io>",
"license": "MIT",
"files": [
"lib/**/*"
],
"main": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"module": "./lib/esm/index.js",
"exports": {
".": {
"import": {
"types": "./lib/esm/index.d.ts",
"default": "./lib/esm/index.js"
},
"require": {
"types": "./lib/index.d.cts",
"default": "./lib/index.cjs"
}
}
},
"scripts": {
"test": "pnpm test:src && pnpm test:example",
"test:src": "vitest run --coverage",
"test:example": "cd example && pnpm run test",
"clean": "rimraf coverage lib",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"build": "pnpm clean && pnpm build:rollup",
"build:rollup": "rollup -c"
},
"dependencies": {
"ts-essentials": "^9.3.2"
},
"devDependencies": {
"@types/eslint-config-prettier": "^6.11.0",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"@vitest/coverage-v8": "^0.34.1",
"esbuild": "^0.19.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "3.0.3",
"rimraf": "5.0.1",
"rollup": "^3.27.1",
"rollup-plugin-dts": "^6.0.0",
"rollup-plugin-esbuild": "^5.0.0",
"semantic-release": "^22.0.5",
"typescript": "5.2.2",
"vitest": "0.34.5"
},
"peerDependencies": {
"typescript": "3.x || 4.x || 5.x",
"vitest": ">=0.31.1"
},
"release": {
"branches": [
"main"
]
},
"publishConfig": {
"access": "public"
}
}