Changeset 59329aa for trip-planner-front/node_modules/mem/package.json
- Timestamp:
- 11/23/21 14:58:44 (3 years ago)
- Branches:
- master
- Children:
- e29cc2e
- Parents:
- ceaed42
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/node_modules/mem/package.json
rceaed42 r59329aa 1 1 { 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 } 74 110 }
Note:
See TracChangeset
for help on using the changeset viewer.