package.json 3.9 KB

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