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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. {
  2. "_from": "file-entry-cache@^2.0.0",
  3. "_id": "file-entry-cache@2.0.0",
  4. "_inBundle": false,
  5. "_integrity": "sha1-w5KZDD5oR4PYOLjISkXYoEhFg2E=",
  6. "_location": "/file-entry-cache",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "file-entry-cache@^2.0.0",
  12. "name": "file-entry-cache",
  13. "escapedName": "file-entry-cache",
  14. "rawSpec": "^2.0.0",
  15. "saveSpec": null,
  16. "fetchSpec": "^2.0.0"
  17. },
  18. "_requiredBy": [
  19. "/eslint"
  20. ],
  21. "_resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-2.0.0.tgz",
  22. "_shasum": "c392990c3e684783d838b8c84a45d8a048458361",
  23. "_spec": "file-entry-cache@^2.0.0",
  24. "_where": "/home/erik/Documents/workspace_brackets/BME_Project_Ohm/om/node_modules/eslint",
  25. "author": {
  26. "name": "Roy Riojas",
  27. "url": "http://royriojas.com"
  28. },
  29. "bugs": {
  30. "url": "https://github.com/royriojas/file-entry-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/file-entry-cache/commit/{0}",
  41. "authorURL": "https://github.com/{0}",
  42. "issueIDURL": "https://github.com/royriojas/file-entry-cache/issues/{0}",
  43. "projectName": "file-entry-cache"
  44. },
  45. "dependencies": {
  46. "flat-cache": "^1.2.1",
  47. "object-assign": "^4.0.1"
  48. },
  49. "deprecated": false,
  50. "description": "Super simple cache for file metadata, useful for process that work o a given series of files and that only need to repeat the job on the changed ones since the previous run of the process",
  51. "devDependencies": {
  52. "chai": "^3.2.0",
  53. "changelogx": "^1.0.18",
  54. "commander": "^2.6.0",
  55. "del": "^2.0.2",
  56. "esbeautifier": "^4.2.11",
  57. "eslinter": "^2.3.3",
  58. "glob-expand": "^0.1.0",
  59. "istanbul": "^0.3.6",
  60. "mocha": "^2.1.0",
  61. "precommit": "^1.1.5",
  62. "prepush": "^3.1.4",
  63. "proxyquire": "^1.3.1",
  64. "sinon": "^1.12.2",
  65. "sinon-chai": "^2.7.0",
  66. "watch-run": "^1.2.1",
  67. "write": "^0.3.1"
  68. },
  69. "engines": {
  70. "node": ">=0.10.0"
  71. },
  72. "files": [
  73. "cache.js"
  74. ],
  75. "homepage": "https://github.com/royriojas/file-entry-cache#readme",
  76. "keywords": [
  77. "file cache",
  78. "task cache files",
  79. "file cache",
  80. "key par",
  81. "key value",
  82. "cache"
  83. ],
  84. "license": "MIT",
  85. "main": "cache.js",
  86. "name": "file-entry-cache",
  87. "precommit": [
  88. "npm run verify"
  89. ],
  90. "prepush": [
  91. "npm run verify"
  92. ],
  93. "repository": {
  94. "type": "git",
  95. "url": "git+https://github.com/royriojas/file-entry-cache.git"
  96. },
  97. "scripts": {
  98. "beautify": "esbeautifier 'cache.js' 'test/**/*.js'",
  99. "beautify-check": "npm run beautify -- -k",
  100. "bump-major": "npm run pre-v && npm version major -m 'BLD: Release v%s' && npm run post-v",
  101. "bump-minor": "npm run pre-v && npm version minor -m 'BLD: Release v%s' && npm run post-v",
  102. "bump-patch": "npm run pre-v && npm version patch -m 'BLD: Release v%s' && npm run post-v",
  103. "changelog": "changelogx -f markdown -o ./changelog.md",
  104. "cover": "istanbul cover test/runner.js html text-summary",
  105. "do-changelog": "npm run changelog && git add ./changelog.md && git commit -m 'DOC: Generate changelog' --no-verify",
  106. "eslint": "eslinter 'cache.js' 'specs/**/*.js'",
  107. "install-hooks": "prepush install && changelogx install-hook && precommit install",
  108. "lint": "npm run beautify && npm run eslint",
  109. "post-v": "npm run do-changelog && git push --no-verify && git push --tags --no-verify",
  110. "pre-v": "npm run test",
  111. "test": "npm run verify --silent && mocha -R spec test/specs",
  112. "verify": "npm run beautify-check && npm run eslint",
  113. "watch": "watch-run -i -p 'test/specs/**/*.js' istanbul cover test/runner.js html text-summary"
  114. },
  115. "version": "2.0.0"
  116. }