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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. {
  2. "_args": [
  3. [
  4. "uri-js@4.4.1",
  5. "/home/pi/Desktop/smartMirrorTestEnvironment/MagicMirror"
  6. ]
  7. ],
  8. "_from": "uri-js@4.4.1",
  9. "_id": "uri-js@4.4.1",
  10. "_inBundle": false,
  11. "_integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
  12. "_location": "/uri-js",
  13. "_phantomChildren": {},
  14. "_requested": {
  15. "type": "version",
  16. "registry": true,
  17. "raw": "uri-js@4.4.1",
  18. "name": "uri-js",
  19. "escapedName": "uri-js",
  20. "rawSpec": "4.4.1",
  21. "saveSpec": null,
  22. "fetchSpec": "4.4.1"
  23. },
  24. "_requiredBy": [
  25. "/ajv",
  26. "/table/ajv"
  27. ],
  28. "_resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
  29. "_spec": "4.4.1",
  30. "_where": "/home/pi/Desktop/smartMirrorTestEnvironment/MagicMirror",
  31. "author": {
  32. "name": "Gary Court",
  33. "email": "gary.court@gmail.com"
  34. },
  35. "bugs": {
  36. "url": "https://github.com/garycourt/uri-js/issues"
  37. },
  38. "dependencies": {
  39. "punycode": "^2.1.0"
  40. },
  41. "description": "An RFC 3986/3987 compliant, scheme extendable URI/IRI parsing/validating/resolving library for JavaScript.",
  42. "devDependencies": {
  43. "babel-cli": "^6.26.0",
  44. "babel-plugin-external-helpers": "^6.22.0",
  45. "babel-preset-latest": "^6.24.1",
  46. "mocha": "^8.2.1",
  47. "mocha-qunit-ui": "^0.1.3",
  48. "rollup": "^0.41.6",
  49. "rollup-plugin-babel": "^2.7.1",
  50. "rollup-plugin-node-resolve": "^2.0.0",
  51. "sorcery": "^0.10.0",
  52. "typescript": "^2.8.1",
  53. "uglify-js": "^2.8.14"
  54. },
  55. "directories": {
  56. "test": "tests"
  57. },
  58. "files": [
  59. "dist",
  60. "package.json",
  61. "yarn.lock",
  62. "README.md",
  63. "CHANGELOG",
  64. "LICENSE"
  65. ],
  66. "homepage": "https://github.com/garycourt/uri-js",
  67. "keywords": [
  68. "URI",
  69. "IRI",
  70. "IDN",
  71. "URN",
  72. "UUID",
  73. "HTTP",
  74. "HTTPS",
  75. "WS",
  76. "WSS",
  77. "MAILTO",
  78. "RFC3986",
  79. "RFC3987",
  80. "RFC5891",
  81. "RFC2616",
  82. "RFC2818",
  83. "RFC2141",
  84. "RFC4122",
  85. "RFC4291",
  86. "RFC5952",
  87. "RFC6068",
  88. "RFC6455",
  89. "RFC6874"
  90. ],
  91. "license": "BSD-2-Clause",
  92. "main": "dist/es5/uri.all.js",
  93. "name": "uri-js",
  94. "repository": {
  95. "type": "git",
  96. "url": "git+ssh://git@github.com/garycourt/uri-js.git"
  97. },
  98. "scripts": {
  99. "build": "npm run build:esnext && npm run build:es5 && npm run build:es5:min",
  100. "build:es5": "rollup -c && cp dist/esnext/uri.d.ts dist/es5/uri.all.d.ts && npm run build:es5:fix-sourcemap",
  101. "build:es5:fix-sourcemap": "sorcery -i dist/es5/uri.all.js",
  102. "build:es5:min": "uglifyjs dist/es5/uri.all.js --support-ie8 --output dist/es5/uri.all.min.js --in-source-map dist/es5/uri.all.js.map --source-map uri.all.min.js.map --comments --compress --mangle --pure-funcs merge subexp && mv uri.all.min.js.map dist/es5/ && cp dist/es5/uri.all.d.ts dist/es5/uri.all.min.d.ts",
  103. "build:esnext": "tsc",
  104. "clean": "rm -rf dist",
  105. "test": "mocha -u mocha-qunit-ui dist/es5/uri.all.js tests/tests.js"
  106. },
  107. "types": "dist/es5/uri.all.d.ts",
  108. "version": "4.4.1"
  109. }