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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
| {
| "_args": [
| [
| "mem@8.1.1",
| "/Users/tomas/PAM/PAMapp"
| ]
| ],
| "_from": "mem@8.1.1",
| "_id": "mem@8.1.1",
| "_inBundle": false,
| "_integrity": "sha512-qFCFUDs7U3b8mBDPyz5EToEKoAkgCzqquIgi9nkkR9bixxOVOre+09lbuH7+9Kn2NFpm56M3GUWVbU2hQgdACA==",
| "_location": "/mem",
| "_phantomChildren": {},
| "_requested": {
| "type": "version",
| "registry": true,
| "raw": "mem@8.1.1",
| "name": "mem",
| "escapedName": "mem",
| "rawSpec": "8.1.1",
| "saveSpec": null,
| "fetchSpec": "8.1.1"
| },
| "_requiredBy": [
| "/webpack-dev-middleware"
| ],
| "_resolved": "https://registry.npmjs.org/mem/-/mem-8.1.1.tgz",
| "_spec": "8.1.1",
| "_where": "/Users/tomas/PAM/PAMapp",
| "author": {
| "name": "Sindre Sorhus",
| "email": "sindresorhus@gmail.com",
| "url": "https://sindresorhus.com"
| },
| "ava": {
| "files": [
| "test.ts"
| ],
| "timeout": "1m",
| "typescript": {
| "rewritePaths": {
| "./": "dist/"
| }
| }
| },
| "bugs": {
| "url": "https://github.com/sindresorhus/mem/issues"
| },
| "dependencies": {
| "map-age-cleaner": "^0.1.3",
| "mimic-fn": "^3.1.0"
| },
| "description": "Memoize functions - An optimization used to speed up consecutive function calls by caching the result of calls with identical input",
| "devDependencies": {
| "@ava/typescript": "^1.1.1",
| "@sindresorhus/tsconfig": "^0.7.0",
| "@types/serialize-javascript": "^4.0.0",
| "ava": "^3.15.0",
| "del-cli": "^3.0.1",
| "delay": "^4.4.0",
| "serialize-javascript": "^5.0.1",
| "tsd": "^0.13.1",
| "typescript": "^4.0.3",
| "xo": "^0.38.2"
| },
| "engines": {
| "node": ">=10"
| },
| "files": [
| "dist/index.js",
| "dist/index.d.ts"
| ],
| "funding": "https://github.com/sindresorhus/mem?sponsor=1",
| "homepage": "https://github.com/sindresorhus/mem#readme",
| "keywords": [
| "memoize",
| "function",
| "mem",
| "memoization",
| "cache",
| "caching",
| "optimize",
| "performance",
| "ttl",
| "expire",
| "promise"
| ],
| "license": "MIT",
| "main": "dist",
| "name": "mem",
| "repository": {
| "type": "git",
| "url": "git+https://github.com/sindresorhus/mem.git"
| },
| "scripts": {
| "build": "del-cli dist && tsc",
| "prepack": "npm run build",
| "test": "xo && npm run build && tsd && ava"
| },
| "types": "dist/index.d.ts",
| "version": "8.1.1",
| "xo": {
| "rules": {
| "@typescript-eslint/member-ordering": "off",
| "@typescript-eslint/no-var-requires": "off",
| "@typescript-eslint/no-empty-function": "off"
| }
| }
| }
|
|