[d565449] | 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",
|
---|
| 7 | "author": {
|
---|
| 8 | "name": "Roy Riojas",
|
---|
| 9 | "url": "http://royriojas.com"
|
---|
| 10 | },
|
---|
| 11 | "main": "cache.js",
|
---|
| 12 | "files": [
|
---|
| 13 | "cache.js"
|
---|
| 14 | ],
|
---|
| 15 | "engines": {
|
---|
| 16 | "node": "^10.12.0 || >=12.0.0"
|
---|
| 17 | },
|
---|
| 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 | ],
|
---|
| 48 | "changelogx": {
|
---|
| 49 | "ignoreRegExp": [
|
---|
| 50 | "BLD: Release",
|
---|
| 51 | "DOC: Generate Changelog",
|
---|
| 52 | "Generated Changelog"
|
---|
| 53 | ],
|
---|
| 54 | "issueIDRegExp": "#(\\d+)",
|
---|
| 55 | "commitURL": "https://github.com/royriojas/file-entry-cache/commit/{0}",
|
---|
| 56 | "authorURL": "https://github.com/{0}",
|
---|
| 57 | "issueIDURL": "https://github.com/royriojas/file-entry-cache/issues/{0}",
|
---|
| 58 | "projectName": "file-entry-cache"
|
---|
| 59 | },
|
---|
| 60 | "devDependencies": {
|
---|
| 61 | "chai": "^4.2.0",
|
---|
| 62 | "changelogx": "^5.0.6",
|
---|
| 63 | "del": "^6.0.0",
|
---|
| 64 | "eslint": "^7.13.0",
|
---|
| 65 | "eslint-config-prettier": "^6.15.0",
|
---|
| 66 | "eslint-plugin-mocha": "^8.0.0",
|
---|
| 67 | "eslint-plugin-prettier": "^3.1.4",
|
---|
| 68 | "glob-expand": "^0.2.1",
|
---|
| 69 | "istanbul": "^0.4.5",
|
---|
| 70 | "mocha": "^8.2.1",
|
---|
| 71 | "precommit": "^1.2.2",
|
---|
| 72 | "prepush": "^3.1.11",
|
---|
| 73 | "prettier": "^2.1.2",
|
---|
| 74 | "watch-run": "^1.2.5",
|
---|
| 75 | "write": "^2.0.0"
|
---|
| 76 | },
|
---|
| 77 | "dependencies": {
|
---|
| 78 | "flat-cache": "^3.0.4"
|
---|
| 79 | }
|
---|
| 80 | }
|
---|