-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.52 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
{
"name": "memofy",
"version": "1.0.6",
"description": "Prevents re-execution of large javascript functions that have been processed once with the same parameter.",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "sh ./scripts/prod-build.sh",
"dev": "sh ./scripts/dev-build.sh",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/ahmetilhn/memofy.git"
},
"keywords": [
"memoization",
"cache",
"performance",
"optimization",
"function",
"memoize",
"typescript",
"javascript",
"utility",
"decorator",
"usememo",
"use-memo",
"memoization",
"memoizer",
"cacheable functions",
"memofy",
"useMemo"
],
"private": false,
"author": "Ahmet ilhan <ahmetilhan.dev@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ahmetilhn/memofy/issues"
},
"homepage": "https://github.com/ahmetilhn/memofy#readme",
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.12",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rollup": "^4.21.0",
"rollup-plugin-dts": "^6.1.1",
"tslib": "^2.7.0"
},
"peerDependencies": {
"amigo-js": "^3.0.0"
}
}