-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.73 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": "memoize-cache-decorator",
"version": "2.0.1",
"description": "Cache the result of a method or getter for better performance. Supports timeout and clearing the cache.",
"type": "module",
"license": "MIT",
"main": "dist/memoize.js",
"types": "dist/memoize.d.ts",
"sideEffects": false,
"scripts": {
"prepare": "husky install",
"build": "tsc",
"test": "tsc -p test/tsconfig.json -outDir test && node --experimental-vm-modules node_modules/jest/bin/jest.js test/test.js",
"test:coverage": "tsc -p test/tsconfig.json -outDir test && node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage test/test.js && coveralls < coverage/lcov.info",
"demo": "tsc -p demo/tsconfig.json -outDir demo && node demo/demo.js",
"prettier": "prettier --config .prettierrc.json src/*.ts **/*.{json,cjs,yml} --write",
"lint": "eslint . --ext .ts"
},
"keywords": [
"memoize",
"decorator",
"cache",
"clear",
"reset",
"timeout",
"ttl",
"expire",
"typescript"
],
"author": {
"name": "Edwin Martin",
"email": "[email protected]",
"url": "https://bitstorm.org/"
},
"files": [
"src/memoize.ts",
"dist/memoize.js",
"dist/memoize.d.ts",
"dist/memoize.js.map"
],
"repository": {
"type": "git",
"url": "https://github.com/edwinm/memoize-cache-decorator.git"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/json-stringify-safe": "^5.0.0",
"@types/node": "^20.4.0",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"coveralls": "^3.1.1",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"json-stringify-safe": "^5.0.1",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"typescript": "^5.1.6"
}
}