package.json 3.9 KB

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