-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.69 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
{
"name": "fun-memoize",
"version": "1.11.0",
"author": "Oleg Nosov <[email protected]>",
"description": "Performant configurable memoization module for modern JavaScript applications",
"dependencies": {
"mimic-fn": "^1.1.0",
"weakmap-polyfill": "^2.0.4"
},
"keywords": [
"memoization",
"memoize",
"performance",
"immutable"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/olegnn/fun-memoize.git"
},
"license": "MIT",
"devDependencies": {
"0x": "^5.4.1",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^11.0.0",
"benchmark": "^2.1.4",
"esbuild": "^0.17.5",
"fast-memoize": "^2.2.8",
"iMemoized": "^1.1.8",
"jest": "^29.5.0",
"lodash.memoize": "^4.1.2",
"lru-memoize": "^1.1.0",
"moize": "^4.0.4",
"prettier": "^2.1.2",
"re-reselect": "^4.0.0",
"reselect": "^3.0.1",
"rollup": "^3.13.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-dts": "^5.1.1",
"rollup-plugin-esbuild": "^5.0.0",
"tslib": "^2.5.0",
"typescript": "^4.9.4"
},
"scripts": {
"prepublish": "yarn build",
"build": "rm -rf dist build && NODE_ENV=release rollup -c rollup.config.mjs && tsc --moduleResolution node --downlevelIteration --outDir build --sourceMap true ./src/index.ts",
"benchmark": "node ./benchmarks/index.js",
"test": "jest .",
"lint": "prettier '(src/**/*.ts)|(__tests__/**/**.js)|(benchmarks/*.js)' --check",
"fmt": "prettier 'index.d.ts|(src/**/*.ts)|(__tests__/**/**.js)|(benchmarks/*.js)' --write"
}
}