diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2ccbe46 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/node_modules/ diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..b45ccd0 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,30 @@ +{ + "name": "gallery", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "gallery", + "version": "1.0.0", + "license": "ISC", + "dependencies": { + "jquery": "^3.7.1", + "nanogallery2": "^3.0.5" + } + }, + "node_modules/jquery": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.7.1.tgz", + "integrity": "sha512-m4avr8yL8kmFN8psrbFFFmB/If14iN5o9nw/NgnnM+kybDJpRsAynV2BsfpTYrTRysYUdADVD7CkUUizgkpLfg==" + }, + "node_modules/nanogallery2": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/nanogallery2/-/nanogallery2-3.0.5.tgz", + "integrity": "sha512-Oa5EecMzUQGuRuh6LTc+xKBy5K+1WHXKA0o5PbqGm25rkuswtnE/QtN4RmTLBGSk5eYOTzWdkmm6RDH8+90vEg==", + "dependencies": { + "jquery": ">=1.12.4" + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..9ce476f --- /dev/null +++ b/package.json @@ -0,0 +1,19 @@ +{ + "name": "gallery", + "version": "1.0.0", + "description": "## Features", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "https://git.christian-wolf.click/tsc-vfl/gallery" + }, + "author": "Christian Wolf", + "license": "ISC", + "dependencies": { + "jquery": "^3.7.1", + "nanogallery2": "^3.0.5" + } +}