Skip to content

Commit

Permalink
Simplify lib directory structure.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredhanson committed Mar 9, 2014
1 parent a69430b commit 122b55b
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -28,7 +28,7 @@
"url": "http://www.opensource.org/licenses/MIT"
}
],
"main": "./lib/passport-foursquare",
"main": "./lib",
"dependencies": {
"pkginfo": "0.2.x",
"passport-oauth": "0.1.x"
Expand Down
2 changes: 1 addition & 1 deletion test/index-test.js
@@ -1,7 +1,7 @@
var vows = require('vows');
var assert = require('assert');
var util = require('util');
var foursquare = require('passport-foursquare');
var foursquare = require('..');


vows.describe('passport-foursquare').addBatch({
Expand Down
2 changes: 1 addition & 1 deletion test/strategy-test.js
@@ -1,7 +1,7 @@
var vows = require('vows');
var assert = require('assert');
var util = require('util');
var FoursquareStrategy = require('passport-foursquare/strategy');
var FoursquareStrategy = require('../lib/strategy');


vows.describe('FoursquareStrategy').addBatch({
Expand Down

0 comments on commit 122b55b

Please sign in to comment.