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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "_from": "ms@2.1.1",
  3. "_id": "ms@2.1.1",
  4. "_inBundle": false,
  5. "_integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==",
  6. "_location": "/ms",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "version",
  10. "registry": true,
  11. "raw": "ms@2.1.1",
  12. "name": "ms",
  13. "escapedName": "ms",
  14. "rawSpec": "2.1.1",
  15. "saveSpec": null,
  16. "fetchSpec": "2.1.1"
  17. },
  18. "_requiredBy": [
  19. "/debug",
  20. "/mocha"
  21. ],
  22. "_resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz",
  23. "_shasum": "30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a",
  24. "_spec": "ms@2.1.1",
  25. "_where": "C:\\Repos\\mdt5_webApplicationen\\StartMochaTutorial\\node_modules\\mocha",
  26. "bugs": {
  27. "url": "https://github.com/zeit/ms/issues"
  28. },
  29. "bundleDependencies": false,
  30. "deprecated": false,
  31. "description": "Tiny millisecond conversion utility",
  32. "devDependencies": {
  33. "eslint": "4.12.1",
  34. "expect.js": "0.3.1",
  35. "husky": "0.14.3",
  36. "lint-staged": "5.0.0",
  37. "mocha": "4.0.1"
  38. },
  39. "eslintConfig": {
  40. "extends": "eslint:recommended",
  41. "env": {
  42. "node": true,
  43. "es6": true
  44. }
  45. },
  46. "files": [
  47. "index.js"
  48. ],
  49. "homepage": "https://github.com/zeit/ms#readme",
  50. "license": "MIT",
  51. "lint-staged": {
  52. "*.js": [
  53. "npm run lint",
  54. "prettier --single-quote --write",
  55. "git add"
  56. ]
  57. },
  58. "main": "./index",
  59. "name": "ms",
  60. "repository": {
  61. "type": "git",
  62. "url": "git+https://github.com/zeit/ms.git"
  63. },
  64. "scripts": {
  65. "lint": "eslint lib/* bin/*",
  66. "precommit": "lint-staged",
  67. "test": "mocha tests.js"
  68. },
  69. "version": "2.1.1"
  70. }