Removing unneeded 'util' require. Updating package manager.

This commit is contained in:
Elf M. Sternberg 2013-06-12 09:24:39 -07:00
parent 74a99da2ef
commit 8d949ce6f0
3 changed files with 5 additions and 6 deletions

View File

@ -1,11 +1,9 @@
// Generated by CoffeeScript 1.6.1
(function() {
var Contexter, util, _;
var Contexter, _;
_ = require('underscore');
util = require('util');
Contexter = (function() {
function Contexter(content) {

View File

@ -9,11 +9,12 @@
},
"repository": {
"type": "git",
"url": "ssh://elfstenberg@elfsternberg.com/home/elfsternberg/repos/tumble.git"
"url": "https://github.com/elfsternberg/tumble.git",
},
"licenses": [
{
"type": "PRIVATE"
"type": "MIT",
"url": "https://raw.github.com/elfsternberg/tumble/master/LICENSE"
}
],
"main": "lib/tumble",
@ -27,6 +28,7 @@
"underscore": "1.4.x"
},
"devDependencies": {
"coffeescript": "1.6.x",
"pegjs": "0.7.x",
"mocha": "1.8.x",
"chai": "1.5.x"

View File

@ -1,5 +1,4 @@
_ = require 'underscore'
util = require 'util'
class Contexter