package.json 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. {
  2. "_from": "flat-cache@^3.0.4",
  3. "_id": "flat-cache@3.0.4",
  4. "_inBundle": false,
  5. "_integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==",
  6. "_location": "/flat-cache",
  7. "_phantomChildren": {
  8. "glob": "7.2.0"
  9. },
  10. "_requested": {
  11. "type": "range",
  12. "registry": true,
  13. "raw": "flat-cache@^3.0.4",
  14. "name": "flat-cache",
  15. "escapedName": "flat-cache",
  16. "rawSpec": "^3.0.4",
  17. "saveSpec": null,
  18. "fetchSpec": "^3.0.4"
  19. },
  20. "_requiredBy": [
  21. "/file-entry-cache"
  22. ],
  23. "_resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz",
  24. "_shasum": "61b0338302b2fe9f957dcc32fc2a87f1c3048b11",
  25. "_spec": "flat-cache@^3.0.4",
  26. "_where": "H:\\gs_nuxt\\node_modules\\file-entry-cache",
  27. "author": {
  28. "name": "Roy Riojas",
  29. "url": "http://royriojas.com"
  30. },
  31. "bugs": {
  32. "url": "https://github.com/royriojas/flat-cache/issues"
  33. },
  34. "bundleDependencies": false,
  35. "changelogx": {
  36. "ignoreRegExp": [
  37. "BLD: Release",
  38. "DOC: Generate Changelog",
  39. "Generated Changelog"
  40. ],
  41. "issueIDRegExp": "#(\\d+)",
  42. "commitURL": "https://github.com/royriojas/flat-cache/commit/{0}",
  43. "authorURL": "https://github.com/{0}",
  44. "issueIDURL": "https://github.com/royriojas/flat-cache/issues/{0}",
  45. "projectName": "flat-cache"
  46. },
  47. "dependencies": {
  48. "flatted": "^3.1.0",
  49. "rimraf": "^3.0.2"
  50. },
  51. "deprecated": false,
  52. "description": "A stupidly simple key/value storage using files to persist some data",
  53. "devDependencies": {
  54. "chai": "^4.2.0",
  55. "changelogx": "^5.0.6",
  56. "eslint": "^7.13.0",
  57. "eslint-config-prettier": "^6.15.0",
  58. "eslint-plugin-mocha": "^8.0.0",
  59. "eslint-plugin-prettier": "^3.1.4",
  60. "glob-expand": "^0.2.1",
  61. "istanbul": "^0.4.5",
  62. "mocha": "^8.2.1",
  63. "precommit": "^1.2.2",
  64. "prepush": "^3.1.11",
  65. "prettier": "^2.1.2",
  66. "watch-run": "^1.2.5"
  67. },
  68. "engines": {
  69. "node": "^10.12.0 || >=12.0.0"
  70. },
  71. "files": [
  72. "src/cache.js",
  73. "src/del.js",
  74. "src/utils.js"
  75. ],
  76. "homepage": "https://github.com/royriojas/flat-cache#readme",
  77. "keywords": [
  78. "json cache",
  79. "simple cache",
  80. "file cache",
  81. "key par",
  82. "key value",
  83. "cache"
  84. ],
  85. "license": "MIT",
  86. "main": "src/cache.js",
  87. "name": "flat-cache",
  88. "precommit": [
  89. "npm run verify --silent"
  90. ],
  91. "prepush": [
  92. "npm run verify --silent"
  93. ],
  94. "repository": {
  95. "type": "git",
  96. "url": "git+https://github.com/royriojas/flat-cache.git"
  97. },
  98. "scripts": {
  99. "autofix": "npm run eslint-fix",
  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. "check": "npm run eslint",
  105. "cover": "istanbul cover test/runner.js html text-summary",
  106. "do-changelog": "npm run changelog && git add ./changelog.md && git commit -m 'DOC: Generate changelog' --no-verify",
  107. "eslint": "eslint --cache --cache-location=node_modules/.cache/ ./src/**/*.js ./test/**/*.js",
  108. "eslint-fix": "npm run eslint -- --fix",
  109. "install-hooks": "prepush install && changelogx install-hook && precommit install",
  110. "post-v": "npm run do-changelog && git push --no-verify && git push --tags --no-verify",
  111. "pre-v": "npm run verify",
  112. "test": "npm run verify --silent",
  113. "test:cache": "mocha -R spec test/specs",
  114. "verify": "npm run eslint && npm run test:cache",
  115. "watch": "watch-run -i -p 'test/specs/**/*.js' istanbul cover test/runner.js html text-summary"
  116. },
  117. "version": "3.0.4"
  118. }