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 // Generated by CoffeeScript 1.6.1
(function() { (function() {
var Contexter, util, _; var Contexter, _;
_ = require('underscore'); _ = require('underscore');
util = require('util');
Contexter = (function() { Contexter = (function() {
function Contexter(content) { function Contexter(content) {

View File

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

View File

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