├── .gitignore ├── LICENSE ├── README.md ├── content-type-cache ├── H5P.DialogCards.h5p └── H5P.Flashcards.h5p ├── package.json ├── src ├── content-creator.ts ├── dialogcards-creator.ts ├── dialogcards-module.ts ├── flashcards-creator.ts ├── flashcards-module.ts ├── h5p-package.ts ├── helpers.ts ├── index.ts ├── language-strings.ts └── models │ ├── h5p-audio.ts │ ├── h5p-content.ts │ ├── h5p-copyright-information.ts │ ├── h5p-dialog-cards-content.ts │ ├── h5p-flashcard.ts │ ├── h5p-flashcards-content.ts │ └── h5p-image.ts ├── tests ├── dialog1.csv ├── flash1.csv ├── image1.jpg └── sound.wav ├── tsconfig.json └── tslint.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr258/h5p-cli-creator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr258/h5p-cli-creator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr258/h5p-cli-creator/HEAD/README.md -------------------------------------------------------------------------------- /content-type-cache/H5P.DialogCards.h5p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr258/h5p-cli-creator/HEAD/content-type-cache/H5P.DialogCards.h5p -------------------------------------------------------------------------------- /content-type-cache/H5P.Flashcards.h5p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr258/h5p-cli-creator/HEAD/content-type-cache/H5P.Flashcards.h5p -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr258/h5p-cli-creator/HEAD/package.json -------------------------------------------------------------------------------- /src/content-creator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr258/h5p-cli-creator/HEAD/src/content-creator.ts -------------------------------------------------------------------------------- /src/dialogcards-creator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr258/h5p-cli-creator/HEAD/src/dialogcards-creator.ts -------------------------------------------------------------------------------- /src/dialogcards-module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr258/h5p-cli-creator/HEAD/src/dialogcards-module.ts -------------------------------------------------------------------------------- /src/flashcards-creator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr258/h5p-cli-creator/HEAD/src/flashcards-creator.ts -------------------------------------------------------------------------------- /src/flashcards-module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr258/h5p-cli-creator/HEAD/src/flashcards-module.ts -------------------------------------------------------------------------------- /src/h5p-package.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr258/h5p-cli-creator/HEAD/src/h5p-package.ts -------------------------------------------------------------------------------- /src/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr258/h5p-cli-creator/HEAD/src/helpers.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr258/h5p-cli-creator/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/language-strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr258/h5p-cli-creator/HEAD/src/language-strings.ts -------------------------------------------------------------------------------- /src/models/h5p-audio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr258/h5p-cli-creator/HEAD/src/models/h5p-audio.ts -------------------------------------------------------------------------------- /src/models/h5p-content.ts: -------------------------------------------------------------------------------- 1 | export class H5pContent { } 2 | -------------------------------------------------------------------------------- /src/models/h5p-copyright-information.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr258/h5p-cli-creator/HEAD/src/models/h5p-copyright-information.ts -------------------------------------------------------------------------------- /src/models/h5p-dialog-cards-content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr258/h5p-cli-creator/HEAD/src/models/h5p-dialog-cards-content.ts -------------------------------------------------------------------------------- /src/models/h5p-flashcard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr258/h5p-cli-creator/HEAD/src/models/h5p-flashcard.ts -------------------------------------------------------------------------------- /src/models/h5p-flashcards-content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr258/h5p-cli-creator/HEAD/src/models/h5p-flashcards-content.ts -------------------------------------------------------------------------------- /src/models/h5p-image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr258/h5p-cli-creator/HEAD/src/models/h5p-image.ts -------------------------------------------------------------------------------- /tests/dialog1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr258/h5p-cli-creator/HEAD/tests/dialog1.csv -------------------------------------------------------------------------------- /tests/flash1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr258/h5p-cli-creator/HEAD/tests/flash1.csv -------------------------------------------------------------------------------- /tests/image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr258/h5p-cli-creator/HEAD/tests/image1.jpg -------------------------------------------------------------------------------- /tests/sound.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr258/h5p-cli-creator/HEAD/tests/sound.wav -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr258/h5p-cli-creator/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr258/h5p-cli-creator/HEAD/tslint.json --------------------------------------------------------------------------------