-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1022 Bytes
/
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
{
"name": "@taskworld/rereselect",
"description": "A library that generates memoized selectors and supports dynamic dependency tracking.",
"version": "1.0.0",
"author": "Taskworld <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/taskworld/rereselect.git"
},
"bugs": {
"url": "https://github.com/taskworld/rereselect/issues"
},
"homepage": "https://github.com/taskworld/rereselect#readme",
"packageManager": "[email protected]",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "rm -rf lib && tsc",
"test": "tsc --noEmit && vitest src/index.test.ts",
"bench": "vitest --run bench --mode production"
},
"devDependencies": {
"@types/lodash": "^4.17.6",
"lefthook": "^1.6.18",
"lodash": "^4.17.21",
"reselect3": "npm:reselect@^3.0.1",
"reselect5": "npm:reselect@^5.0.0",
"typescript": "^5.5.3",
"vitest": "^1.6.0"
},
"resolutions": {
"jsdom": "16.5.0"
}
}