-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.57 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
{
"name": "vitest-localstorage-mock",
"type": "module",
"version": "0.1.2",
"packageManager": "pnpm@9.14.2",
"description": "Auto mock all localstorage and sessionstorage APIs for your Vitest tests",
"author": "Mitscherlich <mitscherlich36@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/Mitscherlich/vitest-localstorage-mock#README",
"repository": {
"type": "git",
"url": "git+https://github.com/Mitscherlich/vitest-localstorage-mock.git"
},
"bugs": {
"url": "https://github.com/Mitscherlich/vitest-localstorage-mock/issues"
},
"keywords": [
"vitest",
"test",
"mock",
"localstorage",
"sessionstorage",
"storage",
"node",
"browser"
],
"publishConfig": {
"access": "public"
},
"exports": {
".": "./dist/index.mjs"
},
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"test:node": "vitest run --environment node",
"test:jsdom": "vitest run --environment jsdom",
"test": "pnpm run test:node && pnpm run test:jsdom",
"up": "taze major -I",
"prepublishOnly": "pnpm run build",
"release": "bumpp package.json && pnpm publish --access public"
},
"peerDependencies": {
"vitest": "*"
},
"devDependencies": {
"@m9ch/eslint-config-all": "^0.3.2",
"@vitest/ui": "^2.0.0",
"bumpp": "^9.4.0",
"eslint": "^9.0.0",
"jsdom": "^25.0.0",
"taze": "^0.18.0",
"tsup": "^8.0.2",
"typescript": "^5.3.3",
"unbuild": "^3.0.0",
"vite": "^6.0.0",
"vitest": "^2.0.0"
}
}