-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.91 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
{
"name": "@ilamy/testoise",
"version": "0.2.0",
"description": "Lightweight and fully type-safe lazy test variables for Bun, Vitest, Jest, and Node.js. Inspired by RSpec.",
"scripts": {
"test": "bun run test:core && bun run test:bun && bun run test:vitest && bun run test:jest && bun run test:node",
"test:core": "bun test tests/",
"test:bun": "bun test examples/bun",
"test:vitest": "cd examples/vitest && bun run test",
"test:jest": "cd examples/jest && bun run test",
"test:node": "node --import tsx --import ./examples/node/setup-env.ts --test examples/node/*.test.{ts,tsx}",
"build": "tsup",
"lint": "biome lint .",
"format": "biome format --write .",
"check": "biome check --write .",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"type": "module",
"files": [
"dist",
"README.md",
"LICENSE"
],
"exports": {
"./bun": {
"types": "./dist/bun.d.ts",
"import": "./dist/bun.js"
},
"./vitest": {
"types": "./dist/vitest.d.ts",
"import": "./dist/vitest.js"
},
"./jest": {
"types": "./dist/jest.d.ts",
"import": "./dist/jest.js"
},
"./node": {
"types": "./dist/node.d.ts",
"import": "./dist/node.js"
}
},
"devDependencies": {
"@biomejs/biome": "^2.4.7",
"@happy-dom/global-registrator": "^20.8.4",
"@jest/globals": "^30.3.0",
"@testing-library/react": "^16.3.2",
"@types/bun": "^1.3.10",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vue/test-utils": "^2.4.6",
"async_hooks": "^1.0.0",
"happy-dom": "^20.8.4",
"husky": "^9.1.7",
"jest": "^30.3.0",
"lint-staged": "^16.4.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.0",
"vue": "^3.5.30"
},
"lint-staged": {
"*.{ts,tsx,js,json}": [
"biome check --write --no-errors-on-unmatched"
]
}
}