Skip to content
This repository has been archived by the owner on Mar 3, 2023. It is now read-only.

Commit

Permalink
added more npm-fu
Browse files Browse the repository at this point in the history
  • Loading branch information
jed committed Nov 16, 2011
1 parent b5a4a6b commit 0a0b1d1
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -0,0 +1 @@
node_modules/*
1 change: 0 additions & 1 deletion index.js

This file was deleted.

11 changes: 11 additions & 0 deletions package.json
Expand Up @@ -3,6 +3,17 @@
"name": "authome", "name": "authome",
"description": "A dependency-free mutli-service authentication tool for node.js", "description": "A dependency-free mutli-service authentication tool for node.js",
"version": "0.1.3", "version": "0.1.3",
"keywords": [
"auth",
"authorization",
"oauth",
"http"
],
"homepage": "https://github.com/jed/authome",
"contributors": [
"Mark Lussier <mlussier@gmail.com> (https://github.com/intabulas)"
],
"main": "./lib/authome",
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git://github.com/jed/authome.git" "url": "git://github.com/jed/authome.git"
Expand Down
2 changes: 1 addition & 1 deletion server.js
@@ -1,5 +1,5 @@
var http = require("http") var http = require("http")
, authome = require("./index") , authome = require("authome")
, server = http.createServer() , server = http.createServer()
, port = process.env.PORT || 80 , port = process.env.PORT || 80


Expand Down

0 comments on commit 0a0b1d1

Please sign in to comment.