Ignore:
Timestamp:
11/23/21 14:58:44 (3 years ago)
Author:
Ema <ema_spirova@…>
Branches:
master
Children:
e29cc2e
Parents:
ceaed42
Message:

adding photos

Location:
trip-planner-front/node_modules/mem
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trip-planner-front/node_modules/mem/node_modules/mimic-fn/package.json

    rceaed42 r59329aa  
    11{
    2         "name": "mimic-fn",
    3         "version": "3.1.0",
    4         "description": "Make a function mimic another one",
    5         "license": "MIT",
    6         "repository": "sindresorhus/mimic-fn",
    7         "author": {
    8                 "name": "Sindre Sorhus",
    9                 "email": "sindresorhus@gmail.com",
    10                 "url": "sindresorhus.com"
    11         },
    12         "engines": {
    13                 "node": ">=8"
    14         },
    15         "scripts": {
    16                 "test": "xo && ava && tsd"
    17         },
    18         "files": [
    19                 "index.js",
    20                 "index.d.ts"
    21         ],
    22         "keywords": [
    23                 "function",
    24                 "mimic",
    25                 "imitate",
    26                 "rename",
    27                 "copy",
    28                 "inherit",
    29                 "properties",
    30                 "name",
    31                 "func",
    32                 "fn",
    33                 "set",
    34                 "infer",
    35                 "change"
    36         ],
    37         "devDependencies": {
    38                 "ava": "^2.1.0",
    39                 "tsd": "^0.7.1",
    40                 "xo": "^0.24.0"
    41         }
     2  "_args": [
     3    [
     4      "mimic-fn@3.1.0",
     5      "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front"
     6    ]
     7  ],
     8  "_development": true,
     9  "_from": "mimic-fn@3.1.0",
     10  "_id": "mimic-fn@3.1.0",
     11  "_inBundle": false,
     12  "_integrity": "sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ==",
     13  "_location": "/mem/mimic-fn",
     14  "_phantomChildren": {},
     15  "_requested": {
     16    "type": "version",
     17    "registry": true,
     18    "raw": "mimic-fn@3.1.0",
     19    "name": "mimic-fn",
     20    "escapedName": "mimic-fn",
     21    "rawSpec": "3.1.0",
     22    "saveSpec": null,
     23    "fetchSpec": "3.1.0"
     24  },
     25  "_requiredBy": [
     26    "/mem"
     27  ],
     28  "_resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-3.1.0.tgz",
     29  "_spec": "3.1.0",
     30  "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front",
     31  "author": {
     32    "name": "Sindre Sorhus",
     33    "email": "sindresorhus@gmail.com",
     34    "url": "sindresorhus.com"
     35  },
     36  "bugs": {
     37    "url": "https://github.com/sindresorhus/mimic-fn/issues"
     38  },
     39  "description": "Make a function mimic another one",
     40  "devDependencies": {
     41    "ava": "^2.1.0",
     42    "tsd": "^0.7.1",
     43    "xo": "^0.24.0"
     44  },
     45  "engines": {
     46    "node": ">=8"
     47  },
     48  "files": [
     49    "index.js",
     50    "index.d.ts"
     51  ],
     52  "homepage": "https://github.com/sindresorhus/mimic-fn#readme",
     53  "keywords": [
     54    "function",
     55    "mimic",
     56    "imitate",
     57    "rename",
     58    "copy",
     59    "inherit",
     60    "properties",
     61    "name",
     62    "func",
     63    "fn",
     64    "set",
     65    "infer",
     66    "change"
     67  ],
     68  "license": "MIT",
     69  "name": "mimic-fn",
     70  "repository": {
     71    "type": "git",
     72    "url": "git+https://github.com/sindresorhus/mimic-fn.git"
     73  },
     74  "scripts": {
     75    "test": "xo && ava && tsd"
     76  },
     77  "version": "3.1.0"
    4278}
  • trip-planner-front/node_modules/mem/package.json

    rceaed42 r59329aa  
    11{
    2         "name": "mem",
    3         "version": "8.1.1",
    4         "description": "Memoize functions - An optimization used to speed up consecutive function calls by caching the result of calls with identical input",
    5         "license": "MIT",
    6         "repository": "sindresorhus/mem",
    7         "funding": "https://github.com/sindresorhus/mem?sponsor=1",
    8         "author": {
    9                 "name": "Sindre Sorhus",
    10                 "email": "sindresorhus@gmail.com",
    11                 "url": "https://sindresorhus.com"
    12         },
    13         "engines": {
    14                 "node": ">=10"
    15         },
    16         "scripts": {
    17                 "test": "xo && npm run build && tsd && ava",
    18                 "build": "del-cli dist && tsc",
    19                 "prepack": "npm run build"
    20         },
    21         "main": "dist",
    22         "types": "dist/index.d.ts",
    23         "files": [
    24                 "dist/index.js",
    25                 "dist/index.d.ts"
    26         ],
    27         "keywords": [
    28                 "memoize",
    29                 "function",
    30                 "mem",
    31                 "memoization",
    32                 "cache",
    33                 "caching",
    34                 "optimize",
    35                 "performance",
    36                 "ttl",
    37                 "expire",
    38                 "promise"
    39         ],
    40         "dependencies": {
    41                 "map-age-cleaner": "^0.1.3",
    42                 "mimic-fn": "^3.1.0"
    43         },
    44         "devDependencies": {
    45                 "@ava/typescript": "^1.1.1",
    46                 "@sindresorhus/tsconfig": "^0.7.0",
    47                 "@types/serialize-javascript": "^4.0.0",
    48                 "ava": "^3.15.0",
    49                 "del-cli": "^3.0.1",
    50                 "delay": "^4.4.0",
    51                 "serialize-javascript": "^5.0.1",
    52                 "tsd": "^0.13.1",
    53                 "typescript": "^4.0.3",
    54                 "xo": "^0.38.2"
    55         },
    56         "ava": {
    57                 "files": [
    58                         "test.ts"
    59                 ],
    60                 "timeout": "1m",
    61                 "typescript": {
    62                         "rewritePaths": {
    63                                 "./": "dist/"
    64                         }
    65                 }
    66         },
    67         "xo": {
    68                 "rules": {
    69                         "@typescript-eslint/member-ordering": "off",
    70                         "@typescript-eslint/no-var-requires": "off",
    71                         "@typescript-eslint/no-empty-function": "off"
    72                 }
    73         }
     2  "_args": [
     3    [
     4      "mem@8.1.1",
     5      "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front"
     6    ]
     7  ],
     8  "_development": true,
     9  "_from": "mem@8.1.1",
     10  "_id": "mem@8.1.1",
     11  "_inBundle": false,
     12  "_integrity": "sha512-qFCFUDs7U3b8mBDPyz5EToEKoAkgCzqquIgi9nkkR9bixxOVOre+09lbuH7+9Kn2NFpm56M3GUWVbU2hQgdACA==",
     13  "_location": "/mem",
     14  "_phantomChildren": {},
     15  "_requested": {
     16    "type": "version",
     17    "registry": true,
     18    "raw": "mem@8.1.1",
     19    "name": "mem",
     20    "escapedName": "mem",
     21    "rawSpec": "8.1.1",
     22    "saveSpec": null,
     23    "fetchSpec": "8.1.1"
     24  },
     25  "_requiredBy": [
     26    "/webpack-dev-middleware"
     27  ],
     28  "_resolved": "https://registry.npmjs.org/mem/-/mem-8.1.1.tgz",
     29  "_spec": "8.1.1",
     30  "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front",
     31  "author": {
     32    "name": "Sindre Sorhus",
     33    "email": "sindresorhus@gmail.com",
     34    "url": "https://sindresorhus.com"
     35  },
     36  "ava": {
     37    "files": [
     38      "test.ts"
     39    ],
     40    "timeout": "1m",
     41    "typescript": {
     42      "rewritePaths": {
     43        "./": "dist/"
     44      }
     45    }
     46  },
     47  "bugs": {
     48    "url": "https://github.com/sindresorhus/mem/issues"
     49  },
     50  "dependencies": {
     51    "map-age-cleaner": "^0.1.3",
     52    "mimic-fn": "^3.1.0"
     53  },
     54  "description": "Memoize functions - An optimization used to speed up consecutive function calls by caching the result of calls with identical input",
     55  "devDependencies": {
     56    "@ava/typescript": "^1.1.1",
     57    "@sindresorhus/tsconfig": "^0.7.0",
     58    "@types/serialize-javascript": "^4.0.0",
     59    "ava": "^3.15.0",
     60    "del-cli": "^3.0.1",
     61    "delay": "^4.4.0",
     62    "serialize-javascript": "^5.0.1",
     63    "tsd": "^0.13.1",
     64    "typescript": "^4.0.3",
     65    "xo": "^0.38.2"
     66  },
     67  "engines": {
     68    "node": ">=10"
     69  },
     70  "files": [
     71    "dist/index.js",
     72    "dist/index.d.ts"
     73  ],
     74  "funding": "https://github.com/sindresorhus/mem?sponsor=1",
     75  "homepage": "https://github.com/sindresorhus/mem#readme",
     76  "keywords": [
     77    "memoize",
     78    "function",
     79    "mem",
     80    "memoization",
     81    "cache",
     82    "caching",
     83    "optimize",
     84    "performance",
     85    "ttl",
     86    "expire",
     87    "promise"
     88  ],
     89  "license": "MIT",
     90  "main": "dist",
     91  "name": "mem",
     92  "repository": {
     93    "type": "git",
     94    "url": "git+https://github.com/sindresorhus/mem.git"
     95  },
     96  "scripts": {
     97    "build": "del-cli dist && tsc",
     98    "prepack": "npm run build",
     99    "test": "xo && npm run build && tsd && ava"
     100  },
     101  "types": "dist/index.d.ts",
     102  "version": "8.1.1",
     103  "xo": {
     104    "rules": {
     105      "@typescript-eslint/member-ordering": "off",
     106      "@typescript-eslint/no-var-requires": "off",
     107      "@typescript-eslint/no-empty-function": "off"
     108    }
     109  }
    74110}
Note: See TracChangeset for help on using the changeset viewer.