项目原始demo,不改动
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
Este repositório está arquivado. Você pode visualizar os arquivos e realizar clone, mas não poderá realizar push nem abrir issues e pull requests.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. {
  2. "_args": [
  3. [
  4. "flat-cache@1.3.4",
  5. "D:\\A易云\\YiYunJianZhu"
  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. "_requested": {
  16. "type": "version",
  17. "registry": true,
  18. "raw": "flat-cache@1.3.4",
  19. "name": "flat-cache",
  20. "escapedName": "flat-cache",
  21. "rawSpec": "1.3.4",
  22. "saveSpec": null,
  23. "fetchSpec": "1.3.4"
  24. },
  25. "_requiredBy": [
  26. "/file-entry-cache"
  27. ],
  28. "_resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-1.3.4.tgz",
  29. "_spec": "1.3.4",
  30. "_where": "D:\\A易云\\YiYunJianZhu",
  31. "author": {
  32. "name": "Roy Riojas",
  33. "url": "http://royriojas.com"
  34. },
  35. "bugs": {
  36. "url": "https://github.com/royriojas/flat-cache/issues"
  37. },
  38. "changelogx": {
  39. "ignoreRegExp": [
  40. "BLD: Release",
  41. "DOC: Generate Changelog",
  42. "Generated Changelog"
  43. ],
  44. "issueIDRegExp": "#(\\d+)",
  45. "commitURL": "https://github.com/royriojas/flat-cache/commit/{0}",
  46. "authorURL": "https://github.com/{0}",
  47. "issueIDURL": "https://github.com/royriojas/flat-cache/issues/{0}",
  48. "projectName": "flat-cache"
  49. },
  50. "dependencies": {
  51. "circular-json": "^0.3.1",
  52. "graceful-fs": "^4.1.2",
  53. "rimraf": "~2.6.2",
  54. "write": "^0.2.1"
  55. },
  56. "description": "A stupidly simple key/value storage using files to persist some data",
  57. "devDependencies": {
  58. "chai": "^3.2.0",
  59. "changelogx": "3.0.0",
  60. "esbeautifier": "10.1.1",
  61. "eslinter": "^3.2.1",
  62. "glob-expand": "0.2.1",
  63. "istanbul": "0.4.5",
  64. "mocha": "5.2.0",
  65. "precommit": "^1.1.5",
  66. "prepush": "^3.1.4",
  67. "proxyquire": "^1.7.2",
  68. "sinon": "^1.16.1",
  69. "sinon-chai": "^2.8.0",
  70. "watch-run": "^1.2.2"
  71. },
  72. "engines": {
  73. "node": ">=0.10.0"
  74. },
  75. "files": [
  76. "cache.js",
  77. "utils.js",
  78. "del.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": "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 beautify && npm run eslint-fix",
  104. "beautify": "esbeautifier 'cache.js' 'utils.js' 'del.js' 'test/specs/**/*.js'",
  105. "beautify-check": "npm run beautify -- -k",
  106. "bump-major": "npm run pre-v && npm version major -m 'BLD: Release v%s' && npm run post-v",
  107. "bump-minor": "npm run pre-v && npm version minor -m 'BLD: Release v%s' && npm run post-v",
  108. "bump-patch": "npm run pre-v && npm version patch -m 'BLD: Release v%s' && npm run post-v",
  109. "changelog": "changelogx -f markdown -o ./changelog.md",
  110. "check": "npm run beautify-check && npm run eslint",
  111. "cover": "istanbul cover test/runner.js html text-summary",
  112. "do-changelog": "npm run changelog && git add ./changelog.md && git commit -m 'DOC: Generate changelog' --no-verify",
  113. "eslint": "eslinter 'cache.js' 'utils.js' 'del.js' 'specs/**/*.js'",
  114. "eslint-fix": "npm run eslint -- --fix",
  115. "install-hooks": "prepush install && changelogx install-hook && precommit install",
  116. "post-v": "npm run do-changelog && git push --no-verify && git push --tags --no-verify",
  117. "pre-v": "npm run verify",
  118. "test": "npm run verify --silent",
  119. "test:cache": "mocha -R spec test/specs",
  120. "verify": "npm run check && npm run test:cache",
  121. "watch": "watch-run -i -p 'test/specs/**/*.js' istanbul cover test/runner.js html text-summary"
  122. },
  123. "version": "1.3.4"
  124. }