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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. {
  2. "_from": "check-error@^1.0.2",
  3. "_id": "check-error@1.0.2",
  4. "_inBundle": false,
  5. "_integrity": "sha1-V00xLt2Iu13YkS6Sht1sCu1KrII=",
  6. "_location": "/check-error",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "check-error@^1.0.2",
  12. "name": "check-error",
  13. "escapedName": "check-error",
  14. "rawSpec": "^1.0.2",
  15. "saveSpec": null,
  16. "fetchSpec": "^1.0.2"
  17. },
  18. "_requiredBy": [
  19. "/chai"
  20. ],
  21. "_resolved": "https://registry.npmjs.org/check-error/-/check-error-1.0.2.tgz",
  22. "_shasum": "574d312edd88bb5dd8912e9286dd6c0aed4aac82",
  23. "_spec": "check-error@^1.0.2",
  24. "_where": "C:\\Repos\\mdt5_webApplicationen\\StartMochaTutorial\\node_modules\\chai",
  25. "author": {
  26. "name": "Jake Luer",
  27. "email": "jake@alogicalparadox.com",
  28. "url": "http://alogicalparadox.com"
  29. },
  30. "bugs": {
  31. "url": "https://github.com/chaijs/check-error/issues"
  32. },
  33. "bundleDependencies": false,
  34. "config": {
  35. "ghooks": {
  36. "commit-msg": "validate-commit-msg"
  37. }
  38. },
  39. "contributors": [
  40. {
  41. "name": "David Losert",
  42. "url": "https://github.com/davelosert"
  43. },
  44. {
  45. "name": "Keith Cirkel",
  46. "url": "https://github.com/keithamus"
  47. },
  48. {
  49. "name": "Miroslav Bajtoš",
  50. "url": "https://github.com/bajtos"
  51. },
  52. {
  53. "name": "Lucas Fernandes da Costa",
  54. "url": "https://github.com/lucasfcosta"
  55. }
  56. ],
  57. "dependencies": {},
  58. "deprecated": false,
  59. "description": "Error comparison and information related utility for node and the browser",
  60. "devDependencies": {
  61. "browserify": "^13.0.0",
  62. "browserify-istanbul": "^1.0.0",
  63. "coveralls": "2.11.9",
  64. "eslint": "^2.4.0",
  65. "eslint-config-strict": "^8.5.0",
  66. "eslint-plugin-filenames": "^0.2.0",
  67. "ghooks": "^1.0.1",
  68. "istanbul": "^0.4.2",
  69. "karma": "^0.13.22",
  70. "karma-browserify": "^5.0.2",
  71. "karma-coverage": "^0.5.5",
  72. "karma-mocha": "^0.2.2",
  73. "karma-phantomjs-launcher": "^1.0.0",
  74. "karma-sauce-launcher": "^0.3.1",
  75. "lcov-result-merger": "^1.0.2",
  76. "mocha": "^2.4.5",
  77. "phantomjs-prebuilt": "^2.1.5",
  78. "semantic-release": "^4.3.5",
  79. "simple-assert": "^1.0.0",
  80. "travis-after-all": "^1.4.4",
  81. "validate-commit-msg": "^2.3.1"
  82. },
  83. "engines": {
  84. "node": "*"
  85. },
  86. "eslintConfig": {
  87. "extends": [
  88. "strict/es5"
  89. ],
  90. "env": {
  91. "es6": true
  92. },
  93. "globals": {
  94. "HTMLElement": false
  95. },
  96. "rules": {
  97. "complexity": 0,
  98. "max-statements": 0
  99. }
  100. },
  101. "files": [
  102. "index.js",
  103. "check-error.js"
  104. ],
  105. "homepage": "https://github.com/chaijs/check-error#readme",
  106. "keywords": [
  107. "check-error",
  108. "error",
  109. "chai util"
  110. ],
  111. "license": "MIT",
  112. "main": "./index.js",
  113. "name": "check-error",
  114. "repository": {
  115. "type": "git",
  116. "url": "git+ssh://git@github.com/chaijs/check-error.git"
  117. },
  118. "scripts": {
  119. "build": "browserify --bare $npm_package_main --standalone checkError -o check-error.js",
  120. "lint": "eslint --ignore-path .gitignore .",
  121. "prepublish": "npm run build",
  122. "pretest": "npm run lint",
  123. "semantic-release": "semantic-release pre && npm publish && semantic-release post",
  124. "test": "npm run test:node && npm run test:browser && npm run upload-coverage",
  125. "test:browser": "karma start --singleRun=true",
  126. "test:node": "istanbul cover _mocha",
  127. "upload-coverage": "lcov-result-merger 'coverage/**/lcov.info' | coveralls; exit 0"
  128. },
  129. "version": "1.0.2"
  130. }