summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md1
-rw-r--r--package-lock.json35
-rw-r--r--package.json5
3 files changed, 39 insertions, 2 deletions
diff --git a/README.md b/README.md
index 69937d4..fde33fc 100644
--- a/README.md
+++ b/README.md
@@ -213,7 +213,6 @@ if (presentation.css) {
## presentation-factory.js
```javascript
-
const presentation_factory = (setup) => {
return {
// init..
diff --git a/package-lock.json b/package-lock.json
new file mode 100644
index 0000000..774ec1b
--- /dev/null
+++ b/package-lock.json
@@ -0,0 +1,35 @@
+{
+ "name": "slidetray",
+ "version": "1.0.0",
+ "lockfileVersion": 3,
+ "requires": true,
+ "packages": {
+ "": {
+ "name": "slidetray",
+ "version": "1.0.0",
+ "license": "MIT",
+ "dependencies": {
+ "swiper": "^11.1.15"
+ }
+ },
+ "node_modules/swiper": {
+ "version": "11.1.15",
+ "resolved": "https://registry.npmjs.org/swiper/-/swiper-11.1.15.tgz",
+ "integrity": "sha512-IzWeU34WwC7gbhjKsjkImTuCRf+lRbO6cnxMGs88iVNKDwV+xQpBCJxZ4bNH6gSrIbbyVJ1kuGzo3JTtz//CBw==",
+ "funding": [
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/swiperjs"
+ },
+ {
+ "type": "open_collective",
+ "url": "http://opencollective.com/swiper"
+ }
+ ],
+ "license": "MIT",
+ "engines": {
+ "node": ">= 4.7.0"
+ }
+ }
+ }
+}
diff --git a/package.json b/package.json
index 5d05547..491d60f 100644
--- a/package.json
+++ b/package.json
@@ -11,5 +11,8 @@
"presentation"
],
"author": "Geo Halkiadakis",
- "license": "MIT"
+ "license": "MIT",
+ "dependencies": {
+ "swiper": "^11.1.15"
+ }
}