package.json 3.8 KB

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