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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. {
  2. "_args": [
  3. [
  4. "regexpp@3.2.0",
  5. "/home/pi/Desktop/smartMirrorTestEnvironment/MagicMirror"
  6. ]
  7. ],
  8. "_from": "regexpp@3.2.0",
  9. "_id": "regexpp@3.2.0",
  10. "_inBundle": false,
  11. "_integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==",
  12. "_location": "/regexpp",
  13. "_phantomChildren": {},
  14. "_requested": {
  15. "type": "version",
  16. "registry": true,
  17. "raw": "regexpp@3.2.0",
  18. "name": "regexpp",
  19. "escapedName": "regexpp",
  20. "rawSpec": "3.2.0",
  21. "saveSpec": null,
  22. "fetchSpec": "3.2.0"
  23. },
  24. "_requiredBy": [
  25. "/eslint"
  26. ],
  27. "_resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz",
  28. "_spec": "3.2.0",
  29. "_where": "/home/pi/Desktop/smartMirrorTestEnvironment/MagicMirror",
  30. "author": {
  31. "name": "Toru Nagashima",
  32. "url": "https://github.com/mysticatea"
  33. },
  34. "bugs": {
  35. "url": "https://github.com/mysticatea/regexpp/issues"
  36. },
  37. "dependencies": {},
  38. "description": "Regular expression parser for ECMAScript.",
  39. "devDependencies": {
  40. "@mysticatea/eslint-plugin": "^11.0.0",
  41. "@types/eslint": "^4.16.2",
  42. "@types/jsdom": "^12.2.4",
  43. "@types/mocha": "^5.2.2",
  44. "@types/node": "^12.6.8",
  45. "codecov": "^3.5.0",
  46. "dts-bundle": "^0.7.3",
  47. "eslint": "^6.1.0",
  48. "jsdom": "^15.1.1",
  49. "mocha": "^6.2.0",
  50. "npm-run-all": "^4.1.5",
  51. "nyc": "^14.1.1",
  52. "rimraf": "^2.6.2",
  53. "rollup": "^1.17.0",
  54. "rollup-plugin-node-resolve": "^5.2.0",
  55. "rollup-plugin-sourcemaps": "^0.4.2",
  56. "ts-node": "^8.3.0",
  57. "typescript": "^3.5.3"
  58. },
  59. "engines": {
  60. "node": ">=8"
  61. },
  62. "exports": {
  63. ".": {
  64. "import": "./index.mjs",
  65. "default": "./index.js"
  66. },
  67. "./package.json": "./package.json"
  68. },
  69. "files": [
  70. "index.*"
  71. ],
  72. "funding": "https://github.com/sponsors/mysticatea",
  73. "homepage": "https://github.com/mysticatea/regexpp#readme",
  74. "keywords": [
  75. "regexp",
  76. "regular",
  77. "expression",
  78. "parser",
  79. "validator",
  80. "ast",
  81. "abstract",
  82. "syntax",
  83. "tree",
  84. "ecmascript",
  85. "es2015",
  86. "es2016",
  87. "es2017",
  88. "es2018",
  89. "es2019",
  90. "es2020",
  91. "annexB"
  92. ],
  93. "license": "MIT",
  94. "main": "index",
  95. "name": "regexpp",
  96. "repository": {
  97. "type": "git",
  98. "url": "git+https://github.com/mysticatea/regexpp.git"
  99. },
  100. "scripts": {
  101. "build": "run-s build:*",
  102. "build:dts": "dts-bundle --name regexpp --main .temp/index.d.ts --out ../index.d.ts",
  103. "build:rollup": "rollup -c",
  104. "build:tsc": "tsc --module es2015",
  105. "clean": "rimraf .temp index.*",
  106. "codecov": "nyc report -r lcovonly && codecov -t ${CODECOV_TOKEN} --disable=gcov",
  107. "lint": "eslint scripts src test --ext .ts",
  108. "postversion": "git push && git push --tags",
  109. "prebuild": "npm run -s clean",
  110. "pretest": "run-s build lint",
  111. "preversion": "npm test",
  112. "prewatch": "npm run -s clean",
  113. "test": "nyc _mocha \"test/*.ts\" --reporter dot --timeout 10000",
  114. "update:test": "ts-node scripts/update-fixtures.ts",
  115. "update:unicode": "run-s update:unicode:*",
  116. "update:unicode:ids": "ts-node scripts/update-unicode-ids.ts",
  117. "update:unicode:props": "ts-node scripts/update-unicode-properties.ts",
  118. "version": "npm run -s build",
  119. "watch": "_mocha \"test/*.ts\" --require ts-node/register --reporter dot --timeout 10000 --watch-extensions ts --watch --growl"
  120. },
  121. "version": "3.2.0"
  122. }