summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md8
-rw-r--r--package.json15
2 files changed, 20 insertions, 3 deletions
diff --git a/README.md b/README.md
index 0a49e0a..69937d4 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
# slidetray
-* an ease web slide presentation
+* an ease web slide presentation builder
* descripbed in json format
@@ -44,7 +44,8 @@ let presentation = {
}
```
-## setup several settings
+
+## setup several settings (code template)
```javascript
if (!presentation.Property) presentation.Property = default_value;
@@ -55,6 +56,7 @@ if (presentation.css) {
}
```
+
## HTML (a blueprint)
```html
@@ -170,7 +172,7 @@ if (presentation.css) {
## HTML minimal template
-```
+```html
<!DOCTYPE html>
<html lang="en">
<head>
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..5d05547
--- /dev/null
+++ b/package.json
@@ -0,0 +1,15 @@
+{
+ "name": "slidetray",
+ "version": "1.0.0",
+ "description": "Easy Web Slide Presentation Builder",
+ "main": "index.js",
+ "scripts": {
+ "test": "echo \"Error: no test specified\" && exit 1"
+ },
+ "keywords": [
+ "web",
+ "presentation"
+ ],
+ "author": "Geo Halkiadakis",
+ "license": "MIT"
+}