package.json 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. {
  2. "name": "file-entry-cache",
  3. "version": "2.0.0",
  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": ">=0.10.0"
  17. },
  18. "scripts": {
  19. "beautify": "esbeautifier 'cache.js' 'test/**/*.js'",
  20. "beautify-check": "npm run beautify -- -k",
  21. "eslint": "eslinter 'cache.js' 'specs/**/*.js'",
  22. "lint": "npm run beautify && npm run eslint",
  23. "verify": "npm run beautify-check && npm run eslint",
  24. "install-hooks": "prepush install && changelogx install-hook && precommit install",
  25. "changelog": "changelogx -f markdown -o ./changelog.md",
  26. "do-changelog": "npm run changelog && git add ./changelog.md && git commit -m 'DOC: Generate changelog' --no-verify",
  27. "pre-v": "npm run test",
  28. "post-v": "npm run do-changelog && git push --no-verify && git push --tags --no-verify",
  29. "bump-major": "npm run pre-v && npm version major -m 'BLD: Release v%s' && npm run post-v",
  30. "bump-minor": "npm run pre-v && npm version minor -m 'BLD: Release v%s' && npm run post-v",
  31. "bump-patch": "npm run pre-v && npm version patch -m 'BLD: Release v%s' && npm run post-v",
  32. "test": "npm run verify --silent && mocha -R spec test/specs",
  33. "cover": "istanbul cover test/runner.js html text-summary",
  34. "watch": "watch-run -i -p 'test/specs/**/*.js' istanbul cover test/runner.js html text-summary"
  35. },
  36. "prepush": [
  37. "npm run verify"
  38. ],
  39. "precommit": [
  40. "npm run verify"
  41. ],
  42. "keywords": [
  43. "file cache",
  44. "task cache files",
  45. "file cache",
  46. "key par",
  47. "key value",
  48. "cache"
  49. ],
  50. "changelogx": {
  51. "ignoreRegExp": [
  52. "BLD: Release",
  53. "DOC: Generate Changelog",
  54. "Generated Changelog"
  55. ],
  56. "issueIDRegExp": "#(\\d+)",
  57. "commitURL": "https://github.com/royriojas/file-entry-cache/commit/{0}",
  58. "authorURL": "https://github.com/{0}",
  59. "issueIDURL": "https://github.com/royriojas/file-entry-cache/issues/{0}",
  60. "projectName": "file-entry-cache"
  61. },
  62. "devDependencies": {
  63. "chai": "^3.2.0",
  64. "changelogx": "^1.0.18",
  65. "commander": "^2.6.0",
  66. "del": "^2.0.2",
  67. "esbeautifier": "^4.2.11",
  68. "eslinter": "^2.3.3",
  69. "glob-expand": "^0.1.0",
  70. "istanbul": "^0.3.6",
  71. "mocha": "^2.1.0",
  72. "precommit": "^1.1.5",
  73. "prepush": "^3.1.4",
  74. "proxyquire": "^1.3.1",
  75. "sinon": "^1.12.2",
  76. "sinon-chai": "^2.7.0",
  77. "watch-run": "^1.2.1",
  78. "write": "^0.3.1"
  79. },
  80. "dependencies": {
  81. "flat-cache": "^1.2.1",
  82. "object-assign": "^4.0.1"
  83. },
  84. "__npminstall_done": "Thu Dec 24 2020 20:20:55 GMT+0800 (CST)",
  85. "_from": "file-entry-cache@2.0.0",
  86. "_resolved": "https://registry.npm.taobao.org/file-entry-cache/download/file-entry-cache-2.0.0.tgz"
  87. }