Skip to content

Commit

Permalink
Add a package.json for npm.
Browse files Browse the repository at this point in the history
  • Loading branch information
creationix committed Sep 1, 2010
1 parent 3926c86 commit 1bdc7eb
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/wheat.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ require.paths.unshift(__dirname + "/wheat");

require('proto');
var Url = require('url'),
Git = require('git'),
Git = require('git-fs'),
Renderers = require('renderers');

var routes = [];
Expand Down
2 changes: 1 addition & 1 deletion lib/wheat/data.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var Git = require('git'),
var Git = require('git-fs'),
Path = require('path'),
Step = require('step'),
sys = require('sys'),
Expand Down
2 changes: 1 addition & 1 deletion lib/wheat/renderers.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var Git = require('git'),
var Git = require('git-fs'),
Data = require('./data'),
Tools = require('./tools'),
Buffer = require('buffer').Buffer,
Expand Down
2 changes: 1 addition & 1 deletion lib/wheat/tools.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ var Sys = require('sys'),
Markdown = require('./markdown'),
MD5 = require('./md5'),
Buffer = require('buffer').Buffer,
Git = require('git');
Git = require('git-fs');

function pad(num) {
return num < 10 ? "0" + num : num;
Expand Down
21 changes: 21 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"name": "wheat",
"description": "Git powered javascript blog.",
"tags": ["git","node","howtonode","blog"],
"version": "0.1.1",
"author": "Tim Caswell <tim@creationix.com>",
"repository": {
"type": "git",
"url": "http://github.com/creationix/wheat.git"
},
"bugs": "http://github.com/creationix/wheat/issues",
"engines": ["node >= 0.2.0"],
"main": "lib/wheat.js",
"dependencies": {
"git-fs": ">=0.0.3",
"connect": ">=0.2.4",
"haml": ">=0.2.5",
"step": ">=0.0.3",
"proto": ">=0.1.0"
}
}

0 comments on commit 1bdc7eb

Please sign in to comment.