{"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},{"name":"jfhbrook","email":"josh.holbrook@gmail.com"}],"keywords":["static","web","server","files","mime","middleware"],"dist-tags":{"latest":"2.1.0"},"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"description":"A simple static file server middleware that works with both Express and Flatiron","readme":"# Ecstatic [![build status](https://secure.travis-ci.org/jfhbrook/node-ecstatic.png)](http://travis-ci.org/jfhbrook/node-ecstatic) [![codecov.io](https://codecov.io/github/jfhbrook/node-ecstatic/coverage.svg?branch=master)](https://codecov.io/github/jfhbrook/node-ecstatic?branch=master)\n\n![](http://imgur.com/vhub5.png)\n\nA simple static file server middleware. Use it with a raw http server or\nexpress/connect!\n\n# Examples:\n\n## express 3.0.x\n\n``` js\nvar http = require('http');\nvar express = require('express');\nvar ecstatic = require('ecstatic');\n\nvar app = express();\napp.use(ecstatic({ root: __dirname + '/public' }));\nhttp.createServer(app).listen(8080);\n\nconsole.log('Listening on :8080');\n```\n\n## stock http server\n\n``` js\nvar http = require('http');\nvar ecstatic = require('ecstatic');\n\nhttp.createServer(\n  ecstatic({ root: __dirname + '/public' })\n).listen(8080);\n\nconsole.log('Listening on :8080');\n```\n### fall through\nTo allow fall through to your custom routes:\n\n```js\necstatic({ root: __dirname + '/public', handleError: false })\n```\n\n# API:\n\n## ecstatic(opts);\n\nPass ecstatic an options hash, and it will return your middleware!\n\n```js\nvar opts = {\n             root               : __dirname + '/public',\n             port               : 8000,\n             baseDir            : '/',\n             cache              : 3600,\n             showDir            : true,\n             showDotfiles       : true,\n             autoIndex          : false,\n             humanReadable      : true,\n             headers            : {},\n             si                 : false,\n             defaultExt         : 'html',\n             gzip               : false,\n             serverHeader       : true,\n             contentType        : 'application/octet-stream',\n             mimeTypes          : undefined,\n             handleOptionsMethod: false\n           }\n```\n\nIf `opts` is a string, the string is assigned to the root folder and all other\noptions are set to their defaults.\n\n### `opts.root`\n\n`opts.root` is the directory you want to serve up.\n\n### `opts.port`\n\n`opts.port` is the port you want ecstatic to listen to. Defaults to 8000.\n\n### `opts.baseDir`\n\n`opts.baseDir` is `/` by default, but can be changed to allow your static files\nto be served off a specific route. For example, if `opts.baseDir === \"blog\"`\nand `opts.root = \"./public\"`, requests for `localhost:8080/blog/index.html` will\nresolve to `./public/index.html`.\n\n### `opts.cache`\n\nCustomize cache control with `opts.cache` , if it is a number then it will set max-age in seconds.\nOther wise it will pass through directly to cache-control. Time defaults to 3600 s (ie, 1 hour).\n\nIf it is a function, it will be executed on every request, and passed the pathname.  Whatever it returns, string or number, will be used as the cache control header like above.\n\n### `opts.showDir`\n\nTurn **off** directory listings with `opts.showDir === false`. Defaults to **true**.\n\n### `opts.showDotfiles`\n\nExclude dotfiles from directory listings with `opts.showDotfiles === false`. Defaults to **true**.\n\n### `opts.humanReadable`\n\nIf showDir is enabled, add human-readable file sizes. Defaults to **true**.\nAliases are `humanreadable` and `human-readable`.\n\n### `opts.headers`\n\nSet headers on every response. `opts.headers` can be an object mapping string\nheader names to string header values, a colon (:) separated string, or an array\nof colon separated strings.\n\n`opts.H` and `opts.header` are aliased to `opts.headers` so that you can use\n`-H` and `--header` options to set headers on the command-line like curl:\n\n``` sh\n$ ecstatic ./public -p 5000 -H 'Access-Control-Allow-Origin: *'\n```\n\n### `opts.si`\n\nIf showDir and humanReadable are enabled, print file sizes with base 1000 instead\nof base 1024. Name is inferred from cli options for `ls`. Aliased to `index`, the\nequivalent option in Apache.\n\n### `opts.autoIndex`\n\nServe `/path/index.html` when `/path/` is requested.\nTurn **off** autoIndexing with `opts.autoIndex === false`. Defaults to **true**.\n\n### `opts.defaultExt`\n\nTurn on default file extensions with `opts.defaultExt`. If `opts.defaultExt` is\ntrue, it will default to `html`. For example if you want a request to `/a-file`\nto resolve to `./public/a-file.html`, set this to `true`. If you want\n`/a-file` to resolve to `./public/a-file.json` instead, set `opts.defaultExt` to\n`json`.\n\n### `opts.gzip`\n\nSet `opts.gzip === true` in order to turn on \"gzip mode,\" wherein ecstatic will\nserve `./public/some-file.js.gz` in place of `./public/some-file.js` when the\ngzipped version exists and ecstatic determines that the behavior is appropriate.\n\n### `opts.serverHeader`\n\nSet `opts.serverHeader` to false in order to turn off setting the `Server` header\non all responses served by ecstatic.\n\n### `opts.contentType`\n\nSet `opts.contentType` in order to change default Content-Type header value.\nDefaults to **application/octet-stream**.\n\n### `opts.mimeTypes`\n\nAdd new or override one or more mime-types. This affects the HTTP Content-Type header.\nCan either be a path to a [`.types`](http://svn.apache.org/repos/asf/httpd/httpd/trunk/docs/conf/mime.types) file or an object hash of type(s).\n\n    ecstatic({ mimeType: { 'mime-type': ['file_extension', 'file_extension'] } })\n\n### `opts.handleError`\n\nTurn **off** handleErrors to allow fall-through with `opts.handleError === false`, Defaults to **true**.\n\n### `opts.weakEtags`\n\nSet `opts.weakEtags` to true in order to generate weak etags instead of strong etags. Defaults to **false**. See `opts.weakCompare` as well.\n\n### `opts.weakCompare`\n\nTurn **on** weakCompare to allow the weak comparison function for etag validation. Defaults to **false**.\nSee https://www.ietf.org/rfc/rfc2616.txt Section 13.3.3 for more details.\n\n### `opts.handleOptionsMethod`\n\nSet handleOptionsMethod to true in order to respond to 'OPTIONS' calls with any standard/set headers. Defaults to **false**. Useful for hacking up CORS support.\n\n### `opts.cors`\n\nThis is a **convenience** setting which turns on `handleOptionsMethod` and sets the headers **Access-Control-Allow-Origin: \\*** and **Access-Control-Allow-Headers: Authorization, Content-Type, If-Match, If-Modified-Since, If-None-Match, If-Unmodified-Since**. This *should* be enough to quickly make cross-origin resource sharing work between development APIs. More advanced usage can come either from overriding these headers with the headers argument, or by using the `handleOptionsMethod` flag and then setting headers \"manually.\" Alternately, just do it in your app using separate middlewares/abstractions.\n\nDefaults to **false**.\n\n## middleware(req, res, next);\n\nThis works more or less as you'd expect.\n\n### ecstatic.showDir(folder);\n\nThis returns another middleware which will attempt to show a directory view. Turning on auto-indexing is roughly equivalent to adding this middleware after an ecstatic middleware with autoindexing disabled.\n\n### `ecstatic` command\n\nto start a standalone static http server,\nrun `npm install -g ecstatic` and then run `ecstatic [dir?] [options] --port PORT`\nall options work as above, passed in [optimist](https://github.com/substack/node-optimist) style.\n`port` defaults to `8000`. If a `dir` or `--root dir` argument is not passed, ecsatic will\nserve the current dir. Ecstatic also respects the PORT environment variable.\n\n# Tests:\n\nEcstatic has a fairly extensive test suite. You can run it with:\n\n```sh\n$ npm test\n```\n\n# Contribute:\n\nWithout outside contributions, ecstatic would wither and die! Before\ncontributing, take a quick look at the contributing guidelines in\n[./CONTRIBUTING.md](./CONTRIBUTING.md) . They're relatively painless, I promise.\nFor Windows users, it is especially important to read the [./CONTRIBUTING.md](./CONTRIBUTING.md)\nsection as you can **not** clone ecstatic without changing some settings in git.\n\n# License:\n\nMIT. See LICENSE.txt. For contributors, see CONTRIBUTORS.md\n","repository":{"type":"git","url":"git+ssh://git@github.com/jfhbrook/node-ecstatic.git"},"users":{"substack":true,"khoomeister":true,"leesei":true,"nrn":true,"themiddleman":true,"joakin":true,"kael":true,"dexteryy":true,"darelf":true,"axelav":true,"qawemlilo":true,"chalassa":true,"melvingruesbeck":true,"akiva":true,"kinday":true,"pengzhisun":true,"arkanciscan":true,"itonyyo":true,"n370":true,"walmik":true,"icestone":true,"artskydj":true,"emiljohansson":true,"wenbing":true,"shokishoki":true,"leonardorb":true,"cable023":true,"jesusgoku":true,"quocnguyen":true,"sirrah":true,"antoniordo":true,"codekraft-studio":true,"mauricedb":true,"ahmedelgabri":true,"stevenvachon":true,"dzhou777":true,"wangfeia":true,"laughinghan":true,"caffellatte":true,"largepuma":true,"rochejul":true,"bashkernel":true},"bugs":{"url":"https://github.com/jfhbrook/node-ecstatic/issues"},"license":"MIT","versions":{"0.0.0":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"0.0.0","homepage":"https://github.com/jesusabdullah/node-ecstatic","repository":{"type":"git","url":"git@github.com:jesusabdullah/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"keywords":["static","web","server","files","mime"],"engines":{"node":"*"},"dependencies":{"mime":"1.2.x","ent":"0.0.x"},"devDependencies":{"tap":"0.0.x","request":"2.2.x","express":"2.5.x","union":"0.1.x"},"directories":{"test":"test","example":"example","lib":"."},"_npmUser":{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},"_id":"ecstatic@0.0.0","_engineSupported":true,"_npmVersion":"1.0.104","_nodeVersion":"v0.4.13-pre","_defaultsLoaded":true,"dist":{"shasum":"938e4152eca085ae52667b59e583d8d6ca144887","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-0.0.0.tgz"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"}]},"0.0.1":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"0.0.1","homepage":"https://github.com/jesusabdullah/node-ecstatic","repository":{"type":"git","url":"git@github.com:jesusabdullah/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"keywords":["static","web","server","files","mime","middleware"],"engines":{"node":"*"},"dependencies":{"mime":"1.2.x","ent":"0.0.x"},"devDependencies":{"tap":"0.0.x","request":"2.2.x","express":"2.5.x","union":"0.1.x"},"_npmUser":{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},"_id":"ecstatic@0.0.1","_engineSupported":true,"_npmVersion":"1.0.104","_nodeVersion":"v0.4.13-pre","_defaultsLoaded":true,"dist":{"shasum":"9c741a2ba02c2465c6cb543d89452b15ad09ae5b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-0.0.1.tgz"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"}],"directories":{}},"0.1.0":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"0.1.0","homepage":"https://github.com/jesusabdullah/node-ecstatic","repository":{"type":"git","url":"git@github.com:jesusabdullah/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"keywords":["static","web","server","files","mime","middleware"],"engines":{"node":"*"},"dependencies":{"mime":"1.2.x","ent":"0.0.x"},"devDependencies":{"tap":"0.0.x","request":"2.2.x","express":"2.5.x","union":"0.1.x"},"_npmUser":{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},"_id":"ecstatic@0.1.0","_engineSupported":true,"_npmVersion":"1.0.104","_nodeVersion":"v0.4.13-pre","_defaultsLoaded":true,"dist":{"shasum":"4a8c4b8aeb303b84bd2bf998f028eed4bfd15b4d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-0.1.0.tgz"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"}],"directories":{}},"0.1.1":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"0.1.1","homepage":"https://github.com/jesusabdullah/node-ecstatic","repository":{"type":"git","url":"git@github.com:jesusabdullah/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"keywords":["static","web","server","files","mime","middleware"],"engines":{"node":"*"},"dependencies":{"mime":"1.2.x","ent":"0.0.x"},"devDependencies":{"tap":"0.0.x","request":"2.2.x","express":"2.5.x","union":"0.1.x"},"_npmUser":{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},"_id":"ecstatic@0.1.1","_engineSupported":true,"_npmVersion":"1.0.104","_nodeVersion":"v0.4.13-pre","_defaultsLoaded":true,"dist":{"shasum":"62cfae01c609cc36d47a3c010472626afd343331","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-0.1.1.tgz"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"}],"directories":{}},"0.1.1-1":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"0.1.1-1","homepage":"https://github.com/jesusabdullah/node-ecstatic","repository":{"type":"git","url":"git@github.com:jesusabdullah/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"keywords":["static","web","server","files","mime","middleware"],"engines":{"node":"*"},"dependencies":{"mime":"1.2.x","ent":"0.0.x"},"devDependencies":{"tap":"0.0.x","request":"2.2.x","express":"2.5.x","union":"0.1.x"},"_npmUser":{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},"_id":"ecstatic@0.1.1-1","_engineSupported":true,"_npmVersion":"1.0.104","_nodeVersion":"v0.4.13-pre","_defaultsLoaded":true,"dist":{"shasum":"0c995af7b5a4563590e568de18a2927054c2ccbe","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-0.1.1-1.tgz"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"}],"directories":{}},"0.1.2":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"0.1.2","homepage":"https://github.com/jesusabdullah/node-ecstatic","repository":{"type":"git","url":"git@github.com:jesusabdullah/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"keywords":["static","web","server","files","mime","middleware"],"engines":{"node":"*"},"dependencies":{"mime":"1.2.x","ent":"0.0.x"},"devDependencies":{"tap":"0.0.x","request":"2.2.x","express":"2.5.x","union":"0.1.x"},"_npmUser":{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},"_id":"ecstatic@0.1.2","_engineSupported":true,"_npmVersion":"1.1.0-beta-4","_nodeVersion":"v0.6.6","_defaultsLoaded":true,"dist":{"shasum":"ec08a11241daa293a9fc64f6614e9b2bc0e6a188","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-0.1.2.tgz"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"}],"directories":{}},"0.1.2-1":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"0.1.2-1","homepage":"https://github.com/jesusabdullah/node-ecstatic","repository":{"type":"git","url":"git@github.com:jesusabdullah/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"keywords":["static","web","server","files","mime","middleware"],"engines":{"node":"*"},"dependencies":{"mime":"1.2.x","ent":"0.0.x"},"devDependencies":{"tap":"0.0.x","request":"2.2.x","express":"2.5.x","union":"0.1.x"},"_npmUser":{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},"_id":"ecstatic@0.1.2-1","_engineSupported":true,"_npmVersion":"1.1.0-beta-4","_nodeVersion":"v0.6.6","_defaultsLoaded":true,"dist":{"shasum":"8a147e313af9eeca2ffd094b7e3b8c6e0db2e255","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-0.1.2-1.tgz"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"}],"directories":{}},"0.1.4":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"0.1.4","homepage":"https://github.com/jesusabdullah/node-ecstatic","repository":{"type":"git","url":"git@github.com:jesusabdullah/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"keywords":["static","web","server","files","mime","middleware"],"engines":{"node":"*"},"dependencies":{"mime":"1.2.x","ent":"0.0.x"},"devDependencies":{"tap":"0.0.x","request":"2.2.x","express":"2.5.x","union":"0.1.x"},"_npmUser":{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},"_id":"ecstatic@0.1.4","optionalDependencies":{},"_engineSupported":true,"_npmVersion":"1.1.0-3","_nodeVersion":"v0.6.6","_defaultsLoaded":true,"dist":{"shasum":"dfb5543c8d964465243539b7e41e68234f8fc241","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-0.1.4.tgz"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"}],"directories":{}},"0.1.5":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"0.1.5","homepage":"https://github.com/jesusabdullah/node-ecstatic","repository":{"type":"git","url":"git@github.com:jesusabdullah/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"keywords":["static","web","server","files","mime","middleware"],"engines":{"node":"*"},"dependencies":{"mime":"1.2.5","ent":"0.0.x"},"devDependencies":{"tap":"0.0.x","request":"2.2.x","express":"2.5.x","union":"0.1.x"},"_npmUser":{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},"_id":"ecstatic@0.1.5","optionalDependencies":{},"_engineSupported":true,"_npmVersion":"1.1.0-3","_nodeVersion":"v0.6.10","_defaultsLoaded":true,"dist":{"shasum":"1a52a8148d698602e28b53e8837d1ef69d19dae4","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-0.1.5.tgz"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"}],"directories":{}},"0.1.6":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"0.1.6","homepage":"https://github.com/jesusabdullah/node-ecstatic","repository":{"type":"git","url":"git@github.com:jesusabdullah/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"keywords":["static","web","server","files","mime","middleware"],"engines":{"node":"*"},"dependencies":{"mime":"1.2.5","ent":"0.0.x"},"devDependencies":{"tap":"0.0.x","request":"2.2.x","express":"2.5.x","union":"0.1.x"},"_npmUser":{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},"_id":"ecstatic@0.1.6","optionalDependencies":{},"_engineSupported":true,"_npmVersion":"1.1.14","_nodeVersion":"v0.6.14","_defaultsLoaded":true,"dist":{"shasum":"57c8a4273576260f72a522e2fac555764cada0a5","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-0.1.6.tgz"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"}],"directories":{}},"0.1.7":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"0.1.7","homepage":"https://github.com/jesusabdullah/node-ecstatic","repository":{"type":"git","url":"git@github.com:jesusabdullah/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"keywords":["static","web","server","files","mime","middleware"],"engines":{"node":"*"},"dependencies":{"mime":"1.2.5","ent":"0.0.x"},"devDependencies":{"tap":"0.0.x","request":"2.2.x","express":"2.5.x","union":"0.1.x"},"_id":"ecstatic@0.1.7","dist":{"shasum":"b2210568789c029f610ea4e00395bbaf62201034","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-0.1.7.tgz"},"_npmVersion":"1.1.59","_npmUser":{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"}],"directories":{}},"0.3.0":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"0.3.0","homepage":"https://github.com/jesusabdullah/node-ecstatic","repository":{"type":"git","url":"git@github.com:jesusabdullah/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"keywords":["static","web","server","files","mime","middleware"],"engines":{"node":"*"},"dependencies":{"mime":"1.2.7","ent":"0.0.x"},"devDependencies":{"tap":"0.3.x","request":"2.12.x","express":"3.0.x","union":"0.3.x","mkdirp":"0.3.x"},"_id":"ecstatic@0.3.0","dist":{"shasum":"b427cd9926825939a9fdd00cc9846dd84a933934","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-0.3.0.tgz"},"_npmVersion":"1.1.59","_npmUser":{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"}],"directories":{}},"0.3.1":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"0.3.1","homepage":"https://github.com/jesusabdullah/node-ecstatic","repository":{"type":"git","url":"git@github.com:jesusabdullah/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"keywords":["static","web","server","files","mime","middleware"],"engines":{"node":"*"},"dependencies":{"mime":"1.2.7","ent":"0.0.x"},"devDependencies":{"tap":"0.3.x","request":"2.12.x","express":"3.0.x","union":"0.3.x","mkdirp":"0.3.x"},"_id":"ecstatic@0.3.1","dist":{"shasum":"41d25aa41e04dd8929e07c12ee2bf6e439ef8869","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-0.3.1.tgz"},"_npmVersion":"1.1.69","_npmUser":{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"}],"directories":{}},"0.3.2":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"0.3.2","homepage":"https://github.com/jesusabdullah/node-ecstatic","repository":{"type":"git","url":"git@github.com:jesusabdullah/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"bin":{"ecstatic":"./lib/ecstatic.js"},"keywords":["static","web","server","files","mime","middleware"],"engines":{"node":"*"},"dependencies":{"mime":"1.2.7","ent":"0.0.x","optimist":"~0.3.5"},"devDependencies":{"tap":"0.3.x","request":"2.12.x","express":"3.0.x","union":"0.3.x","mkdirp":"0.3.x"},"_id":"ecstatic@0.3.2","dist":{"shasum":"f12edc2196f52921680a20073b2384b89e133580","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-0.3.2.tgz"},"_npmVersion":"1.2.0","_npmUser":{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"}],"directories":{}},"0.4.0":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"0.4.0","homepage":"https://github.com/jesusabdullah/node-ecstatic","repository":{"type":"git","url":"git@github.com:jesusabdullah/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"bin":{"ecstatic":"./lib/ecstatic.js"},"keywords":["static","web","server","files","mime","middleware"],"dependencies":{"mime":"1.2.7","ent":"0.0.x","optimist":"~0.3.5"},"devDependencies":{"tap":"0.3.x","request":"2.12.x","express":"3.0.x","union":"0.3.x","mkdirp":"0.3.x"},"_id":"ecstatic@0.4.0","dist":{"shasum":"9e97fefe8454f52995b6561e60a40d7a5631ad75","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-0.4.0.tgz"},"_npmVersion":"1.2.0","_npmUser":{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"}],"directories":{}},"0.4.1":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"0.4.1","homepage":"https://github.com/jesusabdullah/node-ecstatic","repository":{"type":"git","url":"git@github.com:jesusabdullah/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"bin":{"ecstatic":"./lib/ecstatic.js"},"keywords":["static","web","server","files","mime","middleware"],"dependencies":{"mime":"1.2.7","ent":"0.0.x","optimist":"~0.3.5"},"devDependencies":{"tap":"0.3.x","request":"2.12.x","express":"3.0.x","union":"0.3.x","mkdirp":"0.3.x"},"_id":"ecstatic@0.4.1","dist":{"shasum":"1c8070ea479b2603a3619647b1b9c6a3c0e1dff8","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-0.4.1.tgz"},"_from":".","_npmVersion":"1.2.11","_npmUser":{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"}],"directories":{}},"0.4.2":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"0.4.2","homepage":"https://github.com/jesusabdullah/node-ecstatic","repository":{"type":"git","url":"git@github.com:jesusabdullah/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"bin":{"ecstatic":"./lib/ecstatic.js"},"keywords":["static","web","server","files","mime","middleware"],"dependencies":{"mime":"1.2.7","ent":"0.0.x","optimist":"~0.3.5"},"devDependencies":{"tap":"0.3.x","request":"2.12.x","express":"3.0.x","union":"0.3.x","mkdirp":"0.3.x"},"_id":"ecstatic@0.4.2","dist":{"shasum":"d702300daacf66ac5f5eba79cb2a0182103cf315","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-0.4.2.tgz"},"_from":".","_npmVersion":"1.2.11","_npmUser":{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"}],"directories":{}},"0.4.3":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"0.4.3","homepage":"https://github.com/jesusabdullah/node-ecstatic","repository":{"type":"git","url":"git@github.com:jesusabdullah/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"bin":{"ecstatic":"./lib/ecstatic.js"},"keywords":["static","web","server","files","mime","middleware"],"dependencies":{"mime":"1.2.7","ent":"0.0.x","optimist":"~0.3.5"},"devDependencies":{"tap":"0.3.x","request":"2.12.x","express":"3.0.x","union":"0.3.x","mkdirp":"0.3.x"},"_id":"ecstatic@0.4.3","dist":{"shasum":"8ed9951c18fd57ab20665d692a5fdfdf809434f6","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-0.4.3.tgz"},"_from":".","_npmVersion":"1.2.18","_npmUser":{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"}],"directories":{}},"0.4.4":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"0.4.4","homepage":"https://github.com/jesusabdullah/node-ecstatic","repository":{"type":"git","url":"git@github.com:jesusabdullah/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"bin":{"ecstatic":"./lib/ecstatic.js"},"keywords":["static","web","server","files","mime","middleware"],"dependencies":{"mime":"1.2.x","ent":"0.0.x","optimist":"~0.3.5"},"devDependencies":{"tap":"0.3.x","request":"2.12.x","express":"3.0.x","union":"0.3.x","mkdirp":"0.3.x"},"_id":"ecstatic@0.4.4","dist":{"shasum":"9390169a8d7a3e4453b67d3eb35a36197b5bb5fc","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-0.4.4.tgz"},"_from":".","_npmVersion":"1.2.18","_npmUser":{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"}],"directories":{}},"0.4.5":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"0.4.5","homepage":"https://github.com/jesusabdullah/node-ecstatic","repository":{"type":"git","url":"git@github.com:jesusabdullah/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"bin":{"ecstatic":"./lib/ecstatic.js"},"keywords":["static","web","server","files","mime","middleware"],"dependencies":{"mime":"1.2.x","ent":"0.0.x","optimist":"~0.3.5"},"devDependencies":{"tap":"0.3.x","request":"2.12.x","express":"3.0.x","union":"0.3.x","mkdirp":"0.3.x"},"_id":"ecstatic@0.4.5","dist":{"shasum":"6a5171f8754801075d8190762c5bfc738537349c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-0.4.5.tgz"},"_from":".","_npmVersion":"1.2.18","_npmUser":{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"}],"directories":{}},"0.4.6":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"0.4.6","homepage":"https://github.com/jesusabdullah/node-ecstatic","repository":{"type":"git","url":"git@github.com:jesusabdullah/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"bin":{"ecstatic":"./lib/ecstatic.js"},"keywords":["static","web","server","files","mime","middleware"],"dependencies":{"mime":"1.2.x","ent":"0.0.x","optimist":"~0.3.5"},"devDependencies":{"tap":"0.3.x","request":"2.12.x","express":"3.0.x","union":"0.3.x","mkdirp":"0.3.x"},"bugs":{"url":"https://github.com/jesusabdullah/node-ecstatic/issues"},"_id":"ecstatic@0.4.6","dist":{"shasum":"8ae5610dc4df6da297e942e54d3667f13c6cc65c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-0.4.6.tgz"},"_from":".","_npmVersion":"1.3.5","_npmUser":{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"}],"directories":{}},"0.4.7":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"0.4.7","homepage":"https://github.com/jesusabdullah/node-ecstatic","repository":{"type":"git","url":"git@github.com:jesusabdullah/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"bin":{"ecstatic":"./lib/ecstatic.js"},"keywords":["static","web","server","files","mime","middleware"],"dependencies":{"mime":"1.2.x","ent":"0.0.x","optimist":"~0.3.5"},"devDependencies":{"tap":"0.3.x","request":"2.12.x","express":"3.0.x","union":"0.3.x","mkdirp":"0.3.x"},"bugs":{"url":"https://github.com/jesusabdullah/node-ecstatic/issues"},"_id":"ecstatic@0.4.7","dist":{"shasum":"c20e460260651621d64cad1b78d065d06ec24b5e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-0.4.7.tgz"},"_from":".","_npmVersion":"1.3.5","_npmUser":{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"}],"directories":{}},"0.4.8":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"0.4.8","homepage":"https://github.com/jesusabdullah/node-ecstatic","repository":{"type":"git","url":"git@github.com:jesusabdullah/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"bin":{"ecstatic":"./lib/ecstatic.js"},"keywords":["static","web","server","files","mime","middleware"],"dependencies":{"mime":"1.2.x","ent":"0.0.x","optimist":"~0.3.5"},"devDependencies":{"tap":"0.3.x","request":"2.12.x","express":"3.0.x","union":"0.3.x","mkdirp":"0.3.x"},"bugs":{"url":"https://github.com/jesusabdullah/node-ecstatic/issues"},"_id":"ecstatic@0.4.8","dist":{"shasum":"6aa6c8755a1558301415e105a57ebf2cb81a5710","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-0.4.8.tgz"},"_from":".","_npmVersion":"1.3.5","_npmUser":{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"}],"directories":{}},"0.4.9":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"0.4.9","homepage":"https://github.com/jesusabdullah/node-ecstatic","repository":{"type":"git","url":"git@github.com:jesusabdullah/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"bin":{"ecstatic":"./lib/ecstatic.js"},"keywords":["static","web","server","files","mime","middleware"],"dependencies":{"mime":"1.2.x","ent":"0.0.x","optimist":"~0.3.5"},"devDependencies":{"tap":"0.3.x","request":"2.12.x","express":"3.0.x","union":"0.3.x","mkdirp":"0.3.x"},"bugs":{"url":"https://github.com/jesusabdullah/node-ecstatic/issues"},"_id":"ecstatic@0.4.9","dist":{"shasum":"00c6dca17a685cf1dbe80c89e83437733580113e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-0.4.9.tgz"},"_from":".","_npmVersion":"1.3.5","_npmUser":{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"}],"directories":{}},"0.4.10":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"0.4.10","homepage":"https://github.com/jesusabdullah/node-ecstatic","repository":{"type":"git","url":"git@github.com:jesusabdullah/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"bin":{"ecstatic":"./lib/ecstatic.js"},"keywords":["static","web","server","files","mime","middleware"],"dependencies":{"mime":"1.2.x","ent":"0.0.x","optimist":"~0.3.5"},"devDependencies":{"tap":"0.3.x","request":"2.12.x","express":"3.0.x","union":"0.3.x","mkdirp":"0.3.x"},"bugs":{"url":"https://github.com/jesusabdullah/node-ecstatic/issues"},"_id":"ecstatic@0.4.10","dist":{"shasum":"885a88c7ead0c4d8f3f2b321b25a8d082eb167f0","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-0.4.10.tgz"},"_from":".","_npmVersion":"1.3.5","_npmUser":{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"}],"directories":{}},"0.4.11":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"0.4.11","homepage":"https://github.com/jesusabdullah/node-ecstatic","repository":{"type":"git","url":"git@github.com:jesusabdullah/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"bin":{"ecstatic":"./lib/ecstatic.js"},"keywords":["static","web","server","files","mime","middleware"],"dependencies":{"mime":"1.2.x","ent":"0.0.x","optimist":"~0.3.5"},"devDependencies":{"tap":"0.3.x","request":"2.12.x","express":"3.0.x","union":"0.3.x","mkdirp":"0.3.x"},"bugs":{"url":"https://github.com/jesusabdullah/node-ecstatic/issues"},"_id":"ecstatic@0.4.11","dist":{"shasum":"171149b7784edde98bb11e804c30713739a974ad","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-0.4.11.tgz"},"_from":".","_npmVersion":"1.3.5","_npmUser":{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"}],"directories":{}},"0.4.12":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"0.4.12","homepage":"https://github.com/jesusabdullah/node-ecstatic","repository":{"type":"git","url":"git@github.com:jesusabdullah/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"bin":{"ecstatic":"./lib/ecstatic.js"},"keywords":["static","web","server","files","mime","middleware"],"dependencies":{"mime":"1.2.x","ent":"0.0.x","optimist":"~0.3.5"},"devDependencies":{"tap":"0.3.x","request":"2.12.x","express":"3.0.x","union":"0.3.x","mkdirp":"0.3.x"},"bugs":{"url":"https://github.com/jesusabdullah/node-ecstatic/issues"},"_id":"ecstatic@0.4.12","dist":{"shasum":"42d8a5a18d5a6c7a6115de9bda616fc1e32e01d1","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-0.4.12.tgz"},"_from":".","_npmVersion":"1.3.11","_npmUser":{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"}],"directories":{}},"0.4.13":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"0.4.13","homepage":"https://github.com/jesusabdullah/node-ecstatic","repository":{"type":"git","url":"git@github.com:jesusabdullah/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"bin":{"ecstatic":"./lib/ecstatic.js"},"keywords":["static","web","server","files","mime","middleware"],"dependencies":{"mime":"1.2.x","ent":"0.0.x","optimist":"~0.3.5"},"devDependencies":{"tap":"0.3.x","request":"2.12.x","express":"3.0.x","union":"0.3.x","mkdirp":"0.3.x"},"bugs":{"url":"https://github.com/jesusabdullah/node-ecstatic/issues"},"_id":"ecstatic@0.4.13","dist":{"shasum":"9cb6eaffe211b9c84efb3f553cde2c3002717b29","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-0.4.13.tgz"},"_from":".","_npmVersion":"1.3.14","_npmUser":{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"}],"directories":{}},"0.5.0":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"0.5.0","homepage":"https://github.com/jesusabdullah/node-ecstatic","repository":{"type":"git","url":"git@github.com:jesusabdullah/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"bin":{"ecstatic":"./lib/ecstatic.js"},"keywords":["static","web","server","files","mime","middleware"],"dependencies":{"mime":"1.2.x","ent":"0.0.x","minimist":"~0.0.5"},"devDependencies":{"tap":"0.3.x","request":"2.12.x","express":"3.0.x","union":"0.3.x","mkdirp":"0.3.x"},"bugs":{"url":"https://github.com/jesusabdullah/node-ecstatic/issues"},"_id":"ecstatic@0.5.0","dist":{"shasum":"cb4919943cef8287d4023e2479807f240fe96ce5","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-0.5.0.tgz"},"_from":".","_npmVersion":"1.3.14","_npmUser":{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"}],"directories":{}},"0.5.1":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"0.5.1","homepage":"https://github.com/jesusabdullah/node-ecstatic","repository":{"type":"git","url":"git@github.com:jesusabdullah/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"bin":{"ecstatic":"./lib/ecstatic.js"},"keywords":["static","web","server","files","mime","middleware"],"dependencies":{"mime":"1.2.x","ent":"0.0.x","minimist":"~0.0.5"},"devDependencies":{"tap":"0.3.x","request":"2.12.x","express":"3.0.x","union":"0.3.x","mkdirp":"0.3.x"},"bugs":{"url":"https://github.com/jesusabdullah/node-ecstatic/issues"},"_id":"ecstatic@0.5.1","dist":{"shasum":"ede7fd24f02f9010b7470525bbdb2dbc5df23eb9","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-0.5.1.tgz"},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"}],"directories":{}},"0.5.2":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"0.5.2","homepage":"https://github.com/jesusabdullah/node-ecstatic","repository":{"type":"git","url":"git@github.com:jesusabdullah/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"bin":{"ecstatic":"./lib/ecstatic.js"},"keywords":["static","web","server","files","mime","middleware"],"dependencies":{"mime":"1.2.x","ent":"0.0.x","minimist":"~0.0.5"},"devDependencies":{"tap":"0.3.x","request":"2.12.x","express":"3.0.x","union":"0.3.x","mkdirp":"0.3.x"},"bugs":{"url":"https://github.com/jesusabdullah/node-ecstatic/issues"},"_id":"ecstatic@0.5.2","_shasum":"d61e1b3a215b87f83af73c02e370f54ce478b548","_from":".","_npmVersion":"1.4.10","_npmUser":{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"}],"dist":{"shasum":"d61e1b3a215b87f83af73c02e370f54ce478b548","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-0.5.2.tgz"},"directories":{}},"0.5.3":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"0.5.3","homepage":"https://github.com/jesusabdullah/node-ecstatic","repository":{"type":"git","url":"git@github.com:jesusabdullah/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"bin":{"ecstatic":"./lib/ecstatic.js"},"keywords":["static","web","server","files","mime","middleware"],"dependencies":{"mime":"1.2.x","ent":"0.0.x","minimist":"~0.0.5"},"devDependencies":{"tap":"0.3.x","request":"2.12.x","express":"3.0.x","union":"0.3.x","mkdirp":"0.3.x"},"bugs":{"url":"https://github.com/jesusabdullah/node-ecstatic/issues"},"_id":"ecstatic@0.5.3","_shasum":"105825e90d4dea0339b24f1cc2c85fdde63a1fe0","_from":".","_npmVersion":"1.4.10","_npmUser":{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"}],"dist":{"shasum":"105825e90d4dea0339b24f1cc2c85fdde63a1fe0","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-0.5.3.tgz"},"directories":{}},"0.5.4":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"0.5.4","homepage":"https://github.com/jesusabdullah/node-ecstatic","repository":{"type":"git","url":"git@github.com:jesusabdullah/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"bin":{"ecstatic":"./lib/ecstatic.js"},"keywords":["static","web","server","files","mime","middleware"],"dependencies":{"mime":"1.2.x","ent":"0.0.x","minimist":"~0.0.5"},"devDependencies":{"tap":"0.3.x","request":"2.12.x","express":"3.0.x","union":"0.3.x","mkdirp":"0.3.x"},"gitHead":"a96a94c626aed5edc2fb35b10fb99aa53ebe4b25","bugs":{"url":"https://github.com/jesusabdullah/node-ecstatic/issues"},"_id":"ecstatic@0.5.4","_shasum":"68bb8a4633e924dc9c3b2a5a0aa8d7d84cf2b3f2","_from":".","_npmVersion":"1.4.16","_npmUser":{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"}],"dist":{"shasum":"68bb8a4633e924dc9c3b2a5a0aa8d7d84cf2b3f2","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-0.5.4.tgz"},"directories":{}},"0.5.5":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"0.5.5","homepage":"https://github.com/jesusabdullah/node-ecstatic","repository":{"type":"git","url":"git@github.com:jesusabdullah/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"bin":{"ecstatic":"./lib/ecstatic.js"},"keywords":["static","web","server","files","mime","middleware"],"dependencies":{"he":"~0.4.1","mime":"1.2.x","minimist":"~0.0.5"},"devDependencies":{"tap":"0.3.x","request":"2.12.x","express":"3.0.x","union":"0.3.x","mkdirp":"0.3.x"},"gitHead":"afa79437ce7e357ded4d4a9e2eea5498bdc0cd66","bugs":{"url":"https://github.com/jesusabdullah/node-ecstatic/issues"},"_id":"ecstatic@0.5.5","_shasum":"5e3da247158a1c59e2a205ba1ce303a8df2e28b2","_from":".","_npmVersion":"2.0.2","_nodeVersion":"0.8.23","_npmUser":{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"}],"dist":{"shasum":"5e3da247158a1c59e2a205ba1ce303a8df2e28b2","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-0.5.5.tgz"},"directories":{}},"0.5.6":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"0.5.6","homepage":"https://github.com/jesusabdullah/node-ecstatic","repository":{"type":"git","url":"git@github.com:jesusabdullah/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"bin":{"ecstatic":"./lib/ecstatic.js"},"keywords":["static","web","server","files","mime","middleware"],"dependencies":{"he":"~0.4.1","mime":"1.2.x","minimist":"~0.0.5"},"devDependencies":{"tap":"0.3.x","request":"2.12.x","express":"3.0.x","union":"0.3.x","mkdirp":"0.3.x"},"gitHead":"f17059bdeb8906dada6d2ba7c2ead49b988e22b0","bugs":{"url":"https://github.com/jesusabdullah/node-ecstatic/issues"},"_id":"ecstatic@0.5.6","_shasum":"af3caf2357b289be4bf00dba9cb2414024ddaf88","_from":".","_npmVersion":"2.0.2","_nodeVersion":"0.8.23","_npmUser":{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"}],"dist":{"shasum":"af3caf2357b289be4bf00dba9cb2414024ddaf88","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-0.5.6.tgz"},"directories":{}},"0.5.7":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"0.5.7","homepage":"https://github.com/jesusabdullah/node-ecstatic","repository":{"type":"git","url":"git@github.com:jesusabdullah/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"bin":{"ecstatic":"./lib/ecstatic.js"},"keywords":["static","web","server","files","mime","middleware"],"dependencies":{"he":"~0.4.1","mime":"1.2.x","minimist":"~0.0.5"},"devDependencies":{"tap":"0.3.x","request":"2.12.x","express":"3.0.x","union":"0.3.x","mkdirp":"0.3.x"},"gitHead":"73632f844d6d020b4f192d0621a46b7c9ff71f27","bugs":{"url":"https://github.com/jesusabdullah/node-ecstatic/issues"},"_id":"ecstatic@0.5.7","_shasum":"e89eeffd2fe94b518d7250d301326f57b75b804b","_from":".","_npmVersion":"2.0.2","_nodeVersion":"0.8.23","_npmUser":{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"}],"dist":{"shasum":"e89eeffd2fe94b518d7250d301326f57b75b804b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-0.5.7.tgz"},"directories":{}},"0.5.8":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"0.5.8","homepage":"https://github.com/jesusabdullah/node-ecstatic","repository":{"type":"git","url":"git@github.com:jesusabdullah/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"bin":{"ecstatic":"./lib/ecstatic.js"},"keywords":["static","web","server","files","mime","middleware"],"dependencies":{"he":"^0.5.0","mime":"^1.2.11","minimist":"^1.1.0"},"devDependencies":{"tap":"^0.4.13","request":"^2.49.0","express":"^3.0.6","union":"^0.3.8","mkdirp":"^0.5.0"},"gitHead":"35ab85c0ab4a1781b09cb30545313f21bed2ddce","bugs":{"url":"https://github.com/jesusabdullah/node-ecstatic/issues"},"_id":"ecstatic@0.5.8","_shasum":"819163c3d1e8c73d4e36e268626fea68dd7c398d","_from":".","_npmVersion":"2.0.2","_nodeVersion":"0.8.23","_npmUser":{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"}],"dist":{"shasum":"819163c3d1e8c73d4e36e268626fea68dd7c398d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-0.5.8.tgz"},"directories":{}},"0.6.0":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"0.6.0","homepage":"https://github.com/jfhbrook/node-ecstatic","repository":{"type":"git","url":"git@github.com:jfhbrook/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"bin":{"ecstatic":"./lib/ecstatic.js"},"keywords":["static","web","server","files","mime","middleware"],"dependencies":{"he":"^0.5.0","mime":"^1.2.11","minimist":"^1.1.0"},"devDependencies":{"tap":"^0.4.13","request":"^2.49.0","express":"^3.0.6","union":"^0.3.8","mkdirp":"^0.5.0"},"gitHead":"d434ead1194a890338974209cc3fc104ae88ed02","bugs":{"url":"https://github.com/jfhbrook/node-ecstatic/issues"},"_id":"ecstatic@0.6.0","_shasum":"c89db8254fc23eda9fa43f59df6ffc253b26f72e","_from":".","_npmVersion":"2.1.17","_nodeVersion":"0.10.35","_npmUser":{"name":"jfhbrook","email":"josh.holbrook@gmail.com"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},{"name":"jfhbrook","email":"josh.holbrook@gmail.com"}],"dist":{"shasum":"c89db8254fc23eda9fa43f59df6ffc253b26f72e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-0.6.0.tgz"},"directories":{}},"0.6.1":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"0.6.1","homepage":"https://github.com/jfhbrook/node-ecstatic","repository":{"type":"git","url":"git@github.com:jfhbrook/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"bin":{"ecstatic":"./lib/ecstatic.js"},"keywords":["static","web","server","files","mime","middleware"],"dependencies":{"he":"^0.5.0","mime":"^1.2.11","minimist":"^1.1.0"},"devDependencies":{"tap":"^0.4.13","request":"^2.49.0","express":"^3.0.6","union":"^0.3.8","mkdirp":"^0.5.0"},"gitHead":"03efa86cecd6cbdedcbcaa70b1f1856e8cadf840","bugs":{"url":"https://github.com/jfhbrook/node-ecstatic/issues"},"_id":"ecstatic@0.6.1","_shasum":"cc2a25256c122e359631c18f65af7c870338ca00","_from":".","_npmVersion":"2.1.17","_nodeVersion":"0.10.35","_npmUser":{"name":"jfhbrook","email":"josh.holbrook@gmail.com"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},{"name":"jfhbrook","email":"josh.holbrook@gmail.com"}],"dist":{"shasum":"cc2a25256c122e359631c18f65af7c870338ca00","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-0.6.1.tgz"},"directories":{}},"0.7.0":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"0.7.0","homepage":"https://github.com/jfhbrook/node-ecstatic","repository":{"type":"git","url":"git@github.com:jfhbrook/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"bin":{"ecstatic":"./lib/ecstatic.js"},"keywords":["static","web","server","files","mime","middleware"],"dependencies":{"he":"^0.5.0","mime":"^1.2.11","minimist":"^1.1.0","url-join":"0.0.1"},"devDependencies":{"tap":"^0.4.13","request":"^2.49.0","express":"^3.0.6","union":"^0.3.8","mkdirp":"^0.5.0"},"gitHead":"9fc15276bcc316f066ccd737046bc303d6c5e15f","bugs":{"url":"https://github.com/jfhbrook/node-ecstatic/issues"},"_id":"ecstatic@0.7.0","_shasum":"6773e7569d652c3a85237ae17a2c918dc4a02d47","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"jfhbrook","email":"josh.holbrook@gmail.com"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},{"name":"jfhbrook","email":"josh.holbrook@gmail.com"}],"dist":{"shasum":"6773e7569d652c3a85237ae17a2c918dc4a02d47","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-0.7.0.tgz"},"directories":{}},"0.7.1":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"0.7.1","homepage":"https://github.com/jfhbrook/node-ecstatic","repository":{"type":"git","url":"git@github.com:jfhbrook/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"bin":{"ecstatic":"./lib/ecstatic.js"},"keywords":["static","web","server","files","mime","middleware"],"dependencies":{"he":"^0.5.0","mime":"^1.2.11","minimist":"^1.1.0","url-join":"0.0.1"},"devDependencies":{"tap":"^0.4.13","request":"^2.49.0","express":"^3.0.6","union":"^0.3.8","mkdirp":"^0.5.0"},"gitHead":"40376fbdb0557f665cb7280ef0995499d078d14e","bugs":{"url":"https://github.com/jfhbrook/node-ecstatic/issues"},"_id":"ecstatic@0.7.1","_shasum":"5f0000f18966ea358a707d3f5db14f1d1ac6cbac","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"jfhbrook","email":"josh.holbrook@gmail.com"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},{"name":"jfhbrook","email":"josh.holbrook@gmail.com"}],"dist":{"shasum":"5f0000f18966ea358a707d3f5db14f1d1ac6cbac","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-0.7.1.tgz"},"directories":{}},"0.7.2":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"0.7.2","homepage":"https://github.com/jfhbrook/node-ecstatic","repository":{"type":"git","url":"git@github.com:jfhbrook/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"bin":{"ecstatic":"./lib/ecstatic.js"},"keywords":["static","web","server","files","mime","middleware"],"dependencies":{"he":"^0.5.0","mime":"^1.2.11","minimist":"^1.1.0","url-join":"0.0.1"},"devDependencies":{"tap":"^0.4.13","request":"^2.49.0","express":"^3.0.6","union":"^0.3.8","mkdirp":"^0.5.0"},"gitHead":"04587b37554f4e43d4b949f81167bf1deb83a5f7","bugs":{"url":"https://github.com/jfhbrook/node-ecstatic/issues"},"_id":"ecstatic@0.7.2","_shasum":"0eecbd9edbca0c6346049ea3a874c2f8ed50f2c2","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"jfhbrook","email":"josh.holbrook@gmail.com"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},{"name":"jfhbrook","email":"josh.holbrook@gmail.com"}],"dist":{"shasum":"0eecbd9edbca0c6346049ea3a874c2f8ed50f2c2","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-0.7.2.tgz"},"directories":{}},"0.7.3":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"0.7.3","homepage":"https://github.com/jfhbrook/node-ecstatic","repository":{"type":"git","url":"git@github.com:jfhbrook/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"bin":{"ecstatic":"./lib/ecstatic.js"},"keywords":["static","web","server","files","mime","middleware"],"dependencies":{"he":"^0.5.0","mime":"^1.2.11","minimist":"^1.1.0","url-join":"0.0.1"},"devDependencies":{"tap":"^0.4.13","request":"^2.49.0","express":"^3.0.6","union":"^0.3.8","mkdirp":"^0.5.0"},"gitHead":"73ccd3bb24cdc0e2ab734a79733d76654cc5049d","bugs":{"url":"https://github.com/jfhbrook/node-ecstatic/issues"},"_id":"ecstatic@0.7.3","_shasum":"15876b383b17cce321776c649008bcc75cdca2d2","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"jfhbrook","email":"josh.holbrook@gmail.com"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},{"name":"jfhbrook","email":"josh.holbrook@gmail.com"}],"dist":{"shasum":"15876b383b17cce321776c649008bcc75cdca2d2","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-0.7.3.tgz"},"directories":{}},"0.7.4":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"0.7.4","homepage":"https://github.com/jfhbrook/node-ecstatic","repository":{"type":"git","url":"git@github.com:jfhbrook/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"bin":{"ecstatic":"./lib/ecstatic.js"},"keywords":["static","web","server","files","mime","middleware"],"dependencies":{"he":"^0.5.0","mime":"^1.2.11","minimist":"^1.1.0","url-join":"0.0.1"},"devDependencies":{"tap":"^0.4.13","request":"^2.49.0","express":"^3.0.6","union":"^0.3.8","mkdirp":"^0.5.0"},"gitHead":"e94aad6b090126f2195cf3635340e2d18190beba","bugs":{"url":"https://github.com/jfhbrook/node-ecstatic/issues"},"_id":"ecstatic@0.7.4","_shasum":"296aef6df77e7e90be3b06269058f024b1b27a18","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"jfhbrook","email":"josh.holbrook@gmail.com"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},{"name":"jfhbrook","email":"josh.holbrook@gmail.com"}],"dist":{"shasum":"296aef6df77e7e90be3b06269058f024b1b27a18","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-0.7.4.tgz"},"directories":{}},"0.7.5":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"0.7.5","homepage":"https://github.com/jfhbrook/node-ecstatic","repository":{"type":"git","url":"git@github.com:jfhbrook/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"bin":{"ecstatic":"./lib/ecstatic.js"},"keywords":["static","web","server","files","mime","middleware"],"dependencies":{"he":"^0.5.0","mime":"^1.2.11","minimist":"^1.1.0","url-join":"0.0.1"},"devDependencies":{"tap":"^0.4.13","request":"^2.49.0","express":"^3.0.6","union":"^0.3.8","mkdirp":"^0.5.0"},"gitHead":"afd32622332869cbf480d63b3e1eeac661114418","bugs":{"url":"https://github.com/jfhbrook/node-ecstatic/issues"},"_id":"ecstatic@0.7.5","_shasum":"e9f45181e13bf495f8a2b3ec4fe587aabe6187b1","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"jfhbrook","email":"josh.holbrook@gmail.com"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},{"name":"jfhbrook","email":"josh.holbrook@gmail.com"}],"dist":{"shasum":"e9f45181e13bf495f8a2b3ec4fe587aabe6187b1","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-0.7.5.tgz"},"directories":{}},"0.7.6":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"0.7.6","homepage":"https://github.com/jfhbrook/node-ecstatic","repository":{"type":"git","url":"git@github.com:jfhbrook/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"bin":{"ecstatic":"./lib/ecstatic.js"},"keywords":["static","web","server","files","mime","middleware"],"dependencies":{"he":"^0.5.0","mime":"^1.2.11","minimist":"^1.1.0","url-join":"0.0.1"},"devDependencies":{"tap":"^0.4.13","request":"^2.49.0","express":"^3.0.6","union":"^0.3.8","mkdirp":"^0.5.0"},"gitHead":"43148d1f368ad117b4d65d31bd20f8aa53fecb9c","bugs":{"url":"https://github.com/jfhbrook/node-ecstatic/issues"},"_id":"ecstatic@0.7.6","_shasum":"cba2aabea46b8cd97f0160859713b70d28e6a022","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"jfhbrook","email":"josh.holbrook@gmail.com"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},{"name":"jfhbrook","email":"josh.holbrook@gmail.com"}],"dist":{"shasum":"cba2aabea46b8cd97f0160859713b70d28e6a022","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-0.7.6.tgz"},"directories":{}},"0.8.0":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"0.8.0","homepage":"https://github.com/jfhbrook/node-ecstatic","repository":{"type":"git","url":"git@github.com:jfhbrook/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"bin":{"ecstatic":"./lib/ecstatic.js"},"keywords":["static","web","server","files","mime","middleware"],"dependencies":{"he":"^0.5.0","mime":"^1.2.11","minimist":"^1.1.0","url-join":"0.0.1"},"devDependencies":{"eol":"^0.2.0","express":"^4.12.3","mkdirp":"^0.5.0","request":"^2.49.0","tap":"^1.0.3","union":"^0.4.4"},"license":"MIT","gitHead":"dfc66f4aadf04afcf78e72138b84750ab79ff950","bugs":{"url":"https://github.com/jfhbrook/node-ecstatic/issues"},"_id":"ecstatic@0.8.0","_shasum":"11bdfef8139ac2a4851a60608b814506de65aa48","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"jfhbrook","email":"josh.holbrook@gmail.com"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},{"name":"jfhbrook","email":"josh.holbrook@gmail.com"}],"dist":{"shasum":"11bdfef8139ac2a4851a60608b814506de65aa48","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-0.8.0.tgz"},"directories":{}},"1.0.0":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"1.0.0","homepage":"https://github.com/jfhbrook/node-ecstatic","repository":{"type":"git","url":"git+ssh://git@github.com/jfhbrook/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"bin":{"ecstatic":"./lib/ecstatic.js"},"keywords":["static","web","server","files","mime","middleware"],"dependencies":{"he":"^0.5.0","mime":"^1.2.11","minimist":"^1.1.0","url-join":"0.0.1"},"devDependencies":{"eol":"^0.2.0","express":"^4.12.3","mkdirp":"^0.5.0","request":"^2.49.0","tap":"^1.0.3","union":"^0.4.4"},"license":"MIT","gitHead":"6214f156bee131d1c399a05f3b31fb530bf81d56","bugs":{"url":"https://github.com/jfhbrook/node-ecstatic/issues"},"_id":"ecstatic@1.0.0","_shasum":"cc9ffc7868159d9e1c015d132dbf277e76e6eb60","_from":".","_npmVersion":"2.13.2","_nodeVersion":"0.10.37","_npmUser":{"name":"jfhbrook","email":"josh.holbrook@gmail.com"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},{"name":"jfhbrook","email":"josh.holbrook@gmail.com"}],"dist":{"shasum":"cc9ffc7868159d9e1c015d132dbf277e76e6eb60","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-1.0.0.tgz"},"directories":{}},"1.0.1":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"1.0.1","homepage":"https://github.com/jfhbrook/node-ecstatic","repository":{"type":"git","url":"git+ssh://git@github.com/jfhbrook/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"bin":{"ecstatic":"./lib/ecstatic.js"},"keywords":["static","web","server","files","mime","middleware"],"dependencies":{"he":"^0.5.0","mime":"^1.2.11","minimist":"^1.1.0","url-join":"0.0.1"},"devDependencies":{"eol":"^0.2.0","express":"^4.12.3","mkdirp":"^0.5.0","request":"^2.49.0","tap":"^1.0.3","union":"^0.4.4"},"license":"MIT","gitHead":"d6126a328d99b9d0847acb8c27947bddd16a6a52","bugs":{"url":"https://github.com/jfhbrook/node-ecstatic/issues"},"_id":"ecstatic@1.0.1","_shasum":"fbf53e2d77b6f4d51f2379cf5bc4a4d7f36416d5","_from":".","_npmVersion":"2.14.5","_nodeVersion":"0.10.40","_npmUser":{"name":"jfhbrook","email":"josh.holbrook@gmail.com"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},{"name":"jfhbrook","email":"josh.holbrook@gmail.com"}],"dist":{"shasum":"fbf53e2d77b6f4d51f2379cf5bc4a4d7f36416d5","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-1.0.1.tgz"},"directories":{}},"1.1.0":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"1.1.0","homepage":"https://github.com/jfhbrook/node-ecstatic","repository":{"type":"git","url":"git+ssh://git@github.com/jfhbrook/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"bin":{"ecstatic":"./lib/ecstatic.js"},"keywords":["static","web","server","files","mime","middleware"],"dependencies":{"he":"^0.5.0","mime":"^1.2.11","minimist":"^1.1.0","url-join":"0.0.1"},"devDependencies":{"eol":"^0.2.0","express":"^4.12.3","mkdirp":"^0.5.0","request":"^2.49.0","tap":"^1.0.3","union":"^0.4.4"},"license":"MIT","gitHead":"a251068a94ac37cccc17757b7d7f398a8ab7868a","bugs":{"url":"https://github.com/jfhbrook/node-ecstatic/issues"},"_id":"ecstatic@1.1.0","_shasum":"dad65428fdaa0b333ae40e1db63f32e7acb28993","_from":".","_npmVersion":"2.14.5","_nodeVersion":"0.10.40","_npmUser":{"name":"jfhbrook","email":"josh.holbrook@gmail.com"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},{"name":"jfhbrook","email":"josh.holbrook@gmail.com"}],"dist":{"shasum":"dad65428fdaa0b333ae40e1db63f32e7acb28993","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-1.1.0.tgz"},"directories":{}},"1.1.1":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"1.1.1","homepage":"https://github.com/jfhbrook/node-ecstatic","repository":{"type":"git","url":"git+ssh://git@github.com/jfhbrook/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"bin":{"ecstatic":"./lib/ecstatic.js"},"keywords":["static","web","server","files","mime","middleware"],"dependencies":{"he":"^0.5.0","mime":"^1.2.11","minimist":"^1.1.0","url-join":"0.0.1"},"devDependencies":{"eol":"^0.2.0","express":"^4.12.3","mkdirp":"^0.5.0","request":"^2.49.0","tap":"^1.0.3","union":"^0.4.4"},"license":"MIT","gitHead":"70920b4812a9d6bb3a2727cb6295da72518cde6f","bugs":{"url":"https://github.com/jfhbrook/node-ecstatic/issues"},"_id":"ecstatic@1.1.1","_shasum":"3a824abe90e25792c0e3122d8a7da5217ae2aa2b","_from":".","_npmVersion":"2.14.5","_nodeVersion":"0.10.40","_npmUser":{"name":"jfhbrook","email":"josh.holbrook@gmail.com"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},{"name":"jfhbrook","email":"josh.holbrook@gmail.com"}],"dist":{"shasum":"3a824abe90e25792c0e3122d8a7da5217ae2aa2b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-1.1.1.tgz"},"directories":{}},"1.1.2":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"1.1.2","homepage":"https://github.com/jfhbrook/node-ecstatic","repository":{"type":"git","url":"git+ssh://git@github.com/jfhbrook/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"bin":{"ecstatic":"./lib/ecstatic.js"},"keywords":["static","web","server","files","mime","middleware"],"dependencies":{"he":"^0.5.0","mime":"^1.2.11","minimist":"^1.1.0","url-join":"0.0.1"},"devDependencies":{"eol":"^0.2.0","express":"^4.12.3","mkdirp":"^0.5.0","request":"^2.49.0","tap":"^1.0.3","union":"^0.4.4"},"license":"MIT","gitHead":"3a7d2e67b58e268cc2835eb8ab74f90f88b97c2f","bugs":{"url":"https://github.com/jfhbrook/node-ecstatic/issues"},"_id":"ecstatic@1.1.2","_shasum":"e6e417e4da943dc47027f6822b84538be8946524","_from":".","_npmVersion":"2.14.5","_nodeVersion":"0.10.40","_npmUser":{"name":"jfhbrook","email":"josh.holbrook@gmail.com"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},{"name":"jfhbrook","email":"josh.holbrook@gmail.com"}],"dist":{"shasum":"e6e417e4da943dc47027f6822b84538be8946524","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-1.1.2.tgz"},"directories":{}},"1.1.3":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"1.1.3","homepage":"https://github.com/jfhbrook/node-ecstatic","repository":{"type":"git","url":"git+ssh://git@github.com/jfhbrook/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"bin":{"ecstatic":"./lib/ecstatic.js"},"keywords":["static","web","server","files","mime","middleware"],"dependencies":{"he":"^0.5.0","mime":"^1.2.11","minimist":"^1.1.0","url-join":"0.0.1"},"devDependencies":{"eol":"^0.2.0","express":"^4.12.3","mkdirp":"^0.5.0","request":"^2.49.0","tap":"^1.0.3","union":"^0.4.4"},"license":"MIT","gitHead":"3102858ac2190a059ad4bf4ede888da092ce9c90","bugs":{"url":"https://github.com/jfhbrook/node-ecstatic/issues"},"_id":"ecstatic@1.1.3","_shasum":"7868a37d1ee852a4a943efb850c595b4b0efbac2","_from":".","_npmVersion":"2.14.5","_nodeVersion":"0.10.40","_npmUser":{"name":"jfhbrook","email":"josh.holbrook@gmail.com"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},{"name":"jfhbrook","email":"josh.holbrook@gmail.com"}],"dist":{"shasum":"7868a37d1ee852a4a943efb850c595b4b0efbac2","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-1.1.3.tgz"},"directories":{}},"1.2.0":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"1.2.0","homepage":"https://github.com/jfhbrook/node-ecstatic","repository":{"type":"git","url":"git+ssh://git@github.com/jfhbrook/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"bin":{"ecstatic":"./lib/ecstatic.js"},"keywords":["static","web","server","files","mime","middleware"],"dependencies":{"he":"^0.5.0","mime":"^1.2.11","minimist":"^1.1.0","url-join":"0.0.1"},"devDependencies":{"eol":"^0.2.0","express":"^4.12.3","mkdirp":"^0.5.0","request":"^2.49.0","tap":"^1.0.3","union":"^0.4.4"},"license":"MIT","gitHead":"881f4b9e8df9c52178846c79a6f32567fe0def15","bugs":{"url":"https://github.com/jfhbrook/node-ecstatic/issues"},"_id":"ecstatic@1.2.0","_shasum":"42f70c9220067549b1a1856635fe19a5ea78b222","_from":".","_npmVersion":"3.3.6","_nodeVersion":"4.2.1","_npmUser":{"name":"jfhbrook","email":"josh.holbrook@gmail.com"},"dist":{"shasum":"42f70c9220067549b1a1856635fe19a5ea78b222","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-1.2.0.tgz"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},{"name":"jfhbrook","email":"josh.holbrook@gmail.com"}],"directories":{}},"1.3.0":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"1.3.0","homepage":"https://github.com/jfhbrook/node-ecstatic","repository":{"type":"git","url":"git+ssh://git@github.com/jfhbrook/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"bin":{"ecstatic":"./lib/ecstatic.js"},"keywords":["static","web","server","files","mime","middleware"],"dependencies":{"he":"^0.5.0","mime":"^1.2.11","minimist":"^1.1.0","url-join":"0.0.1"},"devDependencies":{"eol":"^0.2.0","express":"^4.12.3","mkdirp":"^0.5.0","request":"^2.49.0","tap":"^1.0.3","union":"^0.4.4"},"license":"MIT","gitHead":"2b23a92e33d17317a11158a550daeb76ecabc807","bugs":{"url":"https://github.com/jfhbrook/node-ecstatic/issues"},"_id":"ecstatic@1.3.0","_shasum":"0b08b13658d09b6b83a7f76f9beed5c8dfd2b348","_from":".","_npmVersion":"3.3.12","_nodeVersion":"4.2.1","_npmUser":{"name":"jfhbrook","email":"josh.holbrook@gmail.com"},"dist":{"shasum":"0b08b13658d09b6b83a7f76f9beed5c8dfd2b348","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-1.3.0.tgz"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},{"name":"jfhbrook","email":"josh.holbrook@gmail.com"}],"directories":{}},"1.3.1":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"1.3.1","homepage":"https://github.com/jfhbrook/node-ecstatic","repository":{"type":"git","url":"git+ssh://git@github.com/jfhbrook/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"bin":{"ecstatic":"./lib/ecstatic.js"},"keywords":["static","web","server","files","mime","middleware"],"dependencies":{"he":"^0.5.0","mime":"^1.2.11","minimist":"^1.1.0","url-join":"0.0.1"},"devDependencies":{"eol":"^0.2.0","express":"^4.12.3","mkdirp":"^0.5.0","request":"^2.49.0","tap":"^1.0.3","union":"^0.4.4"},"license":"MIT","gitHead":"0151005ff234f80b78f672289e62b94941f68741","bugs":{"url":"https://github.com/jfhbrook/node-ecstatic/issues"},"_id":"ecstatic@1.3.1","_shasum":"99e33a0677e834170edd1eb8ca7aafd79472ecc0","_from":".","_npmVersion":"3.3.12","_nodeVersion":"4.2.1","_npmUser":{"name":"jfhbrook","email":"josh.holbrook@gmail.com"},"dist":{"shasum":"99e33a0677e834170edd1eb8ca7aafd79472ecc0","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-1.3.1.tgz"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},{"name":"jfhbrook","email":"josh.holbrook@gmail.com"}],"directories":{}},"1.4.0":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"1.4.0","homepage":"https://github.com/jfhbrook/node-ecstatic","repository":{"type":"git","url":"git+ssh://git@github.com/jfhbrook/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"bin":{"ecstatic":"./lib/ecstatic.js"},"keywords":["static","web","server","files","mime","middleware"],"dependencies":{"he":"^0.5.0","mime":"^1.2.11","minimist":"^1.1.0","url-join":"0.0.1"},"devDependencies":{"eol":"^0.2.0","express":"^4.12.3","mkdirp":"^0.5.0","request":"^2.49.0","tap":"^2.3.1","union":"^0.4.4"},"license":"MIT","gitHead":"39f21cdf1998e6169f127874f97fd9dc9efcfacc","bugs":{"url":"https://github.com/jfhbrook/node-ecstatic/issues"},"_id":"ecstatic@1.4.0","_shasum":"84a395ff80a919e68bc07a81fb2cd1328878f94d","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.1","_npmUser":{"name":"jfhbrook","email":"josh.holbrook@gmail.com"},"dist":{"shasum":"84a395ff80a919e68bc07a81fb2cd1328878f94d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-1.4.0.tgz"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},{"name":"jfhbrook","email":"josh.holbrook@gmail.com"}],"directories":{}},"1.4.1":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"1.4.1","homepage":"https://github.com/jfhbrook/node-ecstatic","repository":{"type":"git","url":"git+ssh://git@github.com/jfhbrook/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap test/*.js"},"bin":{"ecstatic":"./lib/ecstatic.js"},"keywords":["static","web","server","files","mime","middleware"],"dependencies":{"he":"^0.5.0","mime":"^1.2.11","minimist":"^1.1.0","url-join":"^1.0.0"},"devDependencies":{"eol":"^0.2.0","express":"^4.12.3","mkdirp":"^0.5.0","request":"^2.49.0","tap":"^5.7.0"},"license":"MIT","gitHead":"70751198635509a156ad1564296625fc753af89f","bugs":{"url":"https://github.com/jfhbrook/node-ecstatic/issues"},"_id":"ecstatic@1.4.1","_shasum":"32cb7b6fa2e290d58668674d115e8f0c3d567d6a","_from":".","_npmVersion":"2.14.16","_nodeVersion":"4.2.1","_npmUser":{"name":"jfhbrook","email":"josh.holbrook@gmail.com"},"dist":{"shasum":"32cb7b6fa2e290d58668674d115e8f0c3d567d6a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-1.4.1.tgz"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},{"name":"jfhbrook","email":"josh.holbrook@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/ecstatic-1.4.1.tgz_1462924279598_0.48026969679631293"},"directories":{}},"2.0.0":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"2.0.0","homepage":"https://github.com/jfhbrook/node-ecstatic","repository":{"type":"git","url":"git+ssh://git@github.com/jfhbrook/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap --coverage test/*.js","posttest":"tap --coverage-report=text-lcov | codecov"},"bin":{"ecstatic":"./lib/ecstatic.js"},"keywords":["static","web","server","files","mime","middleware"],"dependencies":{"he":"^0.5.0","mime":"^1.2.11","minimist":"^1.1.0","url-join":"^1.0.0"},"devDependencies":{"codecov":"^1.0.1","eol":"^0.2.0","express":"^4.12.3","mkdirp":"^0.5.0","request":"^2.49.0","tap":"^5.7.0"},"license":"MIT","gitHead":"c1a13e811a751efb45a4463fb32f6faf1720b49e","bugs":{"url":"https://github.com/jfhbrook/node-ecstatic/issues"},"_id":"ecstatic@2.0.0","_shasum":"cc4facc6196c353b79877a7d5e56862a8b0e0878","_from":".","_npmVersion":"2.14.16","_nodeVersion":"4.2.1","_npmUser":{"name":"jfhbrook","email":"josh.holbrook@gmail.com"},"dist":{"shasum":"cc4facc6196c353b79877a7d5e56862a8b0e0878","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-2.0.0.tgz"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},{"name":"jfhbrook","email":"josh.holbrook@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ecstatic-2.0.0.tgz_1470764740651_0.18585472810082138"},"directories":{}},"2.1.0":{"author":{"name":"Joshua Holbrook","email":"josh@nodejitsu.com","url":"http://jesusabdullah.net"},"name":"ecstatic","description":"A simple static file server middleware that works with both Express and Flatiron","version":"2.1.0","homepage":"https://github.com/jfhbrook/node-ecstatic","repository":{"type":"git","url":"git+ssh://git@github.com/jfhbrook/node-ecstatic.git"},"main":"./lib/ecstatic.js","scripts":{"test":"tap --coverage test/*.js","posttest":"tap --coverage-report=text-lcov | codecov"},"bin":{"ecstatic":"./lib/ecstatic.js"},"keywords":["static","web","server","files","mime","middleware"],"dependencies":{"he":"^0.5.0","mime":"^1.2.11","minimist":"^1.1.0","url-join":"^1.0.0"},"devDependencies":{"codecov":"^1.0.1","eol":"^0.2.0","express":"^4.12.3","mkdirp":"^0.5.0","request":"^2.49.0","tap":"^5.7.0"},"license":"MIT","gitHead":"a5e646b1122e51d715d03f3373a3ff99de84a9fc","bugs":{"url":"https://github.com/jfhbrook/node-ecstatic/issues"},"_id":"ecstatic@2.1.0","_shasum":"477a4a6b25cecb112f697dbd2c7fa354154ea6be","_from":".","_npmVersion":"2.14.16","_nodeVersion":"4.2.1","_npmUser":{"name":"jfhbrook","email":"josh.holbrook@gmail.com"},"dist":{"shasum":"477a4a6b25cecb112f697dbd2c7fa354154ea6be","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/ecstatic/-/ecstatic-2.1.0.tgz"},"maintainers":[{"name":"jesusabdullah","email":"josh.holbrook@gmail.com"},{"name":"jfhbrook","email":"josh.holbrook@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/ecstatic-2.1.0.tgz_1470869623029_0.07390662585385144"},"directories":{}}},"name":"ecstatic","time":{"modified":"2017-04-17T01:37:51.786Z","created":"2011-11-23T19:54:09.029Z","0.0.0":"2011-11-23T19:54:12.792Z","0.0.1":"2011-11-26T03:32:30.060Z","0.1.0":"2011-11-26T23:10:10.937Z","0.1.1":"2011-11-26T23:41:07.640Z","0.1.1-1":"2011-11-27T23:46:45.845Z","0.1.2":"2012-01-08T23:20:28.518Z","0.1.2-1":"2012-01-11T23:43:08.126Z","0.1.3":"2012-01-24T00:11:44.581Z","0.1.4":"2012-02-09T03:39:33.361Z","0.1.5":"2012-02-28T06:24:27.153Z","0.1.6":"2012-04-02T22:54:29.972Z","0.1.7":"2012-11-12T08:19:38.698Z","0.3.0":"2012-11-19T01:49:40.158Z","0.3.1":"2013-01-09T20:03:13.860Z","0.3.2":"2013-01-18T13:16:43.913Z","0.4.0":"2013-02-13T10:49:59.191Z","0.4.1":"2013-03-16T22:30:52.264Z","0.4.2":"2013-03-29T02:24:11.395Z","0.4.3":"2013-06-07T04:26:31.040Z","0.4.4":"2013-06-07T20:41:27.823Z","0.4.5":"2013-06-07T21:05:43.855Z","0.4.6":"2013-08-06T06:28:10.506Z","0.4.7":"2013-08-17T01:36:19.884Z","0.4.8":"2013-09-01T23:26:37.983Z","0.4.9":"2013-09-20T19:36:36.771Z","0.4.10":"2013-09-28T21:43:59.538Z","0.4.11":"2013-10-08T00:30:57.906Z","0.4.12":"2013-10-21T18:10:40.263Z","0.4.13":"2013-12-09T19:59:23.509Z","0.5.0":"2014-04-06T20:05:35.274Z","0.5.1":"2014-04-07T20:31:30.153Z","0.5.2":"2014-05-08T20:38:10.486Z","0.5.3":"2014-05-09T23:22:08.369Z","0.5.4":"2014-06-26T13:20:10.600Z","0.5.5":"2014-09-27T19:59:32.897Z","0.5.6":"2014-11-04T16:44:29.894Z","0.5.7":"2014-12-01T22:29:15.235Z","0.5.8":"2014-12-17T01:53:45.966Z","0.6.0":"2015-02-16T22:27:34.954Z","0.6.1":"2015-03-01T22:17:00.783Z","0.7.0":"2015-03-18T23:45:36.900Z","0.7.1":"2015-03-28T00:53:17.738Z","0.7.2":"2015-04-05T23:20:07.662Z","0.7.3":"2015-04-14T02:33:58.832Z","0.7.4":"2015-04-18T00:44:44.716Z","0.7.5":"2015-05-07T15:54:30.311Z","0.7.6":"2015-05-10T02:29:30.288Z","0.8.0":"2015-05-22T21:04:02.650Z","1.0.0":"2015-09-14T04:32:43.118Z","1.0.1":"2015-09-23T01:22:09.733Z","1.1.0":"2015-10-02T02:24:09.223Z","1.1.1":"2015-10-02T23:26:27.091Z","1.1.2":"2015-10-03T00:06:38.619Z","1.1.3":"2015-10-04T04:46:05.121Z","1.2.0":"2015-11-04T03:30:36.270Z","1.3.0":"2015-11-14T21:39:50.876Z","1.3.1":"2015-11-15T20:58:33.894Z","1.4.0":"2015-12-22T21:40:20.916Z","1.4.1":"2016-05-10T23:51:20.952Z","2.0.0":"2016-08-09T17:45:43.136Z","2.1.0":"2016-08-10T22:53:43.940Z"},"readmeFilename":"README.md","homepage":"https://github.com/jfhbrook/node-ecstatic"}