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.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. {
  2. "_args": [
  3. [
  4. "flat-cache@3.0.4",
  5. "/home/pi/Desktop/smartMirrorTestEnvironment/MagicMirror"
  6. ]
  7. ],
  8. "_from": "flat-cache@3.0.4",
  9. "_id": "flat-cache@3.0.4",
  10. "_inBundle": false,
  11. "_integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==",
  12. "_location": "/flat-cache",
  13. "_phantomChildren": {},
  14. "_requested": {
  15. "type": "version",
  16. "registry": true,
  17. "raw": "flat-cache@3.0.4",
  18. "name": "flat-cache",
  19. "escapedName": "flat-cache",
  20. "rawSpec": "3.0.4",
  21. "saveSpec": null,
  22. "fetchSpec": "3.0.4"
  23. },
  24. "_requiredBy": [
  25. "/file-entry-cache"
  26. ],
  27. "_resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz",
  28. "_spec": "3.0.4",
  29. "_where": "/home/pi/Desktop/smartMirrorTestEnvironment/MagicMirror",
  30. "author": {
  31. "name": "Roy Riojas",
  32. "url": "http://royriojas.com"
  33. },
  34. "bugs": {
  35. "url": "https://github.com/royriojas/flat-cache/issues"
  36. },
  37. "changelogx": {
  38. "ignoreRegExp": [
  39. "BLD: Release",
  40. "DOC: Generate Changelog",
  41. "Generated Changelog"
  42. ],
  43. "issueIDRegExp": "#(\\d+)",
  44. "commitURL": "https://github.com/royriojas/flat-cache/commit/{0}",
  45. "authorURL": "https://github.com/{0}",
  46. "issueIDURL": "https://github.com/royriojas/flat-cache/issues/{0}",
  47. "projectName": "flat-cache"
  48. },
  49. "dependencies": {
  50. "flatted": "^3.1.0",
  51. "rimraf": "^3.0.2"
  52. },
  53. "description": "A stupidly simple key/value storage using files to persist some data",
  54. "devDependencies": {
  55. "chai": "^4.2.0",
  56. "changelogx": "^5.0.6",
  57. "eslint": "^7.13.0",
  58. "eslint-config-prettier": "^6.15.0",
  59. "eslint-plugin-mocha": "^8.0.0",
  60. "eslint-plugin-prettier": "^3.1.4",
  61. "glob-expand": "^0.2.1",
  62. "istanbul": "^0.4.5",
  63. "mocha": "^8.2.1",
  64. "precommit": "^1.2.2",
  65. "prepush": "^3.1.11",
  66. "prettier": "^2.1.2",
  67. "watch-run": "^1.2.5"
  68. },
  69. "engines": {
  70. "node": "^10.12.0 || >=12.0.0"
  71. },
  72. "files": [
  73. "src/cache.js",
  74. "src/del.js",
  75. "src/utils.js"
  76. ],
  77. "homepage": "https://github.com/royriojas/flat-cache#readme",
  78. "keywords": [
  79. "json cache",
  80. "simple cache",
  81. "file cache",
  82. "key par",
  83. "key value",
  84. "cache"
  85. ],
  86. "license": "MIT",
  87. "main": "src/cache.js",
  88. "name": "flat-cache",
  89. "precommit": [
  90. "npm run verify --silent"
  91. ],
  92. "prepush": [
  93. "npm run verify --silent"
  94. ],
  95. "repository": {
  96. "type": "git",
  97. "url": "git+https://github.com/royriojas/flat-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. "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": "eslint --cache --cache-location=node_modules/.cache/ ./src/**/*.js ./test/**/*.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 eslint && npm run test:cache",
  116. "watch": "watch-run -i -p 'test/specs/**/*.js' istanbul cover test/runner.js html text-summary"
  117. },
  118. "version": "3.0.4"
  119. }