package.json 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. {
  2. "_from": "flat-cache@^2.0.1",
  3. "_id": "flat-cache@2.0.1",
  4. "_inBundle": false,
  5. "_integrity": "sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA==",
  6. "_location": "/flat-cache",
  7. "_phantomChildren": {
  8. "glob": "7.2.3"
  9. },
  10. "_requested": {
  11. "type": "range",
  12. "registry": true,
  13. "raw": "flat-cache@^2.0.1",
  14. "name": "flat-cache",
  15. "escapedName": "flat-cache",
  16. "rawSpec": "^2.0.1",
  17. "saveSpec": null,
  18. "fetchSpec": "^2.0.1"
  19. },
  20. "_requiredBy": [
  21. "/file-entry-cache"
  22. ],
  23. "_resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz",
  24. "_shasum": "5d296d6f04bda44a4630a301413bdbc2ec085ec0",
  25. "_spec": "flat-cache@^2.0.1",
  26. "_where": "D:\\qianger\\7\\jindouyunNewFront\\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": "^2.0.0",
  49. "rimraf": "2.6.3",
  50. "write": "1.0.3"
  51. },
  52. "deprecated": false,
  53. "description": "A stupidly simple key/value storage using files to persist some data",
  54. "devDependencies": {
  55. "chai": "^3.2.0",
  56. "changelogx": "3.0.0",
  57. "esbeautifier": "10.1.1",
  58. "eslinter": "^3.2.1",
  59. "glob-expand": "0.2.1",
  60. "istanbul": "0.4.5",
  61. "mocha": "5.2.0",
  62. "precommit": "^1.1.5",
  63. "prepush": "^3.1.4",
  64. "proxyquire": "^1.7.2",
  65. "sinon": "^1.16.1",
  66. "sinon-chai": "^2.8.0",
  67. "watch-run": "^1.2.2"
  68. },
  69. "engines": {
  70. "node": ">=4"
  71. },
  72. "files": [
  73. "cache.js",
  74. "utils.js",
  75. "del.js"
  76. ],
  77. "homepage": "https://github.com/royriojas/flat-cache#readme",
  78. "keywords": [
  79. "json cache",
  80. "simple cache",
  81. "file cache",
  82. "key par",
  83. "key value",
  84. "cache"
  85. ],
  86. "license": "MIT",
  87. "main": "cache.js",
  88. "name": "flat-cache",
  89. "precommit": [
  90. "npm run verify --silent"
  91. ],
  92. "prepush": [
  93. "npm run verify --silent"
  94. ],
  95. "repository": {
  96. "type": "git",
  97. "url": "git+https://github.com/royriojas/flat-cache.git"
  98. },
  99. "scripts": {
  100. "autofix": "npm run beautify && npm run eslint-fix",
  101. "beautify": "esbeautifier 'cache.js' 'utils.js' 'del.js' 'test/specs/**/*.js'",
  102. "beautify-check": "npm run beautify -- -k",
  103. "bump-major": "npm run pre-v && npm version major -m 'BLD: Release v%s' && npm run post-v",
  104. "bump-minor": "npm run pre-v && npm version minor -m 'BLD: Release v%s' && npm run post-v",
  105. "bump-patch": "npm run pre-v && npm version patch -m 'BLD: Release v%s' && npm run post-v",
  106. "changelog": "changelogx -f markdown -o ./changelog.md",
  107. "check": "npm run beautify-check && npm run eslint",
  108. "cover": "istanbul cover test/runner.js html text-summary",
  109. "do-changelog": "npm run changelog && git add ./changelog.md && git commit -m 'DOC: Generate changelog' --no-verify",
  110. "eslint": "eslinter 'cache.js' 'utils.js' 'del.js' 'specs/**/*.js'",
  111. "eslint-fix": "npm run eslint -- --fix",
  112. "install-hooks": "prepush install && changelogx install-hook && precommit install",
  113. "post-v": "npm run do-changelog && git push --no-verify && git push --tags --no-verify",
  114. "pre-v": "npm run verify",
  115. "test": "npm run verify --silent",
  116. "test:cache": "mocha -R spec test/specs",
  117. "verify": "npm run check && npm run test:cache",
  118. "watch": "watch-run -i -p 'test/specs/**/*.js' istanbul cover test/runner.js html text-summary"
  119. },
  120. "version": "2.0.1"
  121. }