diff --git a/app/MyApp/app/Router.js b/app/MyApp/app/Router.js index 4680e5cd7..5df7e8288 100644 --- a/app/MyApp/app/Router.js +++ b/app/MyApp/app/Router.js @@ -6754,6 +6754,7 @@ $(function() { App.$el.children('.body').html('
'); $('#ManageCourseCareer').append(' pkginfo.js | |
---|---|
/*
- * pkginfo.js: Top-level include for the pkginfo module
- *
- * (C) 2011, Charlie Robbins
- *
- */
-
-var fs = require('fs'),
- path = require('path'); | |
function pkginfo ([options, 'property', 'property' ..])- -@pmodule {Module} Parent module to read from.- -@options {Object|Array|string} Optional Options used when exposing properties.- -@arguments {string...} Optional Specified properties to expose.- -Exposes properties from the package.json file for the parent module on -it's exports. Valid usage: - -
| var pkginfo = module.exports = function (pmodule, options) {
- var args = [].slice.call(arguments, 2).filter(function (arg) {
- return typeof arg === 'string';
- });
- |
Parse variable arguments | if (Array.isArray(options)) { |
If the options passed in is an Array assume that -it is the Array of properties to expose from the -on the package.json file on the parent module. | options = { include: options };
- }
- else if (typeof options === 'string') { |
Otherwise if the first argument is a string, then -assume that it is the first property to expose from -the package.json file on the parent module. | options = { include: [options] };
- }
- |
Setup default options | options = options || { include: [] };
-
- if (args.length > 0) { |
If additional string arguments have been passed in -then add them to the properties to expose on the -parent module. | options.include = options.include.concat(args);
- }
-
- var pkg = pkginfo.read(pmodule, options.dir).package;
- Object.keys(pkg).forEach(function (key) {
- if (options.include.length > 0 && !~options.include.indexOf(key)) {
- return;
- }
-
- if (!pmodule.exports[key]) {
- pmodule.exports[key] = pkg[key];
- }
- });
-
- return pkginfo;
-}; |
function find (dir)- -@pmodule {Module} Parent module to read from.- -@dir {string} Optional Directory to start search from.- -Searches up the directory tree from | pkginfo.find = function (pmodule, dir) {
- dir = dir || pmodule.filename;
- dir = path.dirname(dir);
-
- var files = fs.readdirSync(dir);
-
- if (~files.indexOf('package.json')) {
- return path.join(dir, 'package.json');
- }
-
- if (dir === '/') {
- throw new Error('Could not find package.json up from: ' + dir);
- }
-
- return pkginfo.find(dir);
-}; |
function read (pmodule, dir)- -@pmodule {Module} Parent module to read from.- -@dir {string} Optional Directory to start search from.- -Searches up the directory tree from | pkginfo.read = function (pmodule, dir) {
- dir = pkginfo.find(pmodule, dir);
-
- var data = fs.readFileSync(dir).toString();
-
- return {
- dir: dir,
- package: JSON.parse(data)
- };
-}; |
Call | pkginfo(module, {
- dir: __dirname,
- include: ['version'],
- target: pkginfo
-});
-
- |
- npm install watch -- -## Purpose - -The intention of this module is provide tools that make managing the watching of file & directory trees easier. - -#### watch.watchTree(root, [options,] callback) - -The first argument is the directory root you want to watch. - -The options object is passed to fs.watchFile but can also be used to provide two additional watchTree specific options: - -* `'ignoreDotFiles'` - When true this option means that when the file tree is walked it will ignore files that being with "." -* `'filter'` - You can use this option to provide a function that returns true or false for each file and directory that is walked to decide whether or not that file/directory is included in the watcher. - -The callback takes 3 arguments. The first is the file that was modified. The second is the current stat object for that file and the third is the previous stat object. - -When a file is new the previous stat object is null. - -When watchTree is finished walking the tree and adding all the listeners it passes the file hash (key if the file/directory names and the values are the current stat objects) as the first argument and null as both the previous and current stat object arguments. - -
- watch.watchTree('/home/mikeal', function (f, curr, prev) { - if (typeof f == "object" && prev === null && curr === null) { - // Finished walking the tree - } else if (prev === null) { - // f is a new file - } else if (curr.nlink === 0) { - // f was removed - } else { - // f was changed - } - }) -- -### watch.createMonitor(root, [options,] callback) - -This function creates an EventEmitter that gives notifications for different changes that happen to the file and directory tree under the given root argument. - -The options object is passed to watch.watchTree. - -The callback receives the monitor object. - -The monitor object contains a property, `files`, which is a hash of files and directories as keys with the current stat object as the value. - -The monitor has the following events. - -* `'created'` - New file has been created. Two arguments, the filename and the stat object. -* `'removed'` - A file has been moved or deleted. Two arguments, the filename and the stat object for the fd. -* `'changed'` - A file has been changed. Three arguments, the filename, the current stat object, and the previous stat object. - -
- var watch = require('watch') - watch.createMonitor('/home/mikeal', function (monitor) { - monitor.files['/home/mikeal/.zshrc'] // Stat object for my zshrc. - monitor.on("created", function (f, stat) { - // Handle new files - }) - monitor.on("changed", function (f, curr, prev) { - // Handle file changes - }) - monitor.on("removed", function (f, stat) { - // Handle removed files - }) - }) -diff --git a/node_modules/couchapp/node_modules/watch/test/d/d/t b/node_modules/couchapp/node_modules/watch/test/d/d/t deleted file mode 100644 index e69de29bb..000000000 diff --git a/node_modules/couchapp/node_modules/watch/test/d/t b/node_modules/couchapp/node_modules/watch/test/d/t deleted file mode 100644 index e69de29bb..000000000 diff --git a/node_modules/couchapp/node_modules/watch/test/test_monitor.js b/node_modules/couchapp/node_modules/watch/test/test_monitor.js deleted file mode 100644 index 59e776da2..000000000 --- a/node_modules/couchapp/node_modules/watch/test/test_monitor.js +++ /dev/null @@ -1,31 +0,0 @@ -var watch = require('../main') - , assert = require('assert') - , path = require('path') - , fs = require('fs') - , target = path.join(__dirname, "d/t") - ; - -function clearFile() { - fs.writeFileSync(target, '') -} - -clearFile() - -// test if changed event is fired correctly -watch.createMonitor(__dirname, { interval: 150 }, - function (monitor) { - monitor.once('changed', function (f) { - assert.equal(f, target); - clearFile(); - process.exit(0) - }) - - fs.writeFile(target, 'Test Write\n', function (err) { - if (err) throw err; - - setTimeout(function () { - // should have got the other assert done by now - assert.ok(false); - }, 300); - }) -}); diff --git a/node_modules/couchapp/node_modules/watch/test/test_watchTree.js b/node_modules/couchapp/node_modules/watch/test/test_watchTree.js deleted file mode 100644 index 80381fe07..000000000 --- a/node_modules/couchapp/node_modules/watch/test/test_watchTree.js +++ /dev/null @@ -1,9 +0,0 @@ -var watch = require('../main') - , assert = require('assert') - ; - -watch.watchTree(__dirname, function (f, curr, prev) { - // console.log('file '+f+' prev '+prev+' curr '+curr); - // console.dir(curr) - // console.dir(prev) -}); \ No newline at end of file diff --git a/node_modules/couchapp/package.json b/node_modules/couchapp/package.json index e5a7d8b86..4aca7d435 100644 --- a/node_modules/couchapp/package.json +++ b/node_modules/couchapp/package.json @@ -1,50 +1,84 @@ { - "name": "couchapp", - "description": "Utilities for building CouchDB applications.", - "tags": [ - "couchdb", - "webframework" + "_args": [ + [ + { + "raw": "couchapp@>= 0.10.0", + "scope": null, + "escapedName": "couchapp", + "name": "couchapp", + "rawSpec": ">= 0.10.0", + "spec": ">=0.10.0", + "type": "range" + }, + "E:\\projects\\ole--vagrant-community\\ole\\BeLL-Apps" + ] + ], + "_from": "couchapp@>=0.10.0", + "_id": "couchapp@0.11.0", + "_inCache": true, + "_location": "/couchapp", + "_npmUser": { + "name": "mikeal", + "email": "mikeal.rogers@gmail.com" + }, + "_npmVersion": "1.4.4", + "_phantomChildren": {}, + "_requested": { + "raw": "couchapp@>= 0.10.0", + "scope": null, + "escapedName": "couchapp", + "name": "couchapp", + "rawSpec": ">= 0.10.0", + "spec": ">=0.10.0", + "type": "range" + }, + "_requiredBy": [ + "/" ], - "version": "0.11.0", + "_resolved": "https://registry.npmjs.org/couchapp/-/couchapp-0.11.0.tgz", + "_shasum": "f09dc315d610f6f6e79fd0caf5e5d624b0cc783e", + "_shrinkwrap": null, + "_spec": "couchapp@>= 0.10.0", + "_where": "E:\\projects\\ole--vagrant-community\\ole\\BeLL-Apps", "author": { "name": "Mikeal Rogers", "email": "mikeal.rogers@gmail.com" }, - "engines": [ - "node >= 0.1.95" - ], - "main": "./main", + "bin": { + "couchapp": "./bin.js" + }, "dependencies": { - "watch": "~0.8.0", - "request": "*", - "http-proxy": "0.8.7", + "coffee-script": "*", "connect": "*", + "http-proxy": "0.8.7", "nano": "*", + "request": "*", "url": "*", - "coffee-script": "*" - }, - "bin": { - "couchapp": "./bin.js" + "watch": "~0.8.0" }, - "_id": "couchapp@0.11.0", + "description": "Utilities for building CouchDB applications.", + "devDependencies": {}, + "directories": {}, "dist": { "shasum": "f09dc315d610f6f6e79fd0caf5e5d624b0cc783e", - "tarball": "http://registry.npmjs.org/couchapp/-/couchapp-0.11.0.tgz" - }, - "_from": "couchapp@>= 0.10.0", - "_npmVersion": "1.4.4", - "_npmUser": { - "name": "mikeal", - "email": "mikeal.rogers@gmail.com" + "tarball": "https://registry.npmjs.org/couchapp/-/couchapp-0.11.0.tgz" }, + "engines": [ + "node >= 0.1.95" + ], + "main": "./main", "maintainers": [ { "name": "mikeal", "email": "mikeal.rogers@gmail.com" } ], - "directories": {}, - "_shasum": "f09dc315d610f6f6e79fd0caf5e5d624b0cc783e", - "_resolved": "https://registry.npmjs.org/couchapp/-/couchapp-0.11.0.tgz", - "readme": "ERROR: No README data found!" + "name": "couchapp", + "optionalDependencies": {}, + "readme": "ERROR: No README data found!", + "tags": [ + "couchdb", + "webframework" + ], + "version": "0.11.0" } diff --git a/node_modules/nano/node_modules/.bin/follow b/node_modules/nano/node_modules/.bin/follow deleted file mode 100644 index eb7722ec8..000000000 --- a/node_modules/nano/node_modules/.bin/follow +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -basedir=`dirname "$0"` - -case `uname` in - *CYGWIN*) basedir=`cygpath -w "$basedir"`;; -esac - -if [ -x "$basedir/node" ]; then - "$basedir/node" "$basedir/../follow/cli.js" "$@" - ret=$? -else - node "$basedir/../follow/cli.js" "$@" - ret=$? -fi -exit $ret diff --git a/node_modules/nano/node_modules/.bin/follow.cmd b/node_modules/nano/node_modules/.bin/follow.cmd deleted file mode 100644 index 49fdd7669..000000000 --- a/node_modules/nano/node_modules/.bin/follow.cmd +++ /dev/null @@ -1,5 +0,0 @@ -@IF EXIST "%~dp0\node.exe" ( - "%~dp0\node.exe" "%~dp0\..\follow\cli.js" %* -) ELSE ( - node "%~dp0\..\follow\cli.js" %* -) \ No newline at end of file diff --git a/node_modules/nano/node_modules/debug/.jshintrc b/node_modules/nano/node_modules/debug/.jshintrc deleted file mode 100644 index 299877f26..000000000 --- a/node_modules/nano/node_modules/debug/.jshintrc +++ /dev/null @@ -1,3 +0,0 @@ -{ - "laxbreak": true -} diff --git a/node_modules/nano/node_modules/debug/.npmignore b/node_modules/nano/node_modules/debug/.npmignore deleted file mode 100644 index 7e6163db0..000000000 --- a/node_modules/nano/node_modules/debug/.npmignore +++ /dev/null @@ -1,6 +0,0 @@ -support -test -examples -example -*.sock -dist diff --git a/node_modules/nano/node_modules/debug/History.md b/node_modules/nano/node_modules/debug/History.md deleted file mode 100644 index 770e4832d..000000000 --- a/node_modules/nano/node_modules/debug/History.md +++ /dev/null @@ -1,186 +0,0 @@ - -2.1.3 / 2015-03-13 -================== - - * Updated stdout/stderr example (#186) - * Updated example/stdout.js to match debug current behaviour - * Renamed example/stderr.js to stdout.js - * Update Readme.md (#184) - * replace high intensity foreground color for bold (#182, #183) - -2.1.2 / 2015-03-01 -================== - - * dist: recompile - * update "ms" to v0.7.0 - * package: update "browserify" to v9.0.3 - * component: fix "ms.js" repo location - * changed bower package name - * updated documentation about using debug in a browser - * fix: security error on safari (#167, #168, @yields) - -2.1.1 / 2014-12-29 -================== - - * browser: use `typeof` to check for `console` existence - * browser: check for `console.log` truthiness (fix IE 8/9) - * browser: add support for Chrome apps - * Readme: added Windows usage remarks - * Add `bower.json` to properly support bower install - -2.1.0 / 2014-10-15 -================== - - * node: implement `DEBUG_FD` env variable support - * package: update "browserify" to v6.1.0 - * package: add "license" field to package.json (#135, @panuhorsmalahti) - -2.0.0 / 2014-09-01 -================== - - * package: update "browserify" to v5.11.0 - * node: use stderr rather than stdout for logging (#29, @stephenmathieson) - -1.0.4 / 2014-07-15 -================== - - * dist: recompile - * example: remove `console.info()` log usage - * example: add "Content-Type" UTF-8 header to browser example - * browser: place %c marker after the space character - * browser: reset the "content" color via `color: inherit` - * browser: add colors support for Firefox >= v31 - * debug: prefer an instance `log()` function over the global one (#119) - * Readme: update documentation about styled console logs for FF v31 (#116, @wryk) - -1.0.3 / 2014-07-09 -================== - - * Add support for multiple wildcards in namespaces (#122, @seegno) - * browser: fix lint - -1.0.2 / 2014-06-10 -================== - - * browser: update color palette (#113, @gscottolson) - * common: make console logging function configurable (#108, @timoxley) - * node: fix %o colors on old node <= 0.8.x - * Makefile: find node path using shell/which (#109, @timoxley) - -1.0.1 / 2014-06-06 -================== - - * browser: use `removeItem()` to clear localStorage - * browser, node: don't set DEBUG if namespaces is undefined (#107, @leedm777) - * package: add "contributors" section - * node: fix comment typo - * README: list authors - -1.0.0 / 2014-06-04 -================== - - * make ms diff be global, not be scope - * debug: ignore empty strings in enable() - * node: make DEBUG_COLORS able to disable coloring - * *: export the `colors` array - * npmignore: don't publish the `dist` dir - * Makefile: refactor to use browserify - * package: add "browserify" as a dev dependency - * Readme: add Web Inspector Colors section - * node: reset terminal color for the debug content - * node: map "%o" to `util.inspect()` - * browser: map "%j" to `JSON.stringify()` - * debug: add custom "formatters" - * debug: use "ms" module for humanizing the diff - * Readme: add "bash" syntax highlighting - * browser: add Firebug color support - * browser: add colors for WebKit browsers - * node: apply log to `console` - * rewrite: abstract common logic for Node & browsers - * add .jshintrc file - -0.8.1 / 2014-04-14 -================== - - * package: re-add the "component" section - -0.8.0 / 2014-03-30 -================== - - * add `enable()` method for nodejs. Closes #27 - * change from stderr to stdout - * remove unnecessary index.js file - -0.7.4 / 2013-11-13 -================== - - * remove "browserify" key from package.json (fixes something in browserify) - -0.7.3 / 2013-10-30 -================== - - * fix: catch localStorage security error when cookies are blocked (Chrome) - * add debug(err) support. Closes #46 - * add .browser prop to package.json. Closes #42 - -0.7.2 / 2013-02-06 -================== - - * fix package.json - * fix: Mobile Safari (private mode) is broken with debug - * fix: Use unicode to send escape character to shell instead of octal to work with strict mode javascript - -0.7.1 / 2013-02-05 -================== - - * add repository URL to package.json - * add DEBUG_COLORED to force colored output - * add browserify support - * fix component. Closes #24 - -0.7.0 / 2012-05-04 -================== - - * Added .component to package.json - * Added debug.component.js build - -0.6.0 / 2012-03-16 -================== - - * Added support for "-" prefix in DEBUG [Vinay Pulim] - * Added `.enabled` flag to the node version [TooTallNate] - -0.5.0 / 2012-02-02 -================== - - * Added: humanize diffs. Closes #8 - * Added `debug.disable()` to the CS variant - * Removed padding. Closes #10 - * Fixed: persist client-side variant again. Closes #9 - -0.4.0 / 2012-02-01 -================== - - * Added browser variant support for older browsers [TooTallNate] - * Added `debug.enable('project:*')` to browser variant [TooTallNate] - * Added padding to diff (moved it to the right) - -0.3.0 / 2012-01-26 -================== - - * Added millisecond diff when isatty, otherwise UTC string - -0.2.0 / 2012-01-22 -================== - - * Added wildcard support - -0.1.0 / 2011-12-02 -================== - - * Added: remove colors unless stderr isatty [TooTallNate] - -0.0.1 / 2010-01-03 -================== - - * Initial release diff --git a/node_modules/nano/node_modules/debug/Makefile b/node_modules/nano/node_modules/debug/Makefile deleted file mode 100644 index b0bde6e63..000000000 --- a/node_modules/nano/node_modules/debug/Makefile +++ /dev/null @@ -1,33 +0,0 @@ - -# get Makefile directory name: http://stackoverflow.com/a/5982798/376773 -THIS_MAKEFILE_PATH:=$(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST)) -THIS_DIR:=$(shell cd $(dir $(THIS_MAKEFILE_PATH));pwd) - -# BIN directory -BIN := $(THIS_DIR)/node_modules/.bin - -# applications -NODE ?= $(shell which node) -NPM ?= $(NODE) $(shell which npm) -BROWSERIFY ?= $(NODE) $(BIN)/browserify - -all: dist/debug.js - -install: node_modules - -clean: - @rm -rf node_modules dist - -dist: - @mkdir -p $@ - -dist/debug.js: node_modules browser.js debug.js dist - @$(BROWSERIFY) \ - --standalone debug \ - . > $@ - -node_modules: package.json - @NODE_ENV= $(NPM) install - @touch node_modules - -.PHONY: all install clean diff --git a/node_modules/nano/node_modules/debug/Readme.md b/node_modules/nano/node_modules/debug/Readme.md deleted file mode 100644 index 14222e0c2..000000000 --- a/node_modules/nano/node_modules/debug/Readme.md +++ /dev/null @@ -1,178 +0,0 @@ -# debug - - tiny node.js debugging utility modelled after node core's debugging technique. - -## Installation - -```bash -$ npm install debug -``` - -## Usage - - With `debug` you simply invoke the exported function to generate your debug function, passing it a name which will determine if a noop function is returned, or a decorated `console.error`, so all of the `console` format string goodies you're used to work fine. A unique color is selected per-function for visibility. - -Example _app.js_: - -```js -var debug = require('debug')('http') - , http = require('http') - , name = 'My App'; - -// fake app - -debug('booting %s', name); - -http.createServer(function(req, res){ - debug(req.method + ' ' + req.url); - res.end('hello\n'); -}).listen(3000, function(){ - debug('listening'); -}); - -// fake worker of some kind - -require('./worker'); -``` - -Example _worker.js_: - -```js -var debug = require('debug')('worker'); - -setInterval(function(){ - debug('doing some work'); -}, 1000); -``` - - The __DEBUG__ environment variable is then used to enable these based on space or comma-delimited names. Here are some examples: - - ![debug http and worker](http://f.cl.ly/items/18471z1H402O24072r1J/Screenshot.png) - - ![debug worker](http://f.cl.ly/items/1X413v1a3M0d3C2c1E0i/Screenshot.png) - -#### Windows note - - On Windows the environment variable is set using the `set` command. - - ```cmd - set DEBUG=*,-not_this - ``` - -Then, run the program to be debugged as usual. - -## Millisecond diff - - When actively developing an application it can be useful to see when the time spent between one `debug()` call and the next. Suppose for example you invoke `debug()` before requesting a resource, and after as well, the "+NNNms" will show you how much time was spent between calls. - - ![](http://f.cl.ly/items/2i3h1d3t121M2Z1A3Q0N/Screenshot.png) - - When stdout is not a TTY, `Date#toUTCString()` is used, making it more useful for logging the debug information as shown below: - - ![](http://f.cl.ly/items/112H3i0e0o0P0a2Q2r11/Screenshot.png) - -## Conventions - - If you're using this in one or more of your libraries, you _should_ use the name of your library so that developers may toggle debugging as desired without guessing names. If you have more than one debuggers you _should_ prefix them with your library name and use ":" to separate features. For example "bodyParser" from Connect would then be "connect:bodyParser". - -## Wildcards - - The `*` character may be used as a wildcard. Suppose for example your library has debuggers named "connect:bodyParser", "connect:compress", "connect:session", instead of listing all three with `DEBUG=connect:bodyParser,connect.compress,connect:session`, you may simply do `DEBUG=connect:*`, or to run everything using this module simply use `DEBUG=*`. - - You can also exclude specific debuggers by prefixing them with a "-" character. For example, `DEBUG=*,-connect:*` would include all debuggers except those starting with "connect:". - -## Browser support - - Debug works in the browser as well, currently persisted by `localStorage`. Consider the situation shown below where you have `worker:a` and `worker:b`, and wish to debug both. Somewhere in the code on your page, include: - -```js -window.myDebug = require("debug"); -``` - - ("debug" is a global object in the browser so we give this object a different name.) When your page is open in the browser, type the following in the console: - -```js -myDebug.enable("worker:*") -``` - - Refresh the page. Debug output will continue to be sent to the console until it is disabled by typing `myDebug.disable()` in the console. - -```js -a = debug('worker:a'); -b = debug('worker:b'); - -setInterval(function(){ - a('doing some work'); -}, 1000); - -setInterval(function(){ - b('doing some work'); -}, 1200); -``` - -#### Web Inspector Colors - - Colors are also enabled on "Web Inspectors" that understand the `%c` formatting - option. These are WebKit web inspectors, Firefox ([since version - 31](https://hacks.mozilla.org/2014/05/editable-box-model-multiple-selection-sublime-text-keys-much-more-firefox-developer-tools-episode-31/)) - and the Firebug plugin for Firefox (any version). - - Colored output looks something like: - - ![](https://cloud.githubusercontent.com/assets/71256/3139768/b98c5fd8-e8ef-11e3-862a-f7253b6f47c6.png) - -### stderr vs stdout - -You can set an alternative logging method per-namespace by overriding the `log` method on a per-namespace or globally: - -Example _stdout.js_: - -```js -var debug = require('debug'); -var error = debug('app:error'); - -// by default stderr is used -error('goes to stderr!'); - -var log = debug('app:log'); -// set this namespace to log via console.log -log.log = console.log.bind(console); // don't forget to bind to console! -log('goes to stdout'); -error('still goes to stderr!'); - -// set all output to go via console.info -// overrides all per-namespace log settings -debug.log = console.info.bind(console); -error('now goes to stdout via console.info'); -log('still goes to stdout, but via console.info now'); -``` - -## Authors - - - TJ Holowaychuk - - Nathan Rajlich - -## License - -(The MIT License) - -Copyright (c) 2014 TJ Holowaychuk <tj@vision-media.ca> - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -'Software'), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/node_modules/nano/node_modules/debug/bower.json b/node_modules/nano/node_modules/debug/bower.json deleted file mode 100644 index f7d3f6dc1..000000000 --- a/node_modules/nano/node_modules/debug/bower.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "name": "visionmedia-debug", - "main": "dist/debug.js", - "version": "2.1.3", - "homepage": "https://github.com/visionmedia/debug", - "authors": [ - "TJ Holowaychuk