package.json 3.7 KB

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