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

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