init 🏴‍☠️

This commit is contained in:
Alexander Popov 2021-07-04 12:26:38 +03:00
parent abc7793c13
commit a9f46c3631
Signed by: iiiypuk
GPG Key ID: 398FC73478D97286
8 changed files with 62 additions and 1 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
node_modules/
package-lock.json

10
HISTORY.md Normal file
View File

@ -0,0 +1,10 @@
## Legend
- 🐛 - Bug
- ✔️ - Fixed
- ❌ - Removed
- - Added
- - Information
- ♻️ - Edited
## 0.1.0 - [17/04/2021] - (not work)
-

View File

@ -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

1
TODO.md Normal file
View File

@ -0,0 +1 @@
- make docs/

0
docs/.nojekyll Normal file
View File

3
docs/README.md Normal file
View File

@ -0,0 +1,3 @@
# Headline
> An awesome project.

22
docs/index.html Normal file
View File

@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Description">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css">
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
name: '',
repo: ''
}
</script>
<!-- Docsify v4 -->
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
</body>
</html>

23
package.json Normal file
View File

@ -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"
}
}