package.json 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. {
  2. "_from": "flat-cache@^1.2.1",
  3. "_id": "flat-cache@1.3.4",
  4. "_inBundle": false,
  5. "_integrity": "sha512-VwyB3Lkgacfik2vhqR4uv2rvebqmDvFu4jlN/C1RzWoJEo8I7z4Q404oiqYCkq41mni8EzQnm95emU9seckwtg==",
  6. "_location": "/flat-cache",
  7. "_phantomChildren": {
  8. "brace-expansion": "1.1.12",
  9. "fs.realpath": "1.0.0",
  10. "inflight": "1.0.6",
  11. "inherits": "2.0.4",
  12. "once": "1.3.3",
  13. "path-is-absolute": "1.0.1"
  14. },
  15. "_requested": {
  16. "type": "range",
  17. "registry": true,
  18. "raw": "flat-cache@^1.2.1",
  19. "name": "flat-cache",
  20. "escapedName": "flat-cache",
  21. "rawSpec": "^1.2.1",
  22. "saveSpec": null,
  23. "fetchSpec": "^1.2.1"
  24. },
  25. "_requiredBy": [
  26. "/file-entry-cache"
  27. ],
  28. "_resolved": "https://registry.npmmirror.com/flat-cache/-/flat-cache-1.3.4.tgz",
  29. "_shasum": "2c2ef77525cc2929007dfffa1dd314aa9c9dee6f",
  30. "_spec": "flat-cache@^1.2.1",
  31. "_where": "D:\\HTC\\program\\善行少年\\security-enterprise-admin\\node_modules\\file-entry-cache",
  32. "author": {
  33. "name": "Roy Riojas",
  34. "url": "http://royriojas.com"
  35. },
  36. "bugs": {
  37. "url": "https://github.com/royriojas/flat-cache/issues"
  38. },
  39. "bundleDependencies": false,
  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. "circular-json": "^0.3.1",
  54. "graceful-fs": "^4.1.2",
  55. "rimraf": "~2.6.2",
  56. "write": "^0.2.1"
  57. },
  58. "deprecated": false,
  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. }