Skip to content

Commit

Permalink
Merge pull request libgit2#15 from trentm/master
Browse files Browse the repository at this point in the history
fix package.json URL for new repo
  • Loading branch information
Sam committed Jul 20, 2011
2 parents a391562 + f2eaf8c commit de208e2
Showing 1 changed file with 25 additions and 23 deletions.
48 changes: 25 additions & 23 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,25 @@
{
"name": "gitteh",
"version": "0.1.0",
"description": "Bindings to libgit2.",
"keywords": "git, libgit2, bindings",
"author": "Sam Day <sam.c.day@gmail.com>",
"engines": { "node": ">= 0.4.0" },
"dependencies": {
"vows": ">= 0.5.6",
"glob": ">= 2.0.6",
"async": ">= 0.1.8"
},
"repository" : {
"type" : "git",
"url" : "https://github.com/samcday/node-gitteh.git"
},
"scripts": {
"preinstall": "node-waf configure --use-bundled-libgit2",
"install": "node-waf build",
"test": "vows test/*.test.js --spec"
},
"main": "./lib/gitteh"
}
{
"name": "gitteh",
"version": "0.1.0",
"description": "Bindings to libgit2.",
"keywords": "git, libgit2, bindings",
"author": "Sam Day <sam.c.day@gmail.com>",
"engines": {
"node": ">= 0.4.0"
},
"dependencies": {
"vows": ">= 0.5.6",
"glob": ">= 2.0.6",
"async": ">= 0.1.8"
},
"repository": {
"type": "git",
"url": "https://github.com/libgit2/node-gitteh.git"
},
"scripts": {
"preinstall": "node-waf configure --use-bundled-libgit2",
"install": "node-waf build",
"test": "vows test/*.test.js --spec"
},
"main": "./lib/gitteh"
}

0 comments on commit de208e2

Please sign in to comment.