summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuval Adam <yuval@y3xz.com>2016-06-21 20:30:19 +0300
committerYuval Adam <yuval@y3xz.com>2016-06-21 20:30:19 +0300
commit346bb353891c7ef1149ab0f9a6721262ab56931d (patch)
treec1d7cf044a9aa6814d5eb459d01d6a0c6240482d
parentb3f2ef22942dd18c84df3b34044450a5effbd14e (diff)
Add basic package.json and .gitignore
-rw-r--r--.gitignore1
-rw-r--r--package.json24
2 files changed, 25 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..40b878d
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+node_modules/ \ No newline at end of file
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..37891c2
--- /dev/null
+++ b/package.json
@@ -0,0 +1,24 @@
+{
+ "name": "qrgen",
+ "version": "1.0.0",
+ "description": "qrgen.xyz",
+ "main": "index.js",
+ "dependencies": {},
+ "devDependencies": {},
+ "scripts": {
+ "test": "echo \"Error: no test specified\" && exit 1"
+ },
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/yuvadm/qrgen.xyz.git"
+ },
+ "keywords": [
+ "qrgen"
+ ],
+ "author": "Yuval Adam",
+ "license": "ISC",
+ "bugs": {
+ "url": "https://github.com/yuvadm/qrgen.xyz/issues"
+ },
+ "homepage": "https://github.com/yuvadm/qrgen.xyz#readme"
+}