-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.18 KB
/
package.json
File metadata and controls
80 lines (80 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
{
"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": "tsup --clean --sourcemap --dts --format esm --target node14 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.2.0"
},
"devDependencies": {
"@mcous/eslint-config": "^0.7.0",
"@mcous/prettier-config": "^0.4.0",
"@mcous/typescript-config": "^0.3.0",
"@types/node": "^24.9.1",
"@vitest/coverage-istanbul": "^4.0.3",
"@vitest/expect": "^4.0.3",
"concurrently": "^9.2.1",
"eslint": "^9.38.0",
"prettier": "^3.6.2",
"tsup": "^8.5.0",
"typescript": "5.9.3",
"vitest": "^4.0.3"
},
"peerDependencies": {
"@vitest/expect": ">=0.31.0 <5",
"vitest": ">=0.31.0 <5"
},
"peerDependenciesMeta": {
"@vitest/expect": {
"optional": true
}
},
"packageManager": "pnpm@10.19.0+sha512.c9fc7236e92adf5c8af42fd5bf1612df99c2ceb62f27047032f4720b33f8eacdde311865e91c411f2774f618d82f320808ecb51718bfa82c060c4ba7c76a32b8",
"publishConfig": {
"access": "public",
"provenance": true
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}