diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..504afef --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +node_modules/ +package-lock.json diff --git a/HISTORY.md b/HISTORY.md new file mode 100644 index 0000000..64487ca --- /dev/null +++ b/HISTORY.md @@ -0,0 +1,10 @@ +## Legend +- 🐛 - Bug +- ✔ī¸ - Fixed +- ❌ - Removed +- ➕ - Added +- ℹī¸ - Information +- â™ģī¸ - Edited + +## 0.1.0 - [17/04/2021] - (not work) +- diff --git a/LICENSE b/LICENSE index 80ce293..ca1c103 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2021 Turn 0 Around +Copyright (c) 2021 Alexander Popov Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/TODO.md b/TODO.md new file mode 100644 index 0000000..a8ed9ee --- /dev/null +++ b/TODO.md @@ -0,0 +1 @@ +- make docs/ diff --git a/docs/.nojekyll b/docs/.nojekyll new file mode 100644 index 0000000..e69de29 diff --git a/docs/README.md b/docs/README.md new file mode 100644 index 0000000..da2056b --- /dev/null +++ b/docs/README.md @@ -0,0 +1,3 @@ +# Headline + +> An awesome project. diff --git a/docs/index.html b/docs/index.html new file mode 100644 index 0000000..04dd4a7 --- /dev/null +++ b/docs/index.html @@ -0,0 +1,22 @@ + + + + + Document + + + + + + +
+ + + + + diff --git a/package.json b/package.json new file mode 100644 index 0000000..815b6ff --- /dev/null +++ b/package.json @@ -0,0 +1,23 @@ +{ + "name": "quizEngine", + "version": "0.0.1", + "description": "", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/emilecok/quizEngine.git" + }, + "keywords": [], + "author": "", + "license": "MIT", + "bugs": { + "url": "https://github.com/emilecok/quizEngine/issues" + }, + "homepage": "https://github.com/emilecok/quizEngine#readme", + "devDependencies": { + "docsify-cli": "^4.4.3" + } +}