forked from medikoo/memoizee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.12 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
{
"name": "memoizee",
"version": "0.3.9",
"description": "Memoize/cache function results",
"author": "Mariusz Nowak <[email protected]> (http://www.medikoo.com/)",
"keywords": [
"memoize",
"memoizer",
"cache",
"memoization",
"memo",
"memcached",
"hashing.",
"storage",
"caching",
"memory",
"gc",
"weak",
"garbage",
"collector",
"async"
],
"repository": {
"type": "git",
"url": "git://github.com/medikoo/memoizee.git"
},
"dependencies": {
"d": "~0.1.1",
"es5-ext": "~0.10.7",
"es6-weak-map": "~0.1.4",
"event-emitter": "~0.3.3",
"lru-queue": "0.1",
"next-tick": "~0.2.2",
"timers-ext": "0.1"
},
"devDependencies": {
"tad": "~0.2.3",
"xlint": "~0.2.2",
"xlint-jslint-medikoo": "~0.1.4"
},
"scripts": {
"lint": "node node_modules/xlint/bin/xlint --linter=node_modules/xlint-jslint-medikoo/index.js --no-cache --no-stream",
"lint-console": "node node_modules/xlint/bin/xlint --linter=node_modules/xlint-jslint-medikoo/index.js --watch",
"test": "node node_modules/tad/bin/tad"
},
"license": "MIT"
}