package.json 3.8 KB

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