Removing unneeded 'util' require. Updating package manager.
This commit is contained in:
parent
74a99da2ef
commit
8d949ce6f0
|
@ -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) {
|
||||||
|
|
|
@ -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"
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
_ = require 'underscore'
|
_ = require 'underscore'
|
||||||
util = require 'util'
|
|
||||||
|
|
||||||
class Contexter
|
class Contexter
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue