windhamdavid 8 years ago
parent
commit
718bbe97c6
4 changed files with 28 additions and 3 deletions
  1. 6 0
      .gitignore
  2. 0 0
      .tm_properties
  3. 0 0
      gulpfile.js
  4. 22 3
      package.json

+ 6 - 0
.gitignore

@@ -0,0 +1,6 @@
+.DS_Store
+logs
+*.log
+npm-debug.log*
+node_modules
+coverage

+ 0 - 0
.tm_properties


+ 0 - 0
gulpfile.js


+ 22 - 3
package.json

@@ -1,9 +1,28 @@
 {
   "name": "juryd.com",
+  "version": "0.0.1",
+  "description": "",
+  "homepage": "http://juryd.com",
+  "author": "David A. Windham",
   "private": true,
+  "scripts": {
+	"gulp": "gulp",
+	"build": "node build.js",
+	"serve": "node build.js serve"
+  },
+  "repository": {
+	"type": "git",
+	"url": "git+https://github.com/windhamdavid/juryd.git"
+  },
+  "engines": {
+	"node": ">=4.0.0"
+  },
   "dependencies": {
-    "metalsmith-templates": "^0.7.0",
-    "metalsmith-permalinks": "^0.1.1",
-    "metalsmith": "^2.1.0",
+	"gulp": "^3.9.0",
+	"metalsmith-serve": "^0.0.4",
+	"metalsmith-watch": "^1.0.1",
+	"metalsmith-templates": "^0.7.0",
+	"metalsmith-permalinks": "^0.1.1",
+	"metalsmith": "^2.1.0"
   }
 }