{"maintainers":[{"name":"aheckmann","email":"aaron.heckmann+github@gmail.com"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com"},{"name":"dead_horse","email":"dead_horse@qq.com"},{"name":"eivifj","email":"eivind.fjeldstad@gmail.com"},{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"jonathanong","email":"jonathanrichardong@gmail.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"tejasmanohar","email":"me@tejas.io"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"keywords":["koa","middleware","file","static","sendfile"],"dist-tags":{"latest":"3.0.0","next":"3.0.0"},"description":"Static file serving middleware for koa","readme":"# koa-static\n\n[![NPM version][npm-image]][npm-url]\n[![Build status][travis-image]][travis-url]\n[![Test coverage][coveralls-image]][coveralls-url]\n[![Dependency Status][david-image]][david-url]\n[![License][license-image]][license-url]\n[![Downloads][downloads-image]][downloads-url]\n\n Koa static file serving middleware, wrapper for [`koa-send`](https://github.com/koajs/send).\n\n## Installation\n\n```bash\n$ npm install koa-static\n```\n\n## API\n\n```js\nvar koa = require('koa');\nvar app = koa();\napp.use(require('koa-static')(root, opts));\n```\n\n* `root` root directory string. nothing above this root directory can be served\n* `opts` options object.\n\n### Options\n\n - `maxage` Browser cache max-age in milliseconds. defaults to 0\n - `hidden` Allow transfer of hidden files. defaults to false\n - `index` Default file name, defaults to 'index.html'\n - `defer` If true, serves after `yield next`, allowing any downstream middleware to respond first.\n - `gzip`  Try to serve the gzipped version of a file automatically when gzip is supported by a client and if the requested file with .gz extension exists. defaults to true.\n - `extensions` Try to match extensions from passed array to search for file when no extension is sufficed in URL. First found is served. (defaults to `false`)\n\n## Example\n\n```js\nvar serve = require('koa-static');\nvar koa = require('koa');\nvar app = koa();\n\n// $ GET /package.json\napp.use(serve('.'));\n\n// $ GET /hello.txt\napp.use(serve('test/fixtures'));\n\n// or use absolute paths\napp.use(serve(__dirname + '/test/fixtures'));\n\napp.listen(3000);\n\nconsole.log('listening on port 3000');\n```\n\n### See also\n\n - [koajs/conditional-get](https://github.com/koajs/conditional-get) Conditional GET support for koa\n - [koajs/compress](https://github.com/koajs/compress) Compress middleware for koa\n - [koajs/mount](https://github.com/koajs/mount) Mount `koa-static` to a specific path\n\n## License\n\n  MIT\n\n[npm-image]: https://img.shields.io/npm/v/koa-static.svg?style=flat-square\n[npm-url]: https://npmjs.org/package/koa-static\n[github-tag]: http://img.shields.io/github/tag/koajs/static.svg?style=flat-square\n[github-url]: https://github.com/koajs/static/tags\n[travis-image]: https://img.shields.io/travis/koajs/static.svg?style=flat-square\n[travis-url]: https://travis-ci.org/koajs/static\n[coveralls-image]: https://img.shields.io/coveralls/koajs/static.svg?style=flat-square\n[coveralls-url]: https://coveralls.io/r/koajs/static?branch=master\n[david-image]: http://img.shields.io/david/koajs/static.svg?style=flat-square\n[david-url]: https://david-dm.org/koajs/static\n[license-image]: http://img.shields.io/npm/l/koa-static.svg?style=flat-square\n[license-url]: LICENSE\n[downloads-image]: http://img.shields.io/npm/dm/koa-static.svg?style=flat-square\n[downloads-url]: https://npmjs.org/package/koa-static\n[gittip-image]: https://img.shields.io/gittip/jonathanong.svg?style=flat-square\n[gittip-url]: https://www.gittip.com/jonathanong/\n","repository":{"type":"git","url":"git+https://github.com/koajs/static.git"},"users":{"iisii":true,"parroit":true,"csbun":true,"adamlu":true,"minghe":true,"po":true,"dofy":true,"superboum":true,"edision":true,"evan2x":true,"rokeyzki":true,"xingtao":true,"vjudge":true,"upup":true,"princetoad":true,"justincathcart":true,"laomu":true,"shuoshubao":true,"lsxlsxxslxsl":true,"nisimjoseph":true},"bugs":{"url":"https://github.com/koajs/static/issues"},"license":"MIT","versions":{"1.0.0":{"name":"koa-static","description":"Static file serving middleware for koa","repository":{"type":"git","url":"koajs/static"},"version":"1.0.0","keywords":["koa","middleware","file","static","sendfile"],"files":["index.js"],"devDependencies":{"koa":"0.0.1"},"license":"MIT","dependencies":{"should":"~1.2.2","mocha":"~1.12.0","supertest":"~0.7.1"},"_id":"koa-static@1.0.0","dist":{"shasum":"b5250853972dbf8ea23972ceb5fd5714653bf90c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/koa-static/-/koa-static-1.0.0.tgz"},"_from":".","_npmVersion":"1.3.4","_npmUser":{"name":"tjholowaychuk","email":"tj@vision-media.ca"},"maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"directories":{}},"1.1.0":{"name":"koa-static","description":"Static file serving middleware for koa","repository":{"type":"git","url":"koajs/static"},"version":"1.1.0","keywords":["koa","middleware","file","static","sendfile"],"files":["index.js"],"devDependencies":{"koa":"0.0.1","should":"~1.2.2","mocha":"~1.12.0","supertest":"~0.7.1"},"license":"MIT","dependencies":{"debug":"*"},"_id":"koa-static@1.1.0","dist":{"shasum":"db50a26b1cbf4ccac7612283a67f454606bc94f2","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/koa-static/-/koa-static-1.1.0.tgz"},"_from":".","_npmVersion":"1.3.8","_npmUser":{"name":"tjholowaychuk","email":"tj@vision-media.ca"},"maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"directories":{}},"1.1.1":{"name":"koa-static","description":"Static file serving middleware for koa","repository":{"type":"git","url":"koajs/static"},"version":"1.1.1","keywords":["koa","middleware","file","static","sendfile"],"files":["index.js"],"devDependencies":{"koa":"0.0.1","should":"~1.2.2","mocha":"~1.12.0","supertest":"~0.7.1"},"license":"MIT","dependencies":{"debug":"*"},"_id":"koa-static@1.1.1","dist":{"shasum":"8acaa23a5a331a58bb66a60f49e6fc2134db2b5c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/koa-static/-/koa-static-1.1.1.tgz"},"_from":".","_npmVersion":"1.3.8","_npmUser":{"name":"tjholowaychuk","email":"tj@vision-media.ca"},"maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"directories":{}},"1.2.0":{"name":"koa-static","description":"Static file serving middleware for koa","repository":{"type":"git","url":"koajs/static"},"version":"1.2.0","keywords":["koa","middleware","file","static","sendfile"],"files":["index.js"],"devDependencies":{"koa":"0.0.1","should":"~1.2.2","mocha":"~1.12.0","supertest":"~0.7.1"},"license":"MIT","dependencies":{"debug":"*"},"_id":"koa-static@1.2.0","dist":{"shasum":"78f0d200a5698840e949c80db71e65426f53241e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/koa-static/-/koa-static-1.2.0.tgz"},"_from":".","_npmVersion":"1.3.8","_npmUser":{"name":"tjholowaychuk","email":"tj@vision-media.ca"},"maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"directories":{}},"1.3.0":{"name":"koa-static","description":"Static file serving middleware for koa","repository":{"type":"git","url":"git://github.com/koajs/static"},"version":"1.3.0","keywords":["koa","middleware","file","static","sendfile"],"files":["index.js"],"devDependencies":{"koa":"koajs/koa","should":"~1.2.2","mocha":"~1.12.0","supertest":"~0.7.1"},"license":"MIT","dependencies":{"debug":"*","koa-send":"~1.0.0"},"bugs":{"url":"https://github.com/koajs/static/issues"},"homepage":"https://github.com/koajs/static","_id":"koa-static@1.3.0","dist":{"shasum":"bb73421fd56deb822f475816ce0fe01d9453a297","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/koa-static/-/koa-static-1.3.0.tgz"},"_from":".","_npmVersion":"1.3.15","_npmUser":{"name":"tjholowaychuk","email":"tj@vision-media.ca"},"maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"directories":{}},"1.4.0":{"name":"koa-static","description":"Static file serving middleware for koa","repository":{"type":"git","url":"git://github.com/koajs/static"},"version":"1.4.0","keywords":["koa","middleware","file","static","sendfile"],"files":["index.js"],"devDependencies":{"koa":"koajs/koa","should":"~1.2.2","mocha":"~1.12.0","supertest":"~0.7.1"},"license":"MIT","dependencies":{"debug":"*","koa-send":"~1.1.1"},"scripts":{"test":"make test"},"bugs":{"url":"https://github.com/koajs/static/issues"},"homepage":"https://github.com/koajs/static","_id":"koa-static@1.4.0","dist":{"shasum":"94084662a78aae62e0ce198cbbb64e5921810395","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/koa-static/-/koa-static-1.4.0.tgz"},"_from":".","_npmVersion":"1.3.15","_npmUser":{"name":"tjholowaychuk","email":"tj@vision-media.ca"},"maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"jonathanong","email":"jonathanrichardong@gmail.com"}],"directories":{}},"1.4.1":{"name":"koa-static","description":"Static file serving middleware for koa","repository":{"type":"git","url":"git://github.com/koajs/static"},"version":"1.4.1","keywords":["koa","middleware","file","static","sendfile"],"files":["index.js"],"devDependencies":{"koa":"~0.2.1","should":"~1.2.2","mocha":"~1.12.0","supertest":"~0.7.1"},"license":"MIT","dependencies":{"debug":"*","koa-send":"~1.1.1"},"scripts":{"test":"make test"},"bugs":{"url":"https://github.com/koajs/static/issues"},"homepage":"https://github.com/koajs/static","_id":"koa-static@1.4.1","dist":{"shasum":"89f6d3e17374879d40b77958d75aacde6f70f72b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/koa-static/-/koa-static-1.4.1.tgz"},"_from":".","_npmVersion":"1.3.15","_npmUser":{"name":"tjholowaychuk","email":"tj@vision-media.ca"},"maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"jonathanong","email":"jonathanrichardong@gmail.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"}],"directories":{}},"1.4.2":{"name":"koa-static","description":"Static file serving middleware for koa","repository":{"type":"git","url":"git://github.com/koajs/static"},"version":"1.4.2","keywords":["koa","middleware","file","static","sendfile"],"files":["index.js"],"devDependencies":{"koa":"~0.2.1","should":"~1.2.2","mocha":"~1.12.0","supertest":"~0.7.1"},"license":"MIT","dependencies":{"debug":"*","koa-send":"~1.2.2"},"scripts":{"test":"make test"},"bugs":{"url":"https://github.com/koajs/static/issues"},"homepage":"https://github.com/koajs/static","_id":"koa-static@1.4.2","dist":{"shasum":"cc09685de2ea8aa03fd2fadfca7e98de340bc034","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/koa-static/-/koa-static-1.4.2.tgz"},"_from":".","_npmVersion":"1.3.15","_npmUser":{"name":"tjholowaychuk","email":"tj@vision-media.ca"},"maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"jonathanong","email":"jonathanrichardong@gmail.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"}],"directories":{}},"1.4.3":{"name":"koa-static","description":"Static file serving middleware for koa","repository":{"type":"git","url":"git://github.com/koajs/static"},"version":"1.4.3","keywords":["koa","middleware","file","static","sendfile"],"files":["index.js"],"devDependencies":{"koa":"~0.4.0","should":"~1.2.2","mocha":"~1.12.0","supertest":"~0.7.1"},"license":"MIT","dependencies":{"debug":"*","koa-send":"~1.2.3"},"scripts":{"test":"make test"},"bugs":{"url":"https://github.com/koajs/static/issues"},"homepage":"https://github.com/koajs/static","_id":"koa-static@1.4.3","dist":{"shasum":"6f097cb2162eb09dbf64bfedd0cfdda4ec9fb0ce","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/koa-static/-/koa-static-1.4.3.tgz"},"_from":".","_npmVersion":"1.3.26","_npmUser":{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},"maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"jonathanong","email":"jonathanrichardong@gmail.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"}],"directories":{}},"1.4.4":{"name":"koa-static","description":"Static file serving middleware for koa","repository":{"type":"git","url":"git://github.com/koajs/static"},"version":"1.4.4","keywords":["koa","middleware","file","static","sendfile"],"files":["index.js"],"devDependencies":{"koa":"~0.4.0","should":"~1.2.2","mocha":"~1.12.0","supertest":"~0.7.1"},"license":"MIT","dependencies":{"debug":"*","koa-send":"~1.2.3"},"scripts":{"test":"make test"},"bugs":{"url":"https://github.com/koajs/static/issues"},"homepage":"https://github.com/koajs/static","_id":"koa-static@1.4.4","dist":{"shasum":"c42fca1f3618f5407ba485650710365bc67bfe3c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/koa-static/-/koa-static-1.4.4.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"tjholowaychuk","email":"tj@vision-media.ca"},"maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"jonathanong","email":"jonathanrichardong@gmail.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"dead_horse","email":"dead_horse@qq.com"},{"name":"fengmk2","email":"fengmk2@gmail.com"}],"directories":{}},"1.4.5":{"name":"koa-static","description":"Static file serving middleware for koa","repository":{"type":"git","url":"git://github.com/koajs/static"},"version":"1.4.5","keywords":["koa","middleware","file","static","sendfile"],"files":["index.js"],"devDependencies":{"koa":"~0.6.0","should":"~1.2.2","mocha":"~1.12.0","supertest":"~0.7.1"},"license":"MIT","dependencies":{"debug":"*","koa-send":"~1.2.3"},"scripts":{"test":"make test"},"bugs":{"url":"https://github.com/koajs/static/issues"},"homepage":"https://github.com/koajs/static","_id":"koa-static@1.4.5","dist":{"shasum":"c690167c7e766fdc638f0d026f0a7aa61a82f92b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/koa-static/-/koa-static-1.4.5.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"tjholowaychuk","email":"tj@vision-media.ca"},"maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"jonathanong","email":"jonathanrichardong@gmail.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"dead_horse","email":"dead_horse@qq.com"},{"name":"fengmk2","email":"fengmk2@gmail.com"}],"directories":{}},"1.4.6":{"name":"koa-static","description":"Static file serving middleware for koa","repository":{"type":"git","url":"https://github.com/koajs/static"},"version":"1.4.6","keywords":["koa","middleware","file","static","sendfile"],"files":["index.js"],"devDependencies":{"koa":"~0.6.0","should":"~1.2.2","mocha":"~1.12.0","supertest":"~0.7.1"},"license":"MIT","dependencies":{"debug":"*","koa-send":"~1.2.3"},"scripts":{"test":"make test"},"gitHead":"367ba62265704ec48d2441da9b7ab5e4276a4711","bugs":{"url":"https://github.com/koajs/static/issues"},"homepage":"https://github.com/koajs/static","_id":"koa-static@1.4.6","_shasum":"6c68ce791725ca23d669cfe844a802816cf7671e","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},"maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"jonathanong","email":"jonathanrichardong@gmail.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"dead_horse","email":"dead_horse@qq.com"},{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"eivifj","email":"eivind.fjeldstad@gmail.com"}],"dist":{"shasum":"6c68ce791725ca23d669cfe844a802816cf7671e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/koa-static/-/koa-static-1.4.6.tgz"},"directories":{}},"1.4.7":{"name":"koa-static","description":"Static file serving middleware for koa","repository":{"type":"git","url":"https://github.com/koajs/static"},"version":"1.4.7","keywords":["koa","middleware","file","static","sendfile"],"files":["index.js"],"devDependencies":{"istanbul-harmony":"0","koa":"0","should":"2","mocha":"1","supertest":"0"},"license":"MIT","dependencies":{"debug":"*","koa-send":"~1.3.0"},"scripts":{"test":"mocha --harmony-generators --require should --reporter spec","test-cov":"node --harmony-generators ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --require should","test-travis":"node --harmony-generators ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- --require should"},"gitHead":"7202eff8ff666b0567928d57e8c4b4006c6eba37","bugs":{"url":"https://github.com/koajs/static/issues"},"homepage":"https://github.com/koajs/static","_id":"koa-static@1.4.7","_shasum":"f724291653543b60f5fc2745f48b2e0c36852062","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},"maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"jonathanong","email":"jonathanrichardong@gmail.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"dead_horse","email":"dead_horse@qq.com"},{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"eivifj","email":"eivind.fjeldstad@gmail.com"},{"name":"aheckmann","email":"aaron.heckmann+github@gmail.com"}],"dist":{"shasum":"f724291653543b60f5fc2745f48b2e0c36852062","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/koa-static/-/koa-static-1.4.7.tgz"},"directories":{}},"1.4.8":{"name":"koa-static","description":"Static file serving middleware for koa","repository":{"type":"git","url":"https://github.com/koajs/static"},"version":"1.4.8","keywords":["koa","middleware","file","static","sendfile"],"files":["index.js"],"devDependencies":{"istanbul-harmony":"0","koa":"0","should":"2","mocha":"1","supertest":"0"},"license":"MIT","dependencies":{"debug":"*","koa-send":"~1.3.0"},"scripts":{"test":"mocha --harmony-generators --require should --reporter spec","test-cov":"node --harmony-generators ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --require should","test-travis":"node --harmony-generators ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- --require should"},"gitHead":"40c31924745cba8b127b495711f6220f857e88d9","bugs":{"url":"https://github.com/koajs/static/issues"},"homepage":"https://github.com/koajs/static","_id":"koa-static@1.4.8","_shasum":"bf36829e56d52fa14e7381334b7e074c103db7b4","_from":".","_npmVersion":"2.1.12","_nodeVersion":"0.11.14","_npmUser":{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},"maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"jonathanong","email":"jonathanrichardong@gmail.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"dead_horse","email":"dead_horse@qq.com"},{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"eivifj","email":"eivind.fjeldstad@gmail.com"},{"name":"aheckmann","email":"aaron.heckmann+github@gmail.com"}],"dist":{"shasum":"bf36829e56d52fa14e7381334b7e074c103db7b4","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/koa-static/-/koa-static-1.4.8.tgz"},"directories":{}},"1.4.9":{"name":"koa-static","description":"Static file serving middleware for koa","repository":{"type":"git","url":"https://github.com/koajs/static"},"version":"1.4.9","keywords":["koa","middleware","file","static","sendfile"],"files":["index.js"],"devDependencies":{"istanbul-harmony":"0","koa":"0","mocha":"1","supertest":"0"},"license":"MIT","dependencies":{"debug":"*","koa-send":"~1.3.0"},"scripts":{"test":"mocha --harmony-generators --reporter spec","test-cov":"node --harmony-generators ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha","test-travis":"node --harmony-generators ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly"},"gitHead":"36895a0cee11c34420f9e65e10accb59ad46e93a","bugs":{"url":"https://github.com/koajs/static/issues"},"homepage":"https://github.com/koajs/static","_id":"koa-static@1.4.9","_shasum":"697d68bc71434f5fedde25901f8916aed5b596dd","_from":".","_npmVersion":"2.3.0","_nodeVersion":"0.11.16","_npmUser":{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},"maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"jonathanong","email":"jonathanrichardong@gmail.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"dead_horse","email":"dead_horse@qq.com"},{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"eivifj","email":"eivind.fjeldstad@gmail.com"},{"name":"aheckmann","email":"aaron.heckmann+github@gmail.com"}],"dist":{"shasum":"697d68bc71434f5fedde25901f8916aed5b596dd","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/koa-static/-/koa-static-1.4.9.tgz"},"directories":{}},"1.5.0":{"name":"koa-static","description":"Static file serving middleware for koa","repository":{"type":"git","url":"git+https://github.com/koajs/static.git"},"version":"1.5.0","keywords":["koa","middleware","file","static","sendfile"],"files":["index.js"],"devDependencies":{"istanbul-harmony":"0","koa":"1","mocha":"2","supertest":"1"},"license":"MIT","dependencies":{"debug":"*","koa-send":"~2.0.0"},"scripts":{"test":"mocha --harmony --reporter spec","test-cov":"node --harmony ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha","test-travis":"node --harmony ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly"},"gitHead":"6614586f998ec7a714566294fddefaaf46ab3ee8","bugs":{"url":"https://github.com/koajs/static/issues"},"homepage":"https://github.com/koajs/static#readme","_id":"koa-static@1.5.0","_shasum":"0a2867ee9c5cd1261da6b84a00f22076b2ebdd2a","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"coderhaoxin","email":"coderhaoxin@outlook.com"},"maintainers":[{"name":"aheckmann","email":"aaron.heckmann+github@gmail.com"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com"},{"name":"dead_horse","email":"dead_horse@qq.com"},{"name":"eivifj","email":"eivind.fjeldstad@gmail.com"},{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"jonathanong","email":"jonathanrichardong@gmail.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"dist":{"shasum":"0a2867ee9c5cd1261da6b84a00f22076b2ebdd2a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/koa-static/-/koa-static-1.5.0.tgz"},"directories":{}},"1.5.1":{"name":"koa-static","description":"Static file serving middleware for koa","repository":{"type":"git","url":"git+https://github.com/koajs/static.git"},"version":"1.5.1","keywords":["koa","middleware","file","static","sendfile"],"files":["index.js"],"devDependencies":{"istanbul-harmony":"0","koa":"1","mocha":"2","supertest":"1"},"license":"MIT","dependencies":{"debug":"*","koa-send":"~2.0.1"},"scripts":{"test":"mocha --harmony --reporter spec","test-cov":"node --harmony ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha","test-travis":"node --harmony ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly"},"gitHead":"aa212b9cf62f074dd5b62a4c43fd2a1a8db66a7b","bugs":{"url":"https://github.com/koajs/static/issues"},"homepage":"https://github.com/koajs/static#readme","_id":"koa-static@1.5.1","_shasum":"87f680705281ad5ce815e6ad2bfcfdd3ab9fc04c","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"coderhaoxin","email":"coderhaoxin@outlook.com"},"maintainers":[{"name":"aheckmann","email":"aaron.heckmann+github@gmail.com"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com"},{"name":"dead_horse","email":"dead_horse@qq.com"},{"name":"eivifj","email":"eivind.fjeldstad@gmail.com"},{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"jonathanong","email":"jonathanrichardong@gmail.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"dist":{"shasum":"87f680705281ad5ce815e6ad2bfcfdd3ab9fc04c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/koa-static/-/koa-static-1.5.1.tgz"},"directories":{}},"1.5.2":{"name":"koa-static","description":"Static file serving middleware for koa","repository":{"type":"git","url":"git+https://github.com/koajs/static.git"},"version":"1.5.2","keywords":["koa","middleware","file","static","sendfile"],"files":["index.js"],"devDependencies":{"istanbul-harmony":"0","koa":"1","mocha":"2","supertest":"1"},"license":"MIT","dependencies":{"debug":"*","koa-send":"~2.0.1"},"scripts":{"test":"mocha --harmony --reporter spec","test-cov":"node --harmony ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha","test-travis":"node --harmony ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly"},"gitHead":"fe1800a9e0737247a2fea23ecaa11273a9cb9780","bugs":{"url":"https://github.com/koajs/static/issues"},"homepage":"https://github.com/koajs/static#readme","_id":"koa-static@1.5.2","_shasum":"400c61e5669481a2f881ee85245abe4d73c1daef","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"coderhaoxin","email":"coderhaoxin@outlook.com"},"maintainers":[{"name":"aheckmann","email":"aaron.heckmann+github@gmail.com"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com"},{"name":"dead_horse","email":"dead_horse@qq.com"},{"name":"eivifj","email":"eivind.fjeldstad@gmail.com"},{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"jonathanong","email":"jonathanrichardong@gmail.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"tejasmanohar","email":"me@tejas.io"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"dist":{"shasum":"400c61e5669481a2f881ee85245abe4d73c1daef","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/koa-static/-/koa-static-1.5.2.tgz"},"directories":{}},"2.0.0":{"name":"koa-static","description":"Static file serving middleware for koa","repository":{"type":"git","url":"git+https://github.com/koajs/static.git"},"version":"2.0.0","keywords":["koa","middleware","file","static","sendfile"],"files":["index.js"],"devDependencies":{"istanbul-harmony":"0","koa":"1","mocha":"2","supertest":"1"},"license":"MIT","dependencies":{"debug":"*","koa-send":"~3.1.0"},"scripts":{"test":"mocha --harmony --reporter spec","test-cov":"node --harmony ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha","test-travis":"node --harmony ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly"},"gitHead":"46ca00fbb61b36a870c70b12784d0202a423394f","bugs":{"url":"https://github.com/koajs/static/issues"},"homepage":"https://github.com/koajs/static#readme","_id":"koa-static@2.0.0","_shasum":"2693482e1a4c0219e6d926be1703a2658b754f26","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"coderhaoxin","email":"coderhaoxin@outlook.com"},"maintainers":[{"name":"aheckmann","email":"aaron.heckmann+github@gmail.com"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com"},{"name":"dead_horse","email":"dead_horse@qq.com"},{"name":"eivifj","email":"eivind.fjeldstad@gmail.com"},{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"jonathanong","email":"jonathanrichardong@gmail.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"tejasmanohar","email":"me@tejas.io"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"dist":{"shasum":"2693482e1a4c0219e6d926be1703a2658b754f26","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/koa-static/-/koa-static-2.0.0.tgz"},"directories":{}},"3.0.0":{"name":"koa-static","description":"Static file serving middleware for koa","repository":{"type":"git","url":"git+https://github.com/koajs/static.git"},"version":"3.0.0","keywords":["koa","middleware","file","static","sendfile"],"files":["index.js"],"devDependencies":{"istanbul":"0","koa":"2","mocha":"2","supertest":"1"},"license":"MIT","dependencies":{"debug":"*","koa-send":"^3.2.0"},"scripts":{"test":"mocha --harmony --reporter spec","test-cov":"node --harmony ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha","test-travis":"node --harmony ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly"},"gitHead":"855a20c94035f6009ff9601615e05228b6a9d20e","bugs":{"url":"https://github.com/koajs/static/issues"},"homepage":"https://github.com/koajs/static#readme","_id":"koa-static@3.0.0","_shasum":"40442233d2c0b35c225e450199c10bf8a539e416","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.9.0","_npmUser":{"name":"coderhaoxin","email":"coderhaoxin@outlook.com"},"maintainers":[{"name":"aheckmann","email":"aaron.heckmann+github@gmail.com"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com"},{"name":"dead_horse","email":"dead_horse@qq.com"},{"name":"eivifj","email":"eivind.fjeldstad@gmail.com"},{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"jonathanong","email":"jonathanrichardong@gmail.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"tejasmanohar","email":"me@tejas.io"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"dist":{"shasum":"40442233d2c0b35c225e450199c10bf8a539e416","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/koa-static/-/koa-static-3.0.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/koa-static-3.0.0.tgz_1458819374474_0.0350977866910398"},"directories":{}},"2.1.0":{"name":"koa-static","description":"Static file serving middleware for koa","repository":{"type":"git","url":"git+https://github.com/koajs/static.git"},"version":"2.1.0","keywords":["koa","middleware","file","static","sendfile"],"files":["index.js"],"devDependencies":{"istanbul":"0","koa":"1","mocha":"3","supertest":"3"},"license":"MIT","dependencies":{"debug":"^2.6.0","koa-send":"^3.3.0"},"scripts":{"test":"mocha --harmony --reporter spec","test-cov":"node --harmony ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha","test-travis":"node --harmony ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly"},"gitHead":"f98805a40b6c5502b2b7e6acb64040ef6217f640","bugs":{"url":"https://github.com/koajs/static/issues"},"homepage":"https://github.com/koajs/static#readme","_id":"koa-static@2.1.0","_shasum":"cfe292ea7dabc96aa723e4a488615cc65ae74169","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"coderhaoxin","email":"haoxins@outlook.com"},"dist":{"shasum":"cfe292ea7dabc96aa723e4a488615cc65ae74169","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/koa-static/-/koa-static-2.1.0.tgz"},"maintainers":[{"name":"aheckmann","email":"aaron.heckmann+github@gmail.com"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com"},{"name":"dead_horse","email":"dead_horse@qq.com"},{"name":"eivifj","email":"eivind.fjeldstad@gmail.com"},{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"jonathanong","email":"jonathanrichardong@gmail.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"tejasmanohar","email":"me@tejas.io"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/koa-static-2.1.0.tgz_1486093330618_0.639823489356786"},"directories":{}}},"name":"koa-static","time":{"modified":"2017-05-20T11:22:14.065Z","created":"2013-08-17T17:50:12.924Z","1.0.0":"2013-08-17T17:50:14.499Z","1.1.0":"2013-09-14T03:02:47.362Z","1.1.1":"2013-09-14T04:09:10.175Z","1.2.0":"2013-09-14T20:33:43.677Z","1.3.0":"2013-12-12T06:31:59.270Z","1.4.0":"2013-12-21T19:09:22.539Z","1.4.1":"2013-12-30T19:15:47.241Z","1.4.2":"2014-01-08T01:18:56.236Z","1.4.3":"2014-02-11T21:54:02.421Z","1.4.4":"2014-05-04T17:20:13.750Z","1.4.5":"2014-05-05T15:31:35.753Z","1.4.6":"2014-07-30T07:15:22.999Z","1.4.7":"2014-09-08T00:14:12.548Z","1.4.8":"2014-12-17T19:19:51.261Z","1.4.9":"2015-02-03T22:18:25.521Z","1.5.0":"2015-10-13T19:38:20.989Z","1.5.1":"2015-10-14T02:19:14.687Z","1.5.2":"2015-11-04T02:26:34.610Z","2.0.0":"2016-01-07T01:44:40.003Z","3.0.0":"2016-03-24T11:36:14.884Z","2.1.0":"2017-02-03T03:42:12.381Z"},"readmeFilename":"Readme.md","homepage":"https://github.com/koajs/static#readme"}