-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.18 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.18 KB
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
74
75
76
77
78
79
80
81
82
83
{
"name": "vitest-when",
"version": "0.10.0",
"description": "Stub behaviors of Vitest mock functions with a small, readable API.",
"keywords": [
"tdd",
"testing",
"mocking"
],
"homepage": "https://github.com/mcous/vitest-when#readme",
"bugs": {
"url": "https://github.com/mcous/vitest-when/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/mcous/vitest-when.git"
},
"license": "MIT",
"author": "Michael Cousins <michael@cousins.io> (https://michael.cousins.io)",
"type": "module",
"exports": {
".": {
"types": "./dist/vitest-when.d.ts",
"import": "./dist/vitest-when.js"
}
},
"types": "./dist/vitest-when.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"all": "concurrently -g pnpm:coverage pnpm:build pnpm:check:*",
"build": "tsdown --sourcemap src/vitest-when.ts",
"build-and-check": "concurrently -g pnpm:build pnpm:check:*",
"check:format": "prettier . --check",
"check:lint": "eslint .",
"check:types": "vitest --typecheck.only --run",
"coverage": "vitest run --coverage",
"format": "eslint . --fix && prettier . --write",
"test": "vitest"
},
"prettier": "@mcous/prettier-config",
"dependencies": {
"pretty-format": "^30.3.0"
},
"devDependencies": {
"@mcous/eslint-config": "^0.9.0",
"@mcous/prettier-config": "^0.4.0",
"@mcous/typescript-config": "^0.4.0",
"@types/node": "^25.6.0",
"@vitest/coverage-istanbul": "^4.1.5",
"@vitest/expect": "^4.1.5",
"concurrently": "^9.2.1",
"eslint": "^10.2.1",
"prettier": "^3.8.3",
"tsdown": "^0.21.10",
"typescript": "6.0.3",
"vitest": "^4.1.5"
},
"peerDependencies": {
"@vitest/expect": ">=0.31.0 <5",
"vitest": ">=0.31.0 <5"
},
"peerDependenciesMeta": {
"@vitest/expect": {
"optional": true
}
},
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@10.33.1+sha512.05ba3c1d5d1c18f68df06470d74055e62d41fc110a0c660db1b2dfb2785327f04cf0f68345d4609bc52089e7fa0343c31593b2f9594e2c5d5da426230acc9820",
"publishConfig": {
"access": "public",
"provenance": true
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}