Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
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. "_args": [
  3. [
  4. "file-entry-cache@6.0.1",
  5. "/home/pi/Desktop/smartMirrorTestEnvironment/MagicMirror"
  6. ]
  7. ],
  8. "_from": "file-entry-cache@6.0.1",
  9. "_id": "file-entry-cache@6.0.1",
  10. "_inBundle": false,
  11. "_integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==",
  12. "_location": "/file-entry-cache",
  13. "_phantomChildren": {},
  14. "_requested": {
  15. "type": "version",
  16. "registry": true,
  17. "raw": "file-entry-cache@6.0.1",
  18. "name": "file-entry-cache",
  19. "escapedName": "file-entry-cache",
  20. "rawSpec": "6.0.1",
  21. "saveSpec": null,
  22. "fetchSpec": "6.0.1"
  23. },
  24. "_requiredBy": [
  25. "/eslint",
  26. "/stylelint"
  27. ],
  28. "_resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz",
  29. "_spec": "6.0.1",
  30. "_where": "/home/pi/Desktop/smartMirrorTestEnvironment/MagicMirror",
  31. "author": {
  32. "name": "Roy Riojas",
  33. "url": "http://royriojas.com"
  34. },
  35. "bugs": {
  36. "url": "https://github.com/royriojas/file-entry-cache/issues"
  37. },
  38. "changelogx": {
  39. "ignoreRegExp": [
  40. "BLD: Release",
  41. "DOC: Generate Changelog",
  42. "Generated Changelog"
  43. ],
  44. "issueIDRegExp": "#(\\d+)",
  45. "commitURL": "https://github.com/royriojas/file-entry-cache/commit/{0}",
  46. "authorURL": "https://github.com/{0}",
  47. "issueIDURL": "https://github.com/royriojas/file-entry-cache/issues/{0}",
  48. "projectName": "file-entry-cache"
  49. },
  50. "dependencies": {
  51. "flat-cache": "^3.0.4"
  52. },
  53. "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",
  54. "devDependencies": {
  55. "chai": "^4.2.0",
  56. "changelogx": "^5.0.6",
  57. "del": "^6.0.0",
  58. "eslint": "^7.13.0",
  59. "eslint-config-prettier": "^6.15.0",
  60. "eslint-plugin-mocha": "^8.0.0",
  61. "eslint-plugin-prettier": "^3.1.4",
  62. "glob-expand": "^0.2.1",
  63. "istanbul": "^0.4.5",
  64. "mocha": "^8.2.1",
  65. "precommit": "^1.2.2",
  66. "prepush": "^3.1.11",
  67. "prettier": "^2.1.2",
  68. "watch-run": "^1.2.5",
  69. "write": "^2.0.0"
  70. },
  71. "engines": {
  72. "node": "^10.12.0 || >=12.0.0"
  73. },
  74. "files": [
  75. "cache.js"
  76. ],
  77. "homepage": "https://github.com/royriojas/file-entry-cache#readme",
  78. "keywords": [
  79. "file cache",
  80. "task cache files",
  81. "file cache",
  82. "key par",
  83. "key value",
  84. "cache"
  85. ],
  86. "license": "MIT",
  87. "main": "cache.js",
  88. "name": "file-entry-cache",
  89. "precommit": [
  90. "npm run eslint --silent"
  91. ],
  92. "prepush": [
  93. "npm run eslint --silent"
  94. ],
  95. "repository": {
  96. "type": "git",
  97. "url": "git+https://github.com/royriojas/file-entry-cache.git"
  98. },
  99. "scripts": {
  100. "autofix": "npm run eslint -- --fix",
  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. "cover": "istanbul cover test/runner.js html text-summary",
  106. "do-changelog": "npm run changelog && git add ./changelog.md && git commit -m 'DOC: Generate changelog' --no-verify",
  107. "eslint": "eslint --cache --cache-location=node_modules/.cache/ 'cache.js' 'test/**/*.js' 'perf.js'",
  108. "install-hooks": "prepush install && changelogx install-hook && precommit install",
  109. "perf": "node perf.js",
  110. "post-v": "npm run do-changelog && git push --no-verify && git push --tags --no-verify",
  111. "pre-v": "npm run test",
  112. "test": "npm run eslint --silent && mocha -R spec test/specs",
  113. "watch": "watch-run -i -p 'test/specs/**/*.js' istanbul cover test/runner.js html text-summary"
  114. },
  115. "version": "6.0.1"
  116. }