Changeset 79a0317 for imaps-frontend/node_modules/flat-cache
Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/flat-cache/package.json
r0c6b92a r79a0317 1 1 { 2 "name": "flat-cache", 3 "version": "3.2.0", 4 "description": "A stupidly simple key/value storage using files to persist some data", 5 "repository": "jaredwray/flat-cache", 6 "license": "MIT", 2 "_from": "flat-cache@^3.0.4", 3 "_id": "flat-cache@3.2.0", 4 "_inBundle": false, 5 "_integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", 6 "_location": "/flat-cache", 7 "_phantomChildren": {}, 8 "_requested": { 9 "type": "range", 10 "registry": true, 11 "raw": "flat-cache@^3.0.4", 12 "name": "flat-cache", 13 "escapedName": "flat-cache", 14 "rawSpec": "^3.0.4", 15 "saveSpec": null, 16 "fetchSpec": "^3.0.4" 17 }, 18 "_requiredBy": [ 19 "/file-entry-cache" 20 ], 21 "_resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", 22 "_shasum": "2c0c2d5040c99b1632771a9d105725c0115363ee", 23 "_spec": "flat-cache@^3.0.4", 24 "_where": "/home/stevetosak/Proekt/IMaps/imaps-frontend/node_modules/file-entry-cache", 7 25 "author": { 8 26 "name": "Jared Wray", 9 27 "url": "https://jaredwray.com" 10 28 }, 11 "main": "src/cache.js", 12 "files": [ 13 "src/cache.js", 14 "src/del.js", 15 "src/utils.js" 16 ], 17 "engines": { 18 "node": "^10.12.0 || >=12.0.0" 29 "bugs": { 30 "url": "https://github.com/jaredwray/flat-cache/issues" 19 31 }, 20 "precommit": [ 21 "npm run verify --silent" 22 ], 23 "prepush": [ 24 "npm run verify --silent" 25 ], 26 "scripts": { 27 "eslint": "eslint --cache --cache-location=node_modules/.cache/ ./src/**/*.js ./test/**/*.js", 28 "eslint-fix": "npm run eslint -- --fix", 29 "autofix": "npm run eslint-fix", 30 "check": "npm run eslint", 31 "verify": "npm run eslint && npm run test:cache", 32 "test:cache": "c8 mocha -R spec test/specs", 33 "test:ci:cache": "c8 --reporter=lcov mocha -R spec test/specs", 34 "test": "npm run verify --silent" 32 "bundleDependencies": false, 33 "dependencies": { 34 "flatted": "^3.2.9", 35 "keyv": "^4.5.3", 36 "rimraf": "^3.0.2" 35 37 }, 36 "keywords": [ 37 "json cache", 38 "simple cache", 39 "file cache", 40 "key par", 41 "key value", 42 "cache" 43 ], 38 "deprecated": false, 39 "description": "A stupidly simple key/value storage using files to persist some data", 44 40 "devDependencies": { 45 41 "c8": "^7.14.0", … … 54 50 "write": "^2.0.0" 55 51 }, 56 "dependencies": { 57 "flatted": "^3.2.9", 58 "keyv": "^4.5.3", 59 "rimraf": "^3.0.2" 60 } 52 "engines": { 53 "node": "^10.12.0 || >=12.0.0" 54 }, 55 "files": [ 56 "src/cache.js", 57 "src/del.js", 58 "src/utils.js" 59 ], 60 "homepage": "https://github.com/jaredwray/flat-cache#readme", 61 "keywords": [ 62 "json cache", 63 "simple cache", 64 "file cache", 65 "key par", 66 "key value", 67 "cache" 68 ], 69 "license": "MIT", 70 "main": "src/cache.js", 71 "name": "flat-cache", 72 "precommit": [ 73 "npm run verify --silent" 74 ], 75 "prepush": [ 76 "npm run verify --silent" 77 ], 78 "repository": { 79 "type": "git", 80 "url": "git+https://github.com/jaredwray/flat-cache.git" 81 }, 82 "scripts": { 83 "autofix": "npm run eslint-fix", 84 "check": "npm run eslint", 85 "eslint": "eslint --cache --cache-location=node_modules/.cache/ ./src/**/*.js ./test/**/*.js", 86 "eslint-fix": "npm run eslint -- --fix", 87 "test": "npm run verify --silent", 88 "test:cache": "c8 mocha -R spec test/specs", 89 "test:ci:cache": "c8 --reporter=lcov mocha -R spec test/specs", 90 "verify": "npm run eslint && npm run test:cache" 91 }, 92 "version": "3.2.0" 61 93 }
Note:
See TracChangeset
for help on using the changeset viewer.