package.json 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. {
  2. "_args": [
  3. [
  4. "flat-cache@3.0.4",
  5. "C:\\Users\\Administrator\\Desktop\\最新\\supervision-ui"
  6. ]
  7. ],
  8. "_development": true,
  9. "_from": "flat-cache@3.0.4",
  10. "_id": "flat-cache@3.0.4",
  11. "_inBundle": false,
  12. "_integrity": "sha1-YbAzgwKy/p+Vfcwy/CqH8cMEixE=",
  13. "_location": "/flat-cache",
  14. "_phantomChildren": {
  15. "glob": "7.2.0"
  16. },
  17. "_requested": {
  18. "type": "version",
  19. "registry": true,
  20. "raw": "flat-cache@3.0.4",
  21. "name": "flat-cache",
  22. "escapedName": "flat-cache",
  23. "rawSpec": "3.0.4",
  24. "saveSpec": null,
  25. "fetchSpec": "3.0.4"
  26. },
  27. "_requiredBy": [
  28. "/file-entry-cache"
  29. ],
  30. "_resolved": "https://registry.nlark.com/flat-cache/download/flat-cache-3.0.4.tgz?cache=0&sync_timestamp=1622604531509&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fflat-cache%2Fdownload%2Fflat-cache-3.0.4.tgz",
  31. "_spec": "3.0.4",
  32. "_where": "C:\\Users\\Administrator\\Desktop\\最新\\supervision-ui",
  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. "flatted": "^3.1.0",
  54. "rimraf": "^3.0.2"
  55. },
  56. "description": "A stupidly simple key/value storage using files to persist some data",
  57. "devDependencies": {
  58. "chai": "^4.2.0",
  59. "changelogx": "^5.0.6",
  60. "eslint": "^7.13.0",
  61. "eslint-config-prettier": "^6.15.0",
  62. "eslint-plugin-mocha": "^8.0.0",
  63. "eslint-plugin-prettier": "^3.1.4",
  64. "glob-expand": "^0.2.1",
  65. "istanbul": "^0.4.5",
  66. "mocha": "^8.2.1",
  67. "precommit": "^1.2.2",
  68. "prepush": "^3.1.11",
  69. "prettier": "^2.1.2",
  70. "watch-run": "^1.2.5"
  71. },
  72. "engines": {
  73. "node": "^10.12.0 || >=12.0.0"
  74. },
  75. "files": [
  76. "src/cache.js",
  77. "src/del.js",
  78. "src/utils.js"
  79. ],
  80. "homepage": "https://github.com/royriojas/flat-cache#readme",
  81. "keywords": [
  82. "json cache",
  83. "simple cache",
  84. "file cache",
  85. "key par",
  86. "key value",
  87. "cache"
  88. ],
  89. "license": "MIT",
  90. "main": "src/cache.js",
  91. "name": "flat-cache",
  92. "precommit": [
  93. "npm run verify --silent"
  94. ],
  95. "prepush": [
  96. "npm run verify --silent"
  97. ],
  98. "repository": {
  99. "type": "git",
  100. "url": "git+https://github.com/royriojas/flat-cache.git"
  101. },
  102. "scripts": {
  103. "autofix": "npm run eslint-fix",
  104. "bump-major": "npm run pre-v && npm version major -m 'BLD: Release v%s' && npm run post-v",
  105. "bump-minor": "npm run pre-v && npm version minor -m 'BLD: Release v%s' && npm run post-v",
  106. "bump-patch": "npm run pre-v && npm version patch -m 'BLD: Release v%s' && npm run post-v",
  107. "changelog": "changelogx -f markdown -o ./changelog.md",
  108. "check": "npm run eslint",
  109. "cover": "istanbul cover test/runner.js html text-summary",
  110. "do-changelog": "npm run changelog && git add ./changelog.md && git commit -m 'DOC: Generate changelog' --no-verify",
  111. "eslint": "eslint --cache --cache-location=node_modules/.cache/ ./src/**/*.js ./test/**/*.js",
  112. "eslint-fix": "npm run eslint -- --fix",
  113. "install-hooks": "prepush install && changelogx install-hook && precommit install",
  114. "post-v": "npm run do-changelog && git push --no-verify && git push --tags --no-verify",
  115. "pre-v": "npm run verify",
  116. "test": "npm run verify --silent",
  117. "test:cache": "mocha -R spec test/specs",
  118. "verify": "npm run eslint && npm run test:cache",
  119. "watch": "watch-run -i -p 'test/specs/**/*.js' istanbul cover test/runner.js html text-summary"
  120. },
  121. "version": "3.0.4"
  122. }