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 4.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. {
  2. "_from": "type-detect@^4.0.5",
  3. "_id": "type-detect@4.0.8",
  4. "_inBundle": false,
  5. "_integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==",
  6. "_location": "/type-detect",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "type-detect@^4.0.5",
  12. "name": "type-detect",
  13. "escapedName": "type-detect",
  14. "rawSpec": "^4.0.5",
  15. "saveSpec": null,
  16. "fetchSpec": "^4.0.5"
  17. },
  18. "_requiredBy": [
  19. "/chai",
  20. "/deep-eql"
  21. ],
  22. "_resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz",
  23. "_shasum": "7646fb5f18871cfbb7749e69bd39a6388eb7450c",
  24. "_spec": "type-detect@^4.0.5",
  25. "_where": "C:\\Repos\\mdt5_webApplicationen\\StartMochaTutorial\\node_modules\\chai",
  26. "author": {
  27. "name": "Jake Luer",
  28. "email": "jake@alogicalparadox.com",
  29. "url": "http://alogicalparadox.com"
  30. },
  31. "bugs": {
  32. "url": "https://github.com/chaijs/type-detect/issues"
  33. },
  34. "bundleDependencies": false,
  35. "contributors": [
  36. {
  37. "name": "Keith Cirkel",
  38. "url": "https://github.com/keithamus"
  39. },
  40. {
  41. "name": "David Losert",
  42. "url": "https://github.com/davelosert"
  43. },
  44. {
  45. "name": "Aleksey Shvayka",
  46. "url": "https://github.com/shvaikalesh"
  47. },
  48. {
  49. "name": "Lucas Fernandes da Costa",
  50. "url": "https://github.com/lucasfcosta"
  51. },
  52. {
  53. "name": "Grant Snodgrass",
  54. "url": "https://github.com/meeber"
  55. },
  56. {
  57. "name": "Jeremy Tice",
  58. "url": "https://github.com/jetpacmonkey"
  59. },
  60. {
  61. "name": "Edward Betts",
  62. "url": "https://github.com/EdwardBetts"
  63. },
  64. {
  65. "name": "dvlsg",
  66. "url": "https://github.com/dvlsg"
  67. },
  68. {
  69. "name": "Amila Welihinda",
  70. "url": "https://github.com/amilajack"
  71. },
  72. {
  73. "name": "Jake Champion",
  74. "url": "https://github.com/JakeChampion"
  75. },
  76. {
  77. "name": "Miroslav Bajtoš",
  78. "url": "https://github.com/bajtos"
  79. }
  80. ],
  81. "deprecated": false,
  82. "description": "Improved typeof detection for node.js and the browser.",
  83. "devDependencies": {
  84. "@commitlint/cli": "^4.2.2",
  85. "benchmark": "^2.1.0",
  86. "buble": "^0.16.0",
  87. "codecov": "^3.0.0",
  88. "commitlint-config-angular": "^4.2.1",
  89. "cross-env": "^5.1.1",
  90. "eslint": "^4.10.0",
  91. "eslint-config-strict": "^14.0.0",
  92. "eslint-plugin-filenames": "^1.2.0",
  93. "husky": "^0.14.3",
  94. "karma": "^1.7.1",
  95. "karma-chrome-launcher": "^2.2.0",
  96. "karma-coverage": "^1.1.1",
  97. "karma-detect-browsers": "^2.2.5",
  98. "karma-edge-launcher": "^0.4.2",
  99. "karma-firefox-launcher": "^1.0.1",
  100. "karma-ie-launcher": "^1.0.0",
  101. "karma-mocha": "^1.3.0",
  102. "karma-opera-launcher": "^1.0.0",
  103. "karma-safari-launcher": "^1.0.0",
  104. "karma-safaritechpreview-launcher": "0.0.6",
  105. "karma-sauce-launcher": "^1.2.0",
  106. "mocha": "^4.0.1",
  107. "nyc": "^11.3.0",
  108. "rollup": "^0.50.0",
  109. "rollup-plugin-buble": "^0.16.0",
  110. "rollup-plugin-commonjs": "^8.2.6",
  111. "rollup-plugin-istanbul": "^1.1.0",
  112. "rollup-plugin-node-resolve": "^3.0.0",
  113. "semantic-release": "^8.2.0",
  114. "simple-assert": "^1.0.0"
  115. },
  116. "engines": {
  117. "node": ">=4"
  118. },
  119. "eslintConfig": {
  120. "env": {
  121. "es6": true
  122. },
  123. "extends": [
  124. "strict/es6"
  125. ],
  126. "globals": {
  127. "HTMLElement": false
  128. },
  129. "rules": {
  130. "complexity": 0,
  131. "max-statements": 0,
  132. "prefer-rest-params": 0
  133. }
  134. },
  135. "files": [
  136. "index.js",
  137. "type-detect.js"
  138. ],
  139. "homepage": "https://github.com/chaijs/type-detect#readme",
  140. "keywords": [
  141. "type",
  142. "typeof",
  143. "types"
  144. ],
  145. "license": "MIT",
  146. "main": "./type-detect.js",
  147. "name": "type-detect",
  148. "repository": {
  149. "type": "git",
  150. "url": "git+ssh://git@github.com/chaijs/type-detect.git"
  151. },
  152. "scripts": {
  153. "bench": "node bench",
  154. "build": "rollup -c rollup.conf.js",
  155. "commit-msg": "commitlint -x angular",
  156. "lint": "eslint --ignore-path .gitignore .",
  157. "posttest:browser": "npm run upload-coverage",
  158. "posttest:node": "nyc report --report-dir \"coverage/node-$(node --version)\" --reporter=lcovonly && npm run upload-coverage",
  159. "prepare": "cross-env NODE_ENV=production npm run build",
  160. "pretest:browser": "cross-env NODE_ENV=test npm run build",
  161. "pretest:node": "cross-env NODE_ENV=test npm run build",
  162. "semantic-release": "semantic-release pre && npm publish && semantic-release post",
  163. "test": "npm run test:node && npm run test:browser",
  164. "test:browser": "karma start --singleRun=true",
  165. "test:node": "nyc mocha type-detect.test.js",
  166. "upload-coverage": "codecov"
  167. },
  168. "version": "4.0.8"
  169. }