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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. {
  2. "_args": [
  3. [
  4. "is-decimal@1.0.4",
  5. "/home/pi/Desktop/smartMirrorTestEnvironment/MagicMirror"
  6. ]
  7. ],
  8. "_development": true,
  9. "_from": "is-decimal@1.0.4",
  10. "_id": "is-decimal@1.0.4",
  11. "_inBundle": false,
  12. "_integrity": "sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==",
  13. "_location": "/is-decimal",
  14. "_phantomChildren": {},
  15. "_requested": {
  16. "type": "version",
  17. "registry": true,
  18. "raw": "is-decimal@1.0.4",
  19. "name": "is-decimal",
  20. "escapedName": "is-decimal",
  21. "rawSpec": "1.0.4",
  22. "saveSpec": null,
  23. "fetchSpec": "1.0.4"
  24. },
  25. "_requiredBy": [
  26. "/is-alphanumerical",
  27. "/parse-entities"
  28. ],
  29. "_resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.4.tgz",
  30. "_spec": "1.0.4",
  31. "_where": "/home/pi/Desktop/smartMirrorTestEnvironment/MagicMirror",
  32. "author": {
  33. "name": "Titus Wormer",
  34. "email": "tituswormer@gmail.com",
  35. "url": "https://wooorm.com"
  36. },
  37. "bugs": {
  38. "url": "https://github.com/wooorm/is-decimal/issues"
  39. },
  40. "contributors": [
  41. {
  42. "name": "Titus Wormer",
  43. "email": "tituswormer@gmail.com",
  44. "url": "https://wooorm.com"
  45. }
  46. ],
  47. "dependencies": {},
  48. "description": "Check if a character is decimal",
  49. "devDependencies": {
  50. "browserify": "^16.0.0",
  51. "nyc": "^15.0.0",
  52. "prettier": "^1.0.0",
  53. "remark-cli": "^7.0.0",
  54. "remark-preset-wooorm": "^6.0.0",
  55. "tape": "^4.0.0",
  56. "tinyify": "^2.0.0",
  57. "xo": "^0.25.0"
  58. },
  59. "files": [
  60. "index.js"
  61. ],
  62. "funding": {
  63. "type": "github",
  64. "url": "https://github.com/sponsors/wooorm"
  65. },
  66. "homepage": "https://github.com/wooorm/is-decimal#readme",
  67. "keywords": [
  68. "string",
  69. "character",
  70. "char",
  71. "code",
  72. "decimal"
  73. ],
  74. "license": "MIT",
  75. "name": "is-decimal",
  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/is-decimal.git"
  98. },
  99. "scripts": {
  100. "build": "npm run build-bundle && npm run build-mangle",
  101. "build-bundle": "browserify . -s isDecimal -o is-decimal.js",
  102. "build-mangle": "browserify . -s isDecimal -p tinyify -o is-decimal.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": "1.0.4",
  109. "xo": {
  110. "prettier": true,
  111. "esnext": false,
  112. "ignores": [
  113. "is-decimal.js"
  114. ]
  115. }
  116. }