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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. {
  2. "_args": [
  3. [
  4. "longest-streak@2.0.4",
  5. "/home/pi/Desktop/smartMirrorTestEnvironment/MagicMirror"
  6. ]
  7. ],
  8. "_development": true,
  9. "_from": "longest-streak@2.0.4",
  10. "_id": "longest-streak@2.0.4",
  11. "_inBundle": false,
  12. "_integrity": "sha512-vM6rUVCVUJJt33bnmHiZEvr7wPT78ztX7rojL+LW51bHtLh6HTjx84LA5W4+oa6aKEJA7jJu5LR6vQRBpA5DVg==",
  13. "_location": "/longest-streak",
  14. "_phantomChildren": {},
  15. "_requested": {
  16. "type": "version",
  17. "registry": true,
  18. "raw": "longest-streak@2.0.4",
  19. "name": "longest-streak",
  20. "escapedName": "longest-streak",
  21. "rawSpec": "2.0.4",
  22. "saveSpec": null,
  23. "fetchSpec": "2.0.4"
  24. },
  25. "_requiredBy": [
  26. "/mdast-util-to-markdown"
  27. ],
  28. "_resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-2.0.4.tgz",
  29. "_spec": "2.0.4",
  30. "_where": "/home/pi/Desktop/smartMirrorTestEnvironment/MagicMirror",
  31. "author": {
  32. "name": "Titus Wormer",
  33. "email": "tituswormer@gmail.com",
  34. "url": "https://wooorm.com"
  35. },
  36. "bugs": {
  37. "url": "https://github.com/wooorm/longest-streak/issues"
  38. },
  39. "contributors": [
  40. {
  41. "name": "Titus Wormer",
  42. "email": "tituswormer@gmail.com",
  43. "url": "https://wooorm.com"
  44. }
  45. ],
  46. "dependencies": {},
  47. "description": "Count the longest repeating streak of a character",
  48. "devDependencies": {
  49. "browserify": "^16.0.0",
  50. "nyc": "^15.0.0",
  51. "prettier": "^1.0.0",
  52. "remark-cli": "^7.0.0",
  53. "remark-preset-wooorm": "^6.0.0",
  54. "tape": "^4.0.0",
  55. "tinyify": "^2.0.0",
  56. "xo": "^0.25.0"
  57. },
  58. "files": [
  59. "index.js"
  60. ],
  61. "funding": {
  62. "type": "github",
  63. "url": "https://github.com/sponsors/wooorm"
  64. },
  65. "homepage": "https://github.com/wooorm/longest-streak#readme",
  66. "keywords": [
  67. "count",
  68. "length",
  69. "longest",
  70. "repeating",
  71. "streak",
  72. "character"
  73. ],
  74. "license": "MIT",
  75. "name": "longest-streak",
  76. "nyc": {
  77. "check-coverage": true,
  78. "lines": 100,
  79. "functions": 100,
  80. "branches": 100
  81. },
  82. "prettier": {
  83. "tabWidth": 2,
  84. "useTabs": false,
  85. "singleQuote": true,
  86. "bracketSpacing": false,
  87. "semi": false,
  88. "trailingComma": "none"
  89. },
  90. "remarkConfig": {
  91. "plugins": [
  92. "preset-wooorm"
  93. ]
  94. },
  95. "repository": {
  96. "type": "git",
  97. "url": "git+https://github.com/wooorm/longest-streak.git"
  98. },
  99. "scripts": {
  100. "build": "npm run build-bundle && npm run build-mangle",
  101. "build-bundle": "browserify . -s longestStreak -o longest-streak.js",
  102. "build-mangle": "browserify . -s longestStreak -p tinyify -o longest-streak.min.js",
  103. "format": "remark . -qfo && prettier --write \"**/*.js\" && xo --fix",
  104. "test": "npm run format && npm run build && npm run test-coverage",
  105. "test-api": "node test",
  106. "test-coverage": "nyc --reporter lcov tape test.js"
  107. },
  108. "version": "2.0.4",
  109. "xo": {
  110. "prettier": true,
  111. "esnext": false,
  112. "ignores": [
  113. "longest-streak.js"
  114. ]
  115. }
  116. }