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 332B

1234567891011121314151617
  1. {
  2. "name": "testmocha",
  3. "version": "1.0.0",
  4. "description": "",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "mocha",
  8. "test:browser": "live-server --port=9000 --mount=/:public"
  9. },
  10. "author": "",
  11. "license": "ISC",
  12. "devDependencies": {
  13. "chai": "^4.2.0",
  14. "live-server": "^1.2.1",
  15. "mocha": "^7.2.0"
  16. }
  17. }