From 617d8e7e13047b71caa9b7333eaf8edfb97dacd7 Mon Sep 17 00:00:00 2001 From: alpha Date: Thu, 10 Jan 2019 13:49:35 +0100 Subject: [PATCH] lul --- .gitignore | 2 ++ index.js | 2 +- package-lock.json | 10 +++++++++- package.json | 4 +++- {css => page/css}/clock.css | 0 {css => page/css}/style.css | 0 6 files changed, 15 insertions(+), 3 deletions(-) create mode 100644 .gitignore rename {css => page/css}/clock.css (100%) rename {css => page/css}/style.css (100%) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6adcd01 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +node_modules/* +npm-debug.log diff --git a/index.js b/index.js index ab9dc83..3984930 100644 --- a/index.js +++ b/index.js @@ -1 +1 @@ -//to be +empty \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 06ff36e..25f9a25 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,5 +1,13 @@ { "name": "time-service", "version": "1.0.1", - "lockfileVersion": 1 + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "fs": { + "version": "0.0.1-security", + "resolved": "https://registry.npmjs.org/fs/-/fs-0.0.1-security.tgz", + "integrity": "sha1-invTcYa23d84E/I4WLV+yq9eQdQ=" + } + } } diff --git a/package.json b/package.json index 63c1163..d48bf43 100644 --- a/package.json +++ b/package.json @@ -12,5 +12,7 @@ }, "author": "Alpha, SimGie", "license": "ISC", - "dependencies": {} + "dependencies": { + "fs": "0.0.1-security" + } } diff --git a/css/clock.css b/page/css/clock.css similarity index 100% rename from css/clock.css rename to page/css/clock.css diff --git a/css/style.css b/page/css/style.css similarity index 100% rename from css/style.css rename to page/css/style.css