Dieses Repository beinhaltet HTML- und Javascript Code zur einer NotizenWebApp auf Basis von Web Storage. Zudem sind Mocha/Chai Tests im Browser enthalten. https://meinenotizen.netlify.app/
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.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. {
  2. "_from": "chokidar@3.3.0",
  3. "_id": "chokidar@3.3.0",
  4. "_inBundle": false,
  5. "_integrity": "sha512-dGmKLDdT3Gdl7fBUe8XK+gAtGmzy5Fn0XkkWQuYxGIgWVPPse2CxFA5mtrlD0TOHaHjEUqkWNyP1XdHoJES/4A==",
  6. "_location": "/chokidar",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "version",
  10. "registry": true,
  11. "raw": "chokidar@3.3.0",
  12. "name": "chokidar",
  13. "escapedName": "chokidar",
  14. "rawSpec": "3.3.0",
  15. "saveSpec": null,
  16. "fetchSpec": "3.3.0"
  17. },
  18. "_requiredBy": [
  19. "/mocha"
  20. ],
  21. "_resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.3.0.tgz",
  22. "_shasum": "12c0714668c55800f659e262d4962a97faf554a6",
  23. "_spec": "chokidar@3.3.0",
  24. "_where": "C:\\Repos\\mdt5_webApplicationen\\StartMochaTutorial\\node_modules\\mocha",
  25. "author": {
  26. "name": "Paul Miller",
  27. "url": "https://paulmillr.com"
  28. },
  29. "bugs": {
  30. "url": "https://github.com/paulmillr/chokidar/issues"
  31. },
  32. "bundleDependencies": false,
  33. "contributors": [
  34. {
  35. "name": "Paul Miller",
  36. "url": "https://paulmillr.com"
  37. },
  38. {
  39. "name": "Elan Shanker"
  40. }
  41. ],
  42. "dependencies": {
  43. "anymatch": "~3.1.1",
  44. "braces": "~3.0.2",
  45. "fsevents": "~2.1.1",
  46. "glob-parent": "~5.1.0",
  47. "is-binary-path": "~2.1.0",
  48. "is-glob": "~4.0.1",
  49. "normalize-path": "~3.0.0",
  50. "readdirp": "~3.2.0"
  51. },
  52. "deprecated": false,
  53. "description": "A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.",
  54. "devDependencies": {
  55. "@types/node": "^12",
  56. "chai": "^4.2",
  57. "dtslint": "1.0.2",
  58. "eslint": "^6.6.0",
  59. "mocha": "^6.2.2",
  60. "nyc": "^14.1.1",
  61. "rimraf": "^3.0.0",
  62. "sinon": "^7.5.0",
  63. "sinon-chai": "^3.3.0",
  64. "upath": "^1.2.0"
  65. },
  66. "engines": {
  67. "node": ">= 8.10.0"
  68. },
  69. "eslintConfig": {
  70. "extends": "eslint:recommended",
  71. "parserOptions": {
  72. "ecmaVersion": 9,
  73. "sourceType": "script"
  74. },
  75. "env": {
  76. "node": true,
  77. "es6": true
  78. },
  79. "rules": {
  80. "array-callback-return": "error",
  81. "no-empty": [
  82. "error",
  83. {
  84. "allowEmptyCatch": true
  85. }
  86. ],
  87. "no-lonely-if": "error",
  88. "no-var": "error",
  89. "object-shorthand": "error",
  90. "prefer-arrow-callback": [
  91. "error",
  92. {
  93. "allowNamedFunctions": true
  94. }
  95. ],
  96. "prefer-const": [
  97. "error",
  98. {
  99. "ignoreReadBeforeAssign": true
  100. }
  101. ],
  102. "prefer-destructuring": [
  103. "error",
  104. {
  105. "object": true,
  106. "array": false
  107. }
  108. ],
  109. "prefer-spread": "error",
  110. "prefer-template": "error",
  111. "radix": "error",
  112. "strict": "error",
  113. "quotes": [
  114. "error",
  115. "single"
  116. ]
  117. }
  118. },
  119. "files": [
  120. "index.js",
  121. "lib/*.js",
  122. "types/index.d.ts"
  123. ],
  124. "homepage": "https://github.com/paulmillr/chokidar",
  125. "keywords": [
  126. "fs",
  127. "watch",
  128. "watchFile",
  129. "watcher",
  130. "watching",
  131. "file",
  132. "fsevents"
  133. ],
  134. "license": "MIT",
  135. "main": "index.js",
  136. "name": "chokidar",
  137. "nyc": {
  138. "include": [
  139. "index.js",
  140. "lib/*.js"
  141. ],
  142. "reporter": [
  143. "html",
  144. "text"
  145. ]
  146. },
  147. "optionalDependencies": {
  148. "fsevents": "~2.1.1"
  149. },
  150. "repository": {
  151. "type": "git",
  152. "url": "git+https://github.com/paulmillr/chokidar.git"
  153. },
  154. "scripts": {
  155. "dtslint": "dtslint types",
  156. "lint": "eslint --report-unused-disable-directives --ignore-path .gitignore .",
  157. "mocha": "mocha --exit --timeout 60000",
  158. "test": "npm run lint && npm run mocha"
  159. },
  160. "types": "./types/index.d.ts",
  161. "version": "3.3.0"
  162. }