Skip to content

Commit

Permalink
Update package metadata.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredhanson committed May 12, 2012
1 parent c7767a7 commit f0d0985
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 7 deletions.
5 changes: 5 additions & 0 deletions .gitignore
@@ -1 +1,6 @@
# Mac OS X
.DS_Store

# Node.js
node_modules node_modules
npm-debug.log
2 changes: 1 addition & 1 deletion Makefile
@@ -1,5 +1,5 @@
NODE = node NODE = node
TEST = vows TEST = ./node_modules/.bin/vows
TESTS ?= test/*-test.js test/**/*-test.js TESTS ?= test/*-test.js test/**/*-test.js


test: test:
Expand Down
27 changes: 21 additions & 6 deletions package.json
@@ -1,16 +1,31 @@
{ {
"name": "junction-disco", "name": "junction-disco",
"version": "0.1.0", "version": "0.2.0",
"description": "Service Discovery development framework for Junction.", "description": "Service Discovery development framework for Junction.",
"author": "Jared Hanson <jaredhanson@gmail.com> (http://www.jaredhanson.net/)", "keywords": ["junction", "xmpp", "jabber", "disco", "xep0030"],
"repository": { "repository": {
"type": "git", "type": "git",
"url": "http://github.com/jaredhanson/junction-disco.git" "url": "git://github.com/jaredhanson/junction-disco.git"
}, },
"bugs": {
"url": "http://github.com/jaredhanson/junction-disco/issues"
},
"author": { "name": "Jared Hanson", "email": "jaredhanson@gmail.com", "url": "http://www.jaredhanson.net/" },
"licenses": [ {
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
} ],
"main": "./lib/junction-disco", "main": "./lib/junction-disco",
"dependencies": { "dependencies": {
"junction": ">= 0.1.3" "pkginfo": "0.2.x",
"junction": "0.2.x",
"debug": "0.7.x"
},
"devDependencies": {
"vows": "0.6.x"
},
"scripts": {
"test": "NODE_PATH=lib node_modules/.bin/vows test/*-test.js test/**/*-test.js"
}, },
"engines": { "node": ">= 0.4.0" }, "engines": { "node": ">= 0.4.0" }
"keywords": ["junction", "disco", "xmpp", "jabber", "xep0030"]
} }

0 comments on commit f0d0985

Please sign in to comment.