-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
119 lines (119 loc) · 4.17 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "cachemap",
"description": "An isomorphic cache that can use Redis, web storage, IndexedDB or an in-memory Map.",
"version": "5.2.3",
"author": "Dylan Aubrey",
"license": "MIT",
"private": true,
"homepage": "https://github.com/badbatch/cachemap",
"repository": "badbatch/cachemap",
"bugs": "https://github.com/badbatch/cachemap/issues",
"type": "module",
"engines": {
"node": "^22",
"pnpm": "^9"
},
"scripts": {
"build": "pnpm run -r build",
"clean:deps": "pnpm run -r clean:deps && del-cli ./node_modules",
"clean:dist": "pnpm run -r clean:dist",
"cut:changelog": "changelog",
"installActivateMise": "sh shellScripts/installActivateMise.sh",
"lint": "pnpm run /^lint:.*/",
"lint:code": "eslint .",
"lint:docs": "markdownlint-cli2 --config \".markdownlint.json\" \"**/*.md\" \"!**/node_modules/**\"",
"prepare": "husky",
"repodog": "repodog",
"syncpack": "syncpack format && syncpack list-mismatches && syncpack lint-semver-ranges",
"test": "concurrently \"pnpm run test:browser\" \"pnpm run test:node\"",
"test:browser": "pnpm run test:browser:build && pnpm run test:browser:run && npm run test:browser:remove",
"test:browser:build": "webpack --config ./webpack.config.cjs",
"test:browser:debug": "jasmine-browser-runner serve --config=jasmineBrowser.config.cjs --browser chrome",
"test:browser:remove": "del-cli ./tests/browser/dist",
"test:browser:run": "jasmine-browser-runner runSpecs --config=jasmineBrowser.config.cjs",
"test:node": "COMPILER=swc node --require=suppress-experimental-warnings --experimental-vm-modules node_modules/jest/bin/jest.js",
"type-check": "tsc --noEmit",
"validate": "pnpm run syncpack && pnpm run build && pnpm run lint && pnpm run type-check && pnpm run test"
},
"devDependencies": {
"@cachemap/core": "workspace:*",
"@cachemap/core-worker": "workspace:*",
"@cachemap/indexed-db": "workspace:*",
"@cachemap/map": "workspace:*",
"@cachemap/reaper": "workspace:*",
"@cachemap/redis": "workspace:*",
"@cachemap/types": "workspace:*",
"@cachemap/utils": "workspace:*",
"@cachemap/web-storage": "workspace:*",
"@commitlint/cli": "^19.5.0",
"@jest/globals": "^29.7.0",
"@repodog/cli": "^1.6.36",
"@repodog/commitlint-config": "^19.0.3",
"@repodog/eslint-config": "^9.0.10",
"@repodog/eslint-config-jasmine": "^9.0.6",
"@repodog/eslint-config-jest": "^9.0.3",
"@repodog/jasmine-browser-config": "^2.0.3",
"@repodog/jest-config": "^29.0.3",
"@repodog/markdownlint-config": "^1.2.4",
"@repodog/prettier-config": "^3.0.2",
"@repodog/rollup-config": "^4.0.3",
"@repodog/swc-config": "^1.0.4",
"@repodog/syncpack-config": "^13.0.2",
"@repodog/ts-config": "^5.0.4",
"@repodog/webpack-config": "^5.0.8",
"@rollup/plugin-swc": "^0.3.0",
"@swc/core": "^1.7.26",
"@swc/jest": "^0.2.36",
"@types/jasmine": "^5.1.4",
"@types/jest": "^29.5.13",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.8.7",
"@types/redis": "^2.8.32",
"@types/redis-mock": "^0.17.3",
"cacheability": "^4.0.27",
"concurrently": "^9.1.0",
"core-js": "^3.39.0",
"del-cli": "^6.0.0",
"eslint": "^9.11.0",
"generate-changelog": "^1.8.0",
"husky": "^9.1.6",
"jasmine-browser-runner": "^2.5.0",
"jasmine-core": "^5.4.0",
"jasmine-expect": "^5.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-environment-node": "^29.7.0",
"lodash-es": "^4.17.21",
"markdownlint-cli2": "^0.14.0",
"prettier": "^3.3.3",
"redis": "^3.1.2",
"redis-mock": "^0.56.3",
"rollup": "^4.22.4",
"suppress-experimental-warnings": "^2.0.0",
"swc-loader": "^0.2.6",
"syncpack": "^13.0.0",
"ts-md5": "^1.3.1",
"type-fest": "^4.26.1",
"typescript": "^5.6.2",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
},
"keywords": [
"cache",
"cachemap",
"indexedDB",
"isomorphic",
"localstorage",
"map",
"redis"
],
"pnpm": {
"overrides": {
"@eslint/plugin-kit": ">=0.2.3",
"braces": ">=3.0.3",
"cross-spawn": ">=7.0.5",
"micromatch": ">=4.0.8",
"ws": ">=8.17.1"
}
}
}