From 5594e37debafda280ef52c2270be17aeab9f8d4a Mon Sep 17 00:00:00 2001 From: Michael Timbrook Date: Wed, 10 Sep 2014 09:12:06 -0400 Subject: [PATCH] Added package.json for npm --- .gitignore | 3 +++ package.json | 24 ++++++++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 .gitignore create mode 100644 package.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..541931a --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +node_modules/ +.DS_Store + diff --git a/package.json b/package.json new file mode 100644 index 0000000..846e5f7 --- /dev/null +++ b/package.json @@ -0,0 +1,24 @@ +{ + "name": "jshintr", + "version": "0.0.0", + "description": "JSHintr is a web tool that allows you to set your own code standards, easily review a file against these standards, and share the output with other developers. It leverages the power of JSHint:", + "main": "app.js", + "dependencies": { + "express": "^4.9.0", + "jade": "^1.6.0" + }, + "devDependencies": {}, + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "https://github.com/rixth/jshintr.git" + }, + "author": "rixth", + "license": "MIT", + "bugs": { + "url": "https://github.com/rixth/jshintr/issues" + }, + "homepage": "https://github.com/rixth/jshintr" +}