Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

package.json 3.8KB

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