package.json 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. {
  2. "_args": [
  3. [
  4. "file-entry-cache@2.0.0",
  5. "/Users/lihai/jolijoli/pad_spa"
  6. ]
  7. ],
  8. "_development": true,
  9. "_from": "file-entry-cache@2.0.0",
  10. "_id": "file-entry-cache@2.0.0",
  11. "_inBundle": false,
  12. "_integrity": "sha1-w5KZDD5oR4PYOLjISkXYoEhFg2E=",
  13. "_location": "/file-entry-cache",
  14. "_optional": true,
  15. "_phantomChildren": {},
  16. "_requested": {
  17. "type": "version",
  18. "registry": true,
  19. "raw": "file-entry-cache@2.0.0",
  20. "name": "file-entry-cache",
  21. "escapedName": "file-entry-cache",
  22. "rawSpec": "2.0.0",
  23. "saveSpec": null,
  24. "fetchSpec": "2.0.0"
  25. },
  26. "_requiredBy": [
  27. "/@vue/cli-plugin-eslint/eslint"
  28. ],
  29. "_resolved": "https://registry.npm.taobao.org/file-entry-cache/download/file-entry-cache-2.0.0.tgz",
  30. "_spec": "2.0.0",
  31. "_where": "/Users/lihai/jolijoli/pad_spa",
  32. "author": {
  33. "name": "Roy Riojas",
  34. "url": "http://royriojas.com"
  35. },
  36. "bugs": {
  37. "url": "https://github.com/royriojas/file-entry-cache/issues"
  38. },
  39. "changelogx": {
  40. "ignoreRegExp": [
  41. "BLD: Release",
  42. "DOC: Generate Changelog",
  43. "Generated Changelog"
  44. ],
  45. "issueIDRegExp": "#(\\d+)",
  46. "commitURL": "https://github.com/royriojas/file-entry-cache/commit/{0}",
  47. "authorURL": "https://github.com/{0}",
  48. "issueIDURL": "https://github.com/royriojas/file-entry-cache/issues/{0}",
  49. "projectName": "file-entry-cache"
  50. },
  51. "dependencies": {
  52. "flat-cache": "^1.2.1",
  53. "object-assign": "^4.0.1"
  54. },
  55. "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",
  56. "devDependencies": {
  57. "chai": "^3.2.0",
  58. "changelogx": "^1.0.18",
  59. "commander": "^2.6.0",
  60. "del": "^2.0.2",
  61. "esbeautifier": "^4.2.11",
  62. "eslinter": "^2.3.3",
  63. "glob-expand": "^0.1.0",
  64. "istanbul": "^0.3.6",
  65. "mocha": "^2.1.0",
  66. "precommit": "^1.1.5",
  67. "prepush": "^3.1.4",
  68. "proxyquire": "^1.3.1",
  69. "sinon": "^1.12.2",
  70. "sinon-chai": "^2.7.0",
  71. "watch-run": "^1.2.1",
  72. "write": "^0.3.1"
  73. },
  74. "engines": {
  75. "node": ">=0.10.0"
  76. },
  77. "files": [
  78. "cache.js"
  79. ],
  80. "homepage": "https://github.com/royriojas/file-entry-cache#readme",
  81. "keywords": [
  82. "file cache",
  83. "task cache files",
  84. "file cache",
  85. "key par",
  86. "key value",
  87. "cache"
  88. ],
  89. "license": "MIT",
  90. "main": "cache.js",
  91. "name": "file-entry-cache",
  92. "precommit": [
  93. "npm run verify"
  94. ],
  95. "prepush": [
  96. "npm run verify"
  97. ],
  98. "repository": {
  99. "type": "git",
  100. "url": "git+https://github.com/royriojas/file-entry-cache.git"
  101. },
  102. "scripts": {
  103. "beautify": "esbeautifier 'cache.js' 'test/**/*.js'",
  104. "beautify-check": "npm run beautify -- -k",
  105. "bump-major": "npm run pre-v && npm version major -m 'BLD: Release v%s' && npm run post-v",
  106. "bump-minor": "npm run pre-v && npm version minor -m 'BLD: Release v%s' && npm run post-v",
  107. "bump-patch": "npm run pre-v && npm version patch -m 'BLD: Release v%s' && npm run post-v",
  108. "changelog": "changelogx -f markdown -o ./changelog.md",
  109. "cover": "istanbul cover test/runner.js html text-summary",
  110. "do-changelog": "npm run changelog && git add ./changelog.md && git commit -m 'DOC: Generate changelog' --no-verify",
  111. "eslint": "eslinter 'cache.js' 'specs/**/*.js'",
  112. "install-hooks": "prepush install && changelogx install-hook && precommit install",
  113. "lint": "npm run beautify && npm run eslint",
  114. "post-v": "npm run do-changelog && git push --no-verify && git push --tags --no-verify",
  115. "pre-v": "npm run test",
  116. "test": "npm run verify --silent && mocha -R spec test/specs",
  117. "verify": "npm run beautify-check && npm run eslint",
  118. "watch": "watch-run -i -p 'test/specs/**/*.js' istanbul cover test/runner.js html text-summary"
  119. },
  120. "version": "2.0.0"
  121. }