You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

120 lines
3.8 KiB

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