package.json 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. {
  2. "_args": [
  3. [
  4. "flat-cache@1.3.4",
  5. "E:\\2023\\5\\myjadmin"
  6. ]
  7. ],
  8. "_development": true,
  9. "_from": "flat-cache@1.3.4",
  10. "_id": "flat-cache@1.3.4",
  11. "_inBundle": false,
  12. "_integrity": "sha512-VwyB3Lkgacfik2vhqR4uv2rvebqmDvFu4jlN/C1RzWoJEo8I7z4Q404oiqYCkq41mni8EzQnm95emU9seckwtg==",
  13. "_location": "/flat-cache",
  14. "_phantomChildren": {
  15. "glob": "7.2.3"
  16. },
  17. "_requested": {
  18. "type": "version",
  19. "registry": true,
  20. "raw": "flat-cache@1.3.4",
  21. "name": "flat-cache",
  22. "escapedName": "flat-cache",
  23. "rawSpec": "1.3.4",
  24. "saveSpec": null,
  25. "fetchSpec": "1.3.4"
  26. },
  27. "_requiredBy": [
  28. "/file-entry-cache"
  29. ],
  30. "_resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-1.3.4.tgz",
  31. "_spec": "1.3.4",
  32. "_where": "E:\\2023\\5\\myjadmin",
  33. "author": {
  34. "name": "Roy Riojas",
  35. "url": "http://royriojas.com"
  36. },
  37. "bugs": {
  38. "url": "https://github.com/royriojas/flat-cache/issues"
  39. },
  40. "changelogx": {
  41. "ignoreRegExp": [
  42. "BLD: Release",
  43. "DOC: Generate Changelog",
  44. "Generated Changelog"
  45. ],
  46. "issueIDRegExp": "#(\\d+)",
  47. "commitURL": "https://github.com/royriojas/flat-cache/commit/{0}",
  48. "authorURL": "https://github.com/{0}",
  49. "issueIDURL": "https://github.com/royriojas/flat-cache/issues/{0}",
  50. "projectName": "flat-cache"
  51. },
  52. "dependencies": {
  53. "circular-json": "^0.3.1",
  54. "graceful-fs": "^4.1.2",
  55. "rimraf": "~2.6.2",
  56. "write": "^0.2.1"
  57. },
  58. "description": "A stupidly simple key/value storage using files to persist some data",
  59. "devDependencies": {
  60. "chai": "^3.2.0",
  61. "changelogx": "3.0.0",
  62. "esbeautifier": "10.1.1",
  63. "eslinter": "^3.2.1",
  64. "glob-expand": "0.2.1",
  65. "istanbul": "0.4.5",
  66. "mocha": "5.2.0",
  67. "precommit": "^1.1.5",
  68. "prepush": "^3.1.4",
  69. "proxyquire": "^1.7.2",
  70. "sinon": "^1.16.1",
  71. "sinon-chai": "^2.8.0",
  72. "watch-run": "^1.2.2"
  73. },
  74. "engines": {
  75. "node": ">=0.10.0"
  76. },
  77. "files": [
  78. "cache.js",
  79. "utils.js",
  80. "del.js"
  81. ],
  82. "homepage": "https://github.com/royriojas/flat-cache#readme",
  83. "keywords": [
  84. "json cache",
  85. "simple cache",
  86. "file cache",
  87. "key par",
  88. "key value",
  89. "cache"
  90. ],
  91. "license": "MIT",
  92. "main": "cache.js",
  93. "name": "flat-cache",
  94. "precommit": [
  95. "npm run verify --silent"
  96. ],
  97. "prepush": [
  98. "npm run verify --silent"
  99. ],
  100. "repository": {
  101. "type": "git",
  102. "url": "git+https://github.com/royriojas/flat-cache.git"
  103. },
  104. "scripts": {
  105. "autofix": "npm run beautify && npm run eslint-fix",
  106. "beautify": "esbeautifier 'cache.js' 'utils.js' 'del.js' 'test/specs/**/*.js'",
  107. "beautify-check": "npm run beautify -- -k",
  108. "bump-major": "npm run pre-v && npm version major -m 'BLD: Release v%s' && npm run post-v",
  109. "bump-minor": "npm run pre-v && npm version minor -m 'BLD: Release v%s' && npm run post-v",
  110. "bump-patch": "npm run pre-v && npm version patch -m 'BLD: Release v%s' && npm run post-v",
  111. "changelog": "changelogx -f markdown -o ./changelog.md",
  112. "check": "npm run beautify-check && npm run eslint",
  113. "cover": "istanbul cover test/runner.js html text-summary",
  114. "do-changelog": "npm run changelog && git add ./changelog.md && git commit -m 'DOC: Generate changelog' --no-verify",
  115. "eslint": "eslinter 'cache.js' 'utils.js' 'del.js' 'specs/**/*.js'",
  116. "eslint-fix": "npm run eslint -- --fix",
  117. "install-hooks": "prepush install && changelogx install-hook && precommit install",
  118. "post-v": "npm run do-changelog && git push --no-verify && git push --tags --no-verify",
  119. "pre-v": "npm run verify",
  120. "test": "npm run verify --silent",
  121. "test:cache": "mocha -R spec test/specs",
  122. "verify": "npm run check && npm run test:cache",
  123. "watch": "watch-run -i -p 'test/specs/**/*.js' istanbul cover test/runner.js html text-summary"
  124. },
  125. "version": "1.3.4"
  126. }