Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/file-entry-cache/package.json
r0c6b92a r79a0317 1 1 { 2 "name": "file-entry-cache", 3 "version": "6.0.1", 4 "description": "Super simple cache for file metadata, useful for process that work o a given series of files and that only need to repeat the job on the changed ones since the previous run of the process", 5 "repository": "royriojas/file-entry-cache", 6 "license": "MIT", 2 "_from": "file-entry-cache@6.0.1", 3 "_id": "file-entry-cache@6.0.1", 4 "_inBundle": false, 5 "_integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", 6 "_location": "/file-entry-cache", 7 "_phantomChildren": {}, 8 "_requested": { 9 "type": "version", 10 "registry": true, 11 "raw": "file-entry-cache@6.0.1", 12 "name": "file-entry-cache", 13 "escapedName": "file-entry-cache", 14 "rawSpec": "6.0.1", 15 "saveSpec": null, 16 "fetchSpec": "6.0.1" 17 }, 18 "_requiredBy": [ 19 "/eslint" 20 ], 21 "_resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", 22 "_shasum": "211b2dd9659cb0394b073e7323ac3c933d522027", 23 "_spec": "file-entry-cache@6.0.1", 24 "_where": "/home/stevetosak/Proekt/IMaps/imaps-frontend/node_modules/eslint", 7 25 "author": { 8 26 "name": "Roy Riojas", 9 27 "url": "http://royriojas.com" 10 28 }, 11 "main": "cache.js", 12 "files": [ 13 "cache.js" 14 ], 15 "engines": { 16 "node": "^10.12.0 || >=12.0.0" 29 "bugs": { 30 "url": "https://github.com/royriojas/file-entry-cache/issues" 17 31 }, 18 "scripts": { 19 "eslint": "eslint --cache --cache-location=node_modules/.cache/ 'cache.js' 'test/**/*.js' 'perf.js'", 20 "autofix": "npm run eslint -- --fix", 21 "install-hooks": "prepush install && changelogx install-hook && precommit install", 22 "changelog": "changelogx -f markdown -o ./changelog.md", 23 "do-changelog": "npm run changelog && git add ./changelog.md && git commit -m 'DOC: Generate changelog' --no-verify", 24 "pre-v": "npm run test", 25 "post-v": "npm run do-changelog && git push --no-verify && git push --tags --no-verify", 26 "bump-major": "npm run pre-v && npm version major -m 'BLD: Release v%s' && npm run post-v", 27 "bump-minor": "npm run pre-v && npm version minor -m 'BLD: Release v%s' && npm run post-v", 28 "bump-patch": "npm run pre-v && npm version patch -m 'BLD: Release v%s' && npm run post-v", 29 "test": "npm run eslint --silent && mocha -R spec test/specs", 30 "perf": "node perf.js", 31 "cover": "istanbul cover test/runner.js html text-summary", 32 "watch": "watch-run -i -p 'test/specs/**/*.js' istanbul cover test/runner.js html text-summary" 33 }, 34 "prepush": [ 35 "npm run eslint --silent" 36 ], 37 "precommit": [ 38 "npm run eslint --silent" 39 ], 40 "keywords": [ 41 "file cache", 42 "task cache files", 43 "file cache", 44 "key par", 45 "key value", 46 "cache" 47 ], 32 "bundleDependencies": false, 48 33 "changelogx": { 49 34 "ignoreRegExp": [ … … 58 43 "projectName": "file-entry-cache" 59 44 }, 45 "dependencies": { 46 "flat-cache": "^3.0.4" 47 }, 48 "deprecated": false, 49 "description": "Super simple cache for file metadata, useful for process that work o a given series of files and that only need to repeat the job on the changed ones since the previous run of the process", 60 50 "devDependencies": { 61 51 "chai": "^4.2.0", … … 75 65 "write": "^2.0.0" 76 66 }, 77 "dependencies": { 78 "flat-cache": "^3.0.4" 79 } 67 "engines": { 68 "node": "^10.12.0 || >=12.0.0" 69 }, 70 "files": [ 71 "cache.js" 72 ], 73 "homepage": "https://github.com/royriojas/file-entry-cache#readme", 74 "keywords": [ 75 "file cache", 76 "task cache files", 77 "file cache", 78 "key par", 79 "key value", 80 "cache" 81 ], 82 "license": "MIT", 83 "main": "cache.js", 84 "name": "file-entry-cache", 85 "precommit": [ 86 "npm run eslint --silent" 87 ], 88 "prepush": [ 89 "npm run eslint --silent" 90 ], 91 "repository": { 92 "type": "git", 93 "url": "git+https://github.com/royriojas/file-entry-cache.git" 94 }, 95 "scripts": { 96 "autofix": "npm run eslint -- --fix", 97 "bump-major": "npm run pre-v && npm version major -m 'BLD: Release v%s' && npm run post-v", 98 "bump-minor": "npm run pre-v && npm version minor -m 'BLD: Release v%s' && npm run post-v", 99 "bump-patch": "npm run pre-v && npm version patch -m 'BLD: Release v%s' && npm run post-v", 100 "changelog": "changelogx -f markdown -o ./changelog.md", 101 "cover": "istanbul cover test/runner.js html text-summary", 102 "do-changelog": "npm run changelog && git add ./changelog.md && git commit -m 'DOC: Generate changelog' --no-verify", 103 "eslint": "eslint --cache --cache-location=node_modules/.cache/ 'cache.js' 'test/**/*.js' 'perf.js'", 104 "install-hooks": "prepush install && changelogx install-hook && precommit install", 105 "perf": "node perf.js", 106 "post-v": "npm run do-changelog && git push --no-verify && git push --tags --no-verify", 107 "pre-v": "npm run test", 108 "test": "npm run eslint --silent && mocha -R spec test/specs", 109 "watch": "watch-run -i -p 'test/specs/**/*.js' istanbul cover test/runner.js html text-summary" 110 }, 111 "version": "6.0.1" 80 112 }
Note:
See TracChangeset
for help on using the changeset viewer.