forked from mgechev/memo-decorator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 929 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
{
"name": "memo-decorator",
"version": "1.0.0",
"description": "Decorator for caching the results of your method calls using lodash.memoize",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mgechev/memo-decorator.git"
},
"keywords": ["memoization", "decorator"],
"author": "Minko Gechev <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mgechev/memo/issues"
},
"homepage": "https://github.com/mgechev/memo#readme",
"dependencies": {
"lodash.memoize": "^4.1.2"
},
"devDependencies": {
"@types/jest": "^22.1.0",
"jest": "^22.1.4",
"typescript": "^2.6.2"
},
"jest": {
"moduleFileExtensions": ["ts", "tsx", "js"],
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/preprocessor.js"
},
"testMatch": ["**/__tests__/*.(ts|tsx|js)"]
}
}