package.json 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. {
  2. "_from": "flat-cache@^3.0.4",
  3. "_id": "flat-cache@3.2.0",
  4. "_inBundle": false,
  5. "_integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==",
  6. "_location": "/flat-cache",
  7. "_phantomChildren": {
  8. "glob": "7.2.3"
  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.npmmirror.com/flat-cache/-/flat-cache-3.2.0.tgz",
  24. "_shasum": "2c0c2d5040c99b1632771a9d105725c0115363ee",
  25. "_spec": "flat-cache@^3.0.4",
  26. "_where": "C:\\Users\\Administrator\\Desktop\\crmeb5.0\\template\\admin\\node_modules\\file-entry-cache",
  27. "author": {
  28. "name": "Jared Wray",
  29. "url": "https://jaredwray.com"
  30. },
  31. "bugs": {
  32. "url": "https://github.com/jaredwray/flat-cache/issues"
  33. },
  34. "bundleDependencies": false,
  35. "dependencies": {
  36. "flatted": "^3.2.9",
  37. "keyv": "^4.5.3",
  38. "rimraf": "^3.0.2"
  39. },
  40. "deprecated": false,
  41. "description": "A stupidly simple key/value storage using files to persist some data",
  42. "devDependencies": {
  43. "c8": "^7.14.0",
  44. "chai": "^4.3.10",
  45. "eslint": "^7.13.0",
  46. "eslint-config-prettier": "^6.15.0",
  47. "eslint-plugin-mocha": "^8.0.0",
  48. "eslint-plugin-prettier": "^3.1.4",
  49. "glob-expand": "^0.2.1",
  50. "mocha": "^8.4.0",
  51. "prettier": "^2.1.2",
  52. "write": "^2.0.0"
  53. },
  54. "engines": {
  55. "node": "^10.12.0 || >=12.0.0"
  56. },
  57. "files": [
  58. "src/cache.js",
  59. "src/del.js",
  60. "src/utils.js"
  61. ],
  62. "homepage": "https://github.com/jaredwray/flat-cache#readme",
  63. "keywords": [
  64. "json cache",
  65. "simple cache",
  66. "file cache",
  67. "key par",
  68. "key value",
  69. "cache"
  70. ],
  71. "license": "MIT",
  72. "main": "src/cache.js",
  73. "name": "flat-cache",
  74. "precommit": [
  75. "npm run verify --silent"
  76. ],
  77. "prepush": [
  78. "npm run verify --silent"
  79. ],
  80. "repository": {
  81. "type": "git",
  82. "url": "git+https://github.com/jaredwray/flat-cache.git"
  83. },
  84. "scripts": {
  85. "autofix": "npm run eslint-fix",
  86. "check": "npm run eslint",
  87. "eslint": "eslint --cache --cache-location=node_modules/.cache/ ./src/**/*.js ./test/**/*.js",
  88. "eslint-fix": "npm run eslint -- --fix",
  89. "test": "npm run verify --silent",
  90. "test:cache": "c8 mocha -R spec test/specs",
  91. "test:ci:cache": "c8 --reporter=lcov mocha -R spec test/specs",
  92. "verify": "npm run eslint && npm run test:cache"
  93. },
  94. "version": "3.2.0"
  95. }