Changeset 79a0317 for imaps-frontend/node_modules/lru-cache
Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/lru-cache/package.json
r0c6b92a r79a0317 1 1 { 2 "name": "lru-cache", 2 "_from": "lru-cache@^5.1.1", 3 "_id": "lru-cache@5.1.1", 4 "_inBundle": false, 5 "_integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", 6 "_location": "/lru-cache", 7 "_phantomChildren": {}, 8 "_requested": { 9 "type": "range", 10 "registry": true, 11 "raw": "lru-cache@^5.1.1", 12 "name": "lru-cache", 13 "escapedName": "lru-cache", 14 "rawSpec": "^5.1.1", 15 "saveSpec": null, 16 "fetchSpec": "^5.1.1" 17 }, 18 "_requiredBy": [ 19 "/@babel/helper-compilation-targets" 20 ], 21 "_resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", 22 "_shasum": "1da27e6710271947695daf6848e847f01d84b920", 23 "_spec": "lru-cache@^5.1.1", 24 "_where": "/home/stevetosak/Proekt/IMaps/imaps-frontend/node_modules/@babel/helper-compilation-targets", 25 "author": { 26 "name": "Isaac Z. Schlueter", 27 "email": "i@izs.me" 28 }, 29 "bugs": { 30 "url": "https://github.com/isaacs/node-lru-cache/issues" 31 }, 32 "bundleDependencies": false, 33 "dependencies": { 34 "yallist": "^3.0.2" 35 }, 36 "deprecated": false, 3 37 "description": "A cache object that deletes the least-recently-used items.", 4 "version": "5.1.1", 5 "author": "Isaac Z. Schlueter <i@izs.me>", 38 "devDependencies": { 39 "benchmark": "^2.1.4", 40 "tap": "^12.1.0" 41 }, 42 "files": [ 43 "index.js" 44 ], 45 "homepage": "https://github.com/isaacs/node-lru-cache#readme", 6 46 "keywords": [ 7 47 "mru", … … 9 49 "cache" 10 50 ], 51 "license": "ISC", 52 "main": "index.js", 53 "name": "lru-cache", 54 "repository": { 55 "type": "git", 56 "url": "git://github.com/isaacs/node-lru-cache.git" 57 }, 11 58 "scripts": { 12 "test": "tap test/*.js --100 -J", 59 "coveragerport": "tap --coverage-report=html", 60 "postpublish": "git push origin --all; git push origin --tags", 61 "postversion": "npm publish", 62 "preversion": "npm test", 13 63 "snap": "TAP_SNAPSHOT=1 tap test/*.js -J", 14 "coveragerport": "tap --coverage-report=html", 15 "preversion": "npm test", 16 "postversion": "npm publish", 17 "postpublish": "git push origin --all; git push origin --tags" 64 "test": "tap test/*.js --100 -J" 18 65 }, 19 "main": "index.js", 20 "repository": "git://github.com/isaacs/node-lru-cache.git", 21 "devDependencies": { 22 "benchmark": "^2.1.4", 23 "tap": "^12.1.0" 24 }, 25 "license": "ISC", 26 "dependencies": { 27 "yallist": "^3.0.2" 28 }, 29 "files": [ 30 "index.js" 31 ] 66 "version": "5.1.1" 32 67 }
Note:
See TracChangeset
for help on using the changeset viewer.