{"maintainers":[{"name":"pigcan","email":"jiangjay818@gmail.com"},{"name":"saiyagg","email":"saiyagg@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"}],"dist-tags":{"latest":"0.8.5","beta":"0.3.0-beta2"},"author":{"name":"chencheng","email":"sorrycc@gmail.com"},"description":"[![NPM version](https://img.shields.io/npm/v/dora-plugin-proxy.svg?style=flat)](https://npmjs.org/package/dora-plugin-proxy) [![Build Status](https://img.shields.io/travis/dora-js/dora-plugin-proxy.svg?style=flat)](https://travis-ci.org/dora-js/dora-plugi","readme":"# dora-plugin-proxy\n\n[![NPM version](https://img.shields.io/npm/v/dora-plugin-proxy.svg?style=flat)](https://npmjs.org/package/dora-plugin-proxy)\n[![Build Status](https://img.shields.io/travis/dora-js/dora-plugin-proxy.svg?style=flat)](https://travis-ci.org/dora-js/dora-plugin-proxy)\n[![Coverage Status](https://img.shields.io/coveralls/dora-js/dora-plugin-proxy.svg?style=flat)](https://coveralls.io/r/dora-js/dora-plugin-proxy)\n[![NPM downloads](http://img.shields.io/npm/dm/dora-plugin-proxy.svg?style=flat)](https://npmjs.org/package/dora-plugin-proxy)\n\nProxy plugin for dora.\n\n----\n\n## Usage\n\n```bash\n$ npm i dora dora-plugin-proxy -SD\n$ ./node_modules/.bin/dora --plugins proxy\n```\n\n## Docs\n\n- [使用入门](./docs/get-started.md)\n- [在线调试](./docs/online-debug.md)\n\n## 参数\n\n### port\n\n代理服务器端口号。\n\n### watchDirs\n\n定义哪些目录下的规则定义可以实时刷新。\n\n### watchDelay\n\n目录监听延迟，默认：300 毫秒。\n\n## 规则定义\n\n在项目目录新增 `proxy.config.js` 可定制 proxy 规则。\n\n样例：\n\n```javascript\nmodule.exports = {\n  // Forward 到另一个服务器\n  'GET https://assets.daily/*': 'https://assets.online/',\n\n  // Forward 到另一个服务器，并指定路径\n  'GET https://assets.daily/*': 'https://assets.online/v2/',\n  \n  // Forward 到另一个服务器，不指定来源服务器\n  'GET /assets/*': 'https://assets.online/',\n  \n  // Forward 到另一个服务器，并指定子路径\n  // 请求 /someDir/0.0.50/index.css 会被代理到 https://g.alicdn.com/tb-page/taobao-home, 实际返回 https://g.alicdn.com/tb-page/taobao-home/0.0.50/index.css\n  'GET /someDir/(.*)': 'https://g.alicdn.com/tb-page/taobao-home',\n\n  // 本地文件替换\n  'GET /local': './local.js',\n  \n  // Mock 数据返回\n  'GET /users': [{name:'sorrycc'}, {name:'pigcan'}],\n  'GET /users/1': {name:'jaredleechn'},\n  \n  // Mock 数据，基于 mockjs\n  'GET /users': require('mockjs').mock({\n    success: true,\n    data: [{name:'@Name'}],\n  }),\n  \n  // 通过自定义函数替换请求\n  '/custom-func/:action': function(req, res) {\n    // req 和 res 的设计类 express，http://expressjs.com/en/api.html\n    //\n    // req 能取到：\n    //   1. params\n    //   2. query\n    //   3. body\n    // \n    // res 有以下方法：\n    //   1. set(object|key, value)\n    //   2. type(json|html|text|png|...)\n    //   3. status(200|404|304)\n    //   4. json(jsonData)\n    //   5. jsonp(jsonData[, callbackQueryName])\n    //   6. end(string|object)\n    //\n    // 举例：\n    res.json({\n      action: req.params.action,\n      query: req.query,\n    });\n  },\n};\n```\n\n","repository":{"type":"git","url":"git+https://github.com/dora-js/dora-plugin-proxy.git"},"bugs":{"url":"https://github.com/dora-js/dora-plugin-proxy/issues"},"license":"MIT","versions":{"0.2.0":{"name":"dora-plugin-proxy","version":"0.2.0","repository":{"type":"git","url":"git+https://github.com/dora-js/dora-plugin-proxy.git"},"homepage":"https://github.com/dora-js/dora-plugin-proxy","author":{"name":"chencheng","email":"sorrycc@gmail.com"},"license":"MIT","main":"./lib","scripts":{"build":"rm -rf lib && babel src --out-dir lib --ignore __tests__","prepublish":"npm run build","test":"mocha --require babel-core/register --no-timeouts","lint":"eslint --ext .js src"},"dependencies":{"anyproxy":"~3.8.1"},"devDependencies":{"babel-cli":"~6.2.0","babel-core":"~6.1.21","babel-jest":"~6.0.1","babel-plugin-add-module-exports":"~0.1.1","babel-preset-es2015":"~6.1.18","babel-preset-stage-0":"~6.1.18","dora":"0.1.0-beta5","eslint":"~1.9.0","eslint-config-airbnb":"~1.0.0","expect":"~1.13.0","jest-cli":"~0.7.1","jest.automockoff":"~0.1.0","mocha":"~2.3.4","mocha-babel":"~3.0.0","pre-commit":"~1.1.2"},"jest":{"scriptPreprocessor":"<rootDir>/node_modules/babel-jest","testPathIgnorePatterns":["__tests__/fixtures","__tests__/expect"],"testPathDirs":["<rootDir>/src"],"collectCoverageOnlyFrom":{"src/index.js":true},"unmockedModulePathPatterns":[],"verbose":true},"babel":{"presets":["es2015","stage-0"],"plugins":["add-module-exports"]},"files":["lib","package.json","README.md"],"gitHead":"5aba99fb56d863317dcf313b1487fe88dca105b2","description":"## TODO:","bugs":{"url":"https://github.com/dora-js/dora-plugin-proxy/issues"},"_id":"dora-plugin-proxy@0.2.0","_shasum":"e3996b669f62b75fc2ef8b3305dbf1e8ea95422b","_from":".","_npmVersion":"2.14.3","_nodeVersion":"4.1.0","_npmUser":{"name":"sorrycc","email":"sorrycc@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"}],"dist":{"shasum":"e3996b669f62b75fc2ef8b3305dbf1e8ea95422b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/dora-plugin-proxy/-/dora-plugin-proxy-0.2.0.tgz"},"directories":{}},"0.3.0-beta1":{"name":"dora-plugin-proxy","version":"0.3.0-beta1","repository":{"type":"git","url":"git+https://github.com/dora-js/dora-plugin-proxy.git"},"homepage":"https://github.com/dora-js/dora-plugin-proxy","author":{"name":"chencheng","email":"sorrycc@gmail.com"},"license":"MIT","main":"./lib","scripts":{"build":"rm -rf lib && babel src --out-dir lib --ignore __tests__","prepublish":"npm run build","test":"mocha --require babel-core/register --no-timeouts","lint":"eslint --ext .js src"},"dependencies":{"anyproxy":"~3.8.1","object-assign":"^4.0.1","path-to-regexp":"^1.2.1"},"devDependencies":{"babel-cli":"~6.2.0","babel-core":"~6.1.21","babel-jest":"~6.0.1","babel-plugin-add-module-exports":"~0.1.1","babel-preset-es2015":"~6.1.18","babel-preset-stage-0":"~6.1.18","dora":"0.1.0-beta5","eslint":"~1.9.0","eslint-config-airbnb":"~1.0.0","expect":"~1.13.0","jest-cli":"~0.7.1","jest.automockoff":"~0.1.0","mocha":"~2.3.4","mocha-babel":"~3.0.0","pre-commit":"~1.1.2","supertest":"^1.1.0"},"peerDependencies":{"dora":"^0.1.0"},"jest":{"scriptPreprocessor":"<rootDir>/node_modules/babel-jest","testPathIgnorePatterns":["__tests__/fixtures","__tests__/expect"],"testPathDirs":["<rootDir>/src"],"collectCoverageOnlyFrom":{"src/index.js":true},"unmockedModulePathPatterns":[],"verbose":true},"babel":{"presets":["es2015","stage-0"],"plugins":["add-module-exports"]},"files":["lib","package.json","README.md"],"gitHead":"597c374dc78dabe0326ccd1f6b633fb060ba7587","description":"Proxy plugin for dora.","bugs":{"url":"https://github.com/dora-js/dora-plugin-proxy/issues"},"_id":"dora-plugin-proxy@0.3.0-beta1","_shasum":"a6d3597b4216116c5d5abaa466c2758445dd06de","_from":".","_npmVersion":"2.14.3","_nodeVersion":"4.1.0","_npmUser":{"name":"sorrycc","email":"sorrycc@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"}],"dist":{"shasum":"a6d3597b4216116c5d5abaa466c2758445dd06de","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/dora-plugin-proxy/-/dora-plugin-proxy-0.3.0-beta1.tgz"},"directories":{}},"0.3.0-beta2":{"name":"dora-plugin-proxy","version":"0.3.0-beta2","repository":{"type":"git","url":"git+https://github.com/dora-js/dora-plugin-proxy.git"},"homepage":"https://github.com/dora-js/dora-plugin-proxy","author":{"name":"chencheng","email":"sorrycc@gmail.com"},"license":"MIT","main":"./lib","scripts":{"build":"rm -rf lib && babel src --out-dir lib --ignore __tests__","test":"mocha --require babel-core/register --no-timeouts","lint":"eslint --ext .js src"},"dependencies":{"dora-anyproxy":"~3.8.1","object-assign":"^4.0.1","path-to-regexp":"^1.2.1"},"devDependencies":{"babel-cli":"~6.2.0","babel-core":"~6.1.21","babel-jest":"~6.0.1","babel-plugin-add-module-exports":"~0.1.1","babel-preset-es2015":"~6.1.18","babel-preset-stage-0":"~6.1.18","dora":"~0.1.0","eslint":"~1.9.0","eslint-config-airbnb":"~1.0.0","expect":"~1.13.0","jest-cli":"~0.7.1","jest.automockoff":"~0.1.0","mocha":"~2.3.4","mocha-babel":"~3.0.0","pre-commit":"~1.1.2","supertest":"^1.1.0"},"peerDependencies":{"dora":"^0.1.0"},"jest":{"scriptPreprocessor":"<rootDir>/node_modules/babel-jest","testPathIgnorePatterns":["__tests__/fixtures","__tests__/expect"],"testPathDirs":["<rootDir>/src"],"collectCoverageOnlyFrom":{"src/index.js":true},"unmockedModulePathPatterns":[],"verbose":true},"babel":{"presets":["es2015","stage-0"],"plugins":["add-module-exports"]},"files":["lib","package.json","README.md"],"gitHead":"1994c666ebc5e16f3d0cf666f2c1baa5ed03190c","description":"[![NPM version](https://img.shields.io/npm/v/dora-plugin-proxy.svg?style=flat)](https://npmjs.org/package/dora-plugin-proxy) [![Build Status](https://img.shields.io/travis/dora-js/dora-plugin-proxy.svg?style=flat)](https://travis-ci.org/dora-js/dora-plugi","bugs":{"url":"https://github.com/dora-js/dora-plugin-proxy/issues"},"_id":"dora-plugin-proxy@0.3.0-beta2","_shasum":"e9620879053658d9f6072b63ac5f057200bef42b","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.3","_npmUser":{"name":"sorrycc","email":"sorrycc@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"}],"dist":{"shasum":"e9620879053658d9f6072b63ac5f057200bef42b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/dora-plugin-proxy/-/dora-plugin-proxy-0.3.0-beta2.tgz"},"directories":{}},"0.3.0-beta3":{"name":"dora-plugin-proxy","version":"0.3.0-beta3","repository":{"type":"git","url":"git+https://github.com/dora-js/dora-plugin-proxy.git"},"homepage":"https://github.com/dora-js/dora-plugin-proxy","author":{"name":"chencheng","email":"sorrycc@gmail.com"},"license":"MIT","main":"./lib","scripts":{"build":"rm -rf lib && babel src --out-dir lib --ignore __tests__","test":"mocha --require babel-core/register --no-timeouts","lint":"eslint --ext .js src"},"dependencies":{"dora-anyproxy":"~3.8.1","object-assign":"^4.0.1","path-to-regexp":"^1.2.1"},"devDependencies":{"babel-cli":"~6.2.0","babel-core":"~6.1.21","babel-jest":"~6.0.1","babel-plugin-add-module-exports":"~0.1.1","babel-preset-es2015":"~6.1.18","babel-preset-stage-0":"~6.1.18","dora":"~0.1.0","eslint":"~1.9.0","eslint-config-airbnb":"~1.0.0","expect":"~1.13.0","jest-cli":"~0.7.1","jest.automockoff":"~0.1.0","mocha":"~2.3.4","mocha-babel":"~3.0.0","pre-commit":"~1.1.2","supertest":"^1.1.0"},"peerDependencies":{"dora":"^0.1.0"},"jest":{"scriptPreprocessor":"<rootDir>/node_modules/babel-jest","testPathIgnorePatterns":["__tests__/fixtures","__tests__/expect"],"testPathDirs":["<rootDir>/src"],"collectCoverageOnlyFrom":{"src/index.js":true},"unmockedModulePathPatterns":[],"verbose":true},"babel":{"presets":["es2015","stage-0"],"plugins":["add-module-exports"]},"files":["lib","package.json","README.md"],"gitHead":"1994c666ebc5e16f3d0cf666f2c1baa5ed03190c","description":"[![NPM version](https://img.shields.io/npm/v/dora-plugin-proxy.svg?style=flat)](https://npmjs.org/package/dora-plugin-proxy) [![Build Status](https://img.shields.io/travis/dora-js/dora-plugin-proxy.svg?style=flat)](https://travis-ci.org/dora-js/dora-plugi","bugs":{"url":"https://github.com/dora-js/dora-plugin-proxy/issues"},"_id":"dora-plugin-proxy@0.3.0-beta3","_shasum":"ea3b12a7a2daf70937724754c09c2ebe5b45b0d5","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.3","_npmUser":{"name":"sorrycc","email":"sorrycc@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"}],"dist":{"shasum":"ea3b12a7a2daf70937724754c09c2ebe5b45b0d5","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/dora-plugin-proxy/-/dora-plugin-proxy-0.3.0-beta3.tgz"},"directories":{}},"0.3.0-beta4":{"name":"dora-plugin-proxy","version":"0.3.0-beta4","repository":{"type":"git","url":"git+https://github.com/dora-js/dora-plugin-proxy.git"},"homepage":"https://github.com/dora-js/dora-plugin-proxy","author":{"name":"chencheng","email":"sorrycc@gmail.com"},"license":"MIT","main":"./lib","scripts":{"build":"rm -rf lib && babel src --out-dir lib --ignore __tests__","test":"mocha --require babel-core/register --no-timeouts","lint":"eslint --ext .js src","publish":"make publish"},"dependencies":{"dora-anyproxy":"~3.8.1","object-assign":"^4.0.1","path-to-regexp":"^1.2.1"},"devDependencies":{"babel-cli":"~6.3.17","babel-core":"~6.3.17","babel-jest":"~6.0.1","babel-plugin-add-module-exports":"~0.1.1","babel-preset-es2015":"~6.3.13","babel-preset-stage-0":"~6.3.13","dora":"~0.1.0","eslint":"~1.10.3","eslint-config-airbnb":"~2.1.0","expect":"~1.13.0","jest-cli":"~0.8.1","jest.automockoff":"~0.1.0","mocha":"~2.3.4","mocha-babel":"~3.0.0","pre-commit":"~1.1.2","supertest":"^1.1.0"},"peerDependencies":{"dora":"^0.1.0"},"jest":{"scriptPreprocessor":"<rootDir>/node_modules/babel-jest","testPathIgnorePatterns":["__tests__/fixtures","__tests__/expect"],"testPathDirs":["<rootDir>/src"],"collectCoverageOnlyFrom":{"src/index.js":true},"unmockedModulePathPatterns":[],"verbose":true},"babel":{"presets":["es2015","stage-0"],"plugins":["add-module-exports"]},"files":["lib","package.json","README.md"],"gitHead":"6b3a6b6357a8b3c7cee6e7d6ff499a5290edbc84","description":"[![NPM version](https://img.shields.io/npm/v/dora-plugin-proxy.svg?style=flat)](https://npmjs.org/package/dora-plugin-proxy) [![Build Status](https://img.shields.io/travis/dora-js/dora-plugin-proxy.svg?style=flat)](https://travis-ci.org/dora-js/dora-plugi","bugs":{"url":"https://github.com/dora-js/dora-plugin-proxy/issues"},"_id":"dora-plugin-proxy@0.3.0-beta4","_shasum":"7da89c0053e6b562e3fd4f21f06e42e1af66a33a","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.3","_npmUser":{"name":"sorrycc","email":"sorrycc@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"}],"dist":{"shasum":"7da89c0053e6b562e3fd4f21f06e42e1af66a33a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/dora-plugin-proxy/-/dora-plugin-proxy-0.3.0-beta4.tgz"},"directories":{}},"0.3.0-beta5":{"name":"dora-plugin-proxy","version":"0.3.0-beta5","repository":{"type":"git","url":"git+https://github.com/dora-js/dora-plugin-proxy.git"},"homepage":"https://github.com/dora-js/dora-plugin-proxy","author":{"name":"chencheng","email":"sorrycc@gmail.com"},"license":"MIT","main":"./lib","scripts":{"build":"rm -rf lib && babel src --out-dir lib --ignore __tests__","test":"mocha --require babel-core/register --no-timeouts","lint":"eslint --ext .js src"},"dependencies":{"dora-anyproxy":"~3.8.1","object-assign":"^4.0.1","path-to-regexp":"^1.2.1"},"devDependencies":{"babel-cli":"~6.3.17","babel-core":"~6.3.17","babel-jest":"~6.0.1","babel-plugin-add-module-exports":"~0.1.1","babel-preset-es2015":"~6.3.13","babel-preset-stage-0":"~6.3.13","dora":"~0.1.0","eslint":"~1.10.3","eslint-config-airbnb":"~2.1.0","expect":"~1.13.0","jest-cli":"~0.8.1","jest.automockoff":"~0.1.0","mocha":"~2.3.4","mocha-babel":"~3.0.0","pre-commit":"~1.1.2","supertest":"^1.1.0"},"peerDependencies":{"dora":"^0.1.0"},"jest":{"scriptPreprocessor":"<rootDir>/node_modules/babel-jest","testPathIgnorePatterns":["__tests__/fixtures","__tests__/expect"],"testPathDirs":["<rootDir>/src"],"collectCoverageOnlyFrom":{"src/index.js":true},"unmockedModulePathPatterns":[],"verbose":true},"babel":{"presets":["es2015","stage-0"],"plugins":["add-module-exports"]},"files":["lib","package.json","README.md"],"gitHead":"6b3a6b6357a8b3c7cee6e7d6ff499a5290edbc84","description":"[![NPM version](https://img.shields.io/npm/v/dora-plugin-proxy.svg?style=flat)](https://npmjs.org/package/dora-plugin-proxy) [![Build Status](https://img.shields.io/travis/dora-js/dora-plugin-proxy.svg?style=flat)](https://travis-ci.org/dora-js/dora-plugi","bugs":{"url":"https://github.com/dora-js/dora-plugin-proxy/issues"},"_id":"dora-plugin-proxy@0.3.0-beta5","_shasum":"a92c49358b9838fcc64e3937f6f50de0636355e4","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.3","_npmUser":{"name":"sorrycc","email":"sorrycc@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"}],"dist":{"shasum":"a92c49358b9838fcc64e3937f6f50de0636355e4","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/dora-plugin-proxy/-/dora-plugin-proxy-0.3.0-beta5.tgz"},"directories":{}},"0.4.0":{"name":"dora-plugin-proxy","version":"0.4.0","repository":{"type":"git","url":"git+https://github.com/dora-js/dora-plugin-proxy.git"},"homepage":"https://github.com/dora-js/dora-plugin-proxy","author":{"name":"chencheng","email":"sorrycc@gmail.com"},"license":"MIT","main":"./lib","scripts":{"build":"rm -rf lib && babel src --out-dir lib --ignore __tests__","test":"mocha --require babel-core/register --no-timeouts","lint":"eslint --ext .js src"},"pre-commit":["lint"],"dependencies":{"dora-anyproxy":"~3.8.1","is-plain-object":"^2.0.1","mime-db":"^1.20.0","mime-type":"^3.0.4","object-assign":"^4.0.1","path-to-regexp":"^1.2.1","qs":"^6.0.1"},"devDependencies":{"babel-cli":"~6.3.17","babel-core":"~6.3.17","babel-plugin-add-module-exports":"~0.1.1","babel-preset-es2015":"~6.3.13","babel-preset-stage-0":"~6.3.13","dora":"~0.1.0","eslint":"~1.10.3","eslint-config-airbnb":"~2.1.0","expect":"~1.13.0","mocha":"~2.3.4","pre-commit":"~1.1.2","request":"^2.67.0"},"peerDependencies":{"dora":"^0.1.0"},"babel":{"presets":["es2015","stage-0"],"plugins":["add-module-exports"]},"files":["lib","package.json","README.md"],"gitHead":"5ce4b87a4cdee73e02231dc5488348fee58d404f","description":"[![NPM version](https://img.shields.io/npm/v/dora-plugin-proxy.svg?style=flat)](https://npmjs.org/package/dora-plugin-proxy) [![Build Status](https://img.shields.io/travis/dora-js/dora-plugin-proxy.svg?style=flat)](https://travis-ci.org/dora-js/dora-plugi","bugs":{"url":"https://github.com/dora-js/dora-plugin-proxy/issues"},"_id":"dora-plugin-proxy@0.4.0","_shasum":"76bfd90d21a5091ff3e90fe3d943253f0b547350","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.2.0","_npmUser":{"name":"sorrycc","email":"sorrycc@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"}],"dist":{"shasum":"76bfd90d21a5091ff3e90fe3d943253f0b547350","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/dora-plugin-proxy/-/dora-plugin-proxy-0.4.0.tgz"},"directories":{}},"0.5.0":{"name":"dora-plugin-proxy","version":"0.5.0","repository":{"type":"git","url":"git+https://github.com/dora-js/dora-plugin-proxy.git"},"homepage":"https://github.com/dora-js/dora-plugin-proxy","author":{"name":"chencheng","email":"sorrycc@gmail.com"},"license":"MIT","main":"./lib","scripts":{"build":"rm -rf lib && babel src --out-dir lib","test":"babel-node node_modules/.bin/babel-istanbul cover node_modules/.bin/_mocha --no-timeouts","debug":"mocha --require babel-core/register --no-timeouts","lint":"eslint --ext .js src","coveralls":"cat ./coverage/lcov.info | coveralls"},"pre-commit":["lint"],"dependencies":{"dora-anyproxy":"~3.8.4","is-plain-object":"~2.0.1","mime-db":"~1.20.0","mime-type":"~3.0.4","object-assign":"~4.0.1","path-to-regexp":"~1.2.1","qs":"~6.0.1"},"devDependencies":{"babel-cli":"~6.3.17","babel-core":"~6.3.26","babel-istanbul":"^0.5.9","babel-plugin-add-module-exports":"~0.1.1","babel-preset-es2015":"~6.3.13","babel-preset-stage-0":"~6.3.13","coveralls":"^2.11.6","dora":"~0.2.2","eslint":"~1.10.3","eslint-config-airbnb":"~2.1.0","expect":"~1.13.0","mocha":"~2.3.4","pre-commit":"~1.1.2","request":"^2.67.0"},"peerDependencies":{"dora":"~0.2.2"},"babel":{"presets":["es2015","stage-0"],"plugins":["add-module-exports"]},"files":["lib","package.json","README.md"],"gitHead":"2d8bd4eaff05a7380348e457d999a3eba46b183c","description":"[![NPM version](https://img.shields.io/npm/v/dora-plugin-proxy.svg?style=flat)](https://npmjs.org/package/dora-plugin-proxy) [![Build Status](https://img.shields.io/travis/dora-js/dora-plugin-proxy.svg?style=flat)](https://travis-ci.org/dora-js/dora-plugi","bugs":{"url":"https://github.com/dora-js/dora-plugin-proxy/issues"},"_id":"dora-plugin-proxy@0.5.0","_shasum":"6cadfb475080b8d46c5bd6b8fb7fcb68304b3b6e","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.2.0","_npmUser":{"name":"sorrycc","email":"sorrycc@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"}],"dist":{"shasum":"6cadfb475080b8d46c5bd6b8fb7fcb68304b3b6e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/dora-plugin-proxy/-/dora-plugin-proxy-0.5.0.tgz"},"directories":{}},"0.5.1":{"name":"dora-plugin-proxy","version":"0.5.1","repository":{"type":"git","url":"git+https://github.com/dora-js/dora-plugin-proxy.git"},"homepage":"https://github.com/dora-js/dora-plugin-proxy","author":{"name":"chencheng","email":"sorrycc@gmail.com"},"license":"MIT","main":"./lib","scripts":{"build":"rm -rf lib && babel src --out-dir lib","test":"babel-node node_modules/.bin/babel-istanbul cover node_modules/.bin/_mocha --no-timeouts","debug":"mocha --require babel-core/register --no-timeouts","lint":"eslint --ext .js src","coveralls":"cat ./coverage/lcov.info | coveralls"},"pre-commit":["lint"],"dependencies":{"dora-anyproxy":"~3.8.4","is-plain-object":"~2.0.1","mime-db":"~1.20.0","mime-type":"~3.0.4","object-assign":"~4.0.1","path-to-regexp":"~1.2.1","qs":"~6.0.1"},"devDependencies":{"babel-cli":"~6.3.17","babel-core":"~6.3.26","babel-istanbul":"^0.5.9","babel-plugin-add-module-exports":"~0.1.1","babel-preset-es2015":"~6.3.13","babel-preset-stage-0":"~6.3.13","coveralls":"^2.11.6","dora":"~0.2.2","eslint":"~1.10.3","eslint-config-airbnb":"~2.1.0","expect":"~1.13.0","mocha":"~2.3.4","pre-commit":"~1.1.2","request":"^2.67.0"},"peerDependencies":{"dora":"~0.2.2"},"babel":{"presets":["es2015","stage-0"],"plugins":["add-module-exports"]},"files":["lib","package.json","README.md"],"gitHead":"f494844a6b95c0c9cbfb10d222c857b0fbdabf7a","description":"[![NPM version](https://img.shields.io/npm/v/dora-plugin-proxy.svg?style=flat)](https://npmjs.org/package/dora-plugin-proxy) [![Build Status](https://img.shields.io/travis/dora-js/dora-plugin-proxy.svg?style=flat)](https://travis-ci.org/dora-js/dora-plugi","bugs":{"url":"https://github.com/dora-js/dora-plugin-proxy/issues"},"_id":"dora-plugin-proxy@0.5.1","_shasum":"6a20e94b88e74c990b72110caa2d118b3880f31e","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.2.0","_npmUser":{"name":"sorrycc","email":"sorrycc@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"}],"dist":{"shasum":"6a20e94b88e74c990b72110caa2d118b3880f31e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/dora-plugin-proxy/-/dora-plugin-proxy-0.5.1.tgz"},"directories":{}},"0.5.2":{"name":"dora-plugin-proxy","version":"0.5.2","repository":{"type":"git","url":"git+https://github.com/dora-js/dora-plugin-proxy.git"},"homepage":"https://github.com/dora-js/dora-plugin-proxy","author":{"name":"chencheng","email":"sorrycc@gmail.com"},"license":"MIT","main":"./lib","scripts":{"build":"rm -rf lib && babel src --out-dir lib","test":"babel-node node_modules/.bin/babel-istanbul cover node_modules/.bin/_mocha --no-timeouts","debug":"mocha --require babel-core/register --no-timeouts","lint":"eslint --ext .js src","coveralls":"cat ./coverage/lcov.info | coveralls"},"pre-commit":["lint"],"dependencies":{"crequire":"^1.7.0","dora-anyproxy":"~3.8.4","is-plain-object":"~2.0.1","mime-db":"~1.20.0","mime-type":"~3.0.4","object-assign":"~4.0.1","path-to-regexp":"~1.2.1","qs":"~6.0.1"},"devDependencies":{"babel-cli":"~6.3.17","babel-core":"~6.3.26","babel-istanbul":"^0.5.9","babel-plugin-add-module-exports":"~0.1.1","babel-preset-es2015":"~6.3.13","babel-preset-stage-0":"~6.3.13","coveralls":"^2.11.6","dora":"~0.2.2","eslint":"~1.10.3","eslint-config-airbnb":"~2.1.0","expect":"~1.13.0","mocha":"~2.3.4","pre-commit":"~1.1.2","request":"^2.67.0"},"peerDependencies":{"dora":"~0.2.2"},"babel":{"presets":["es2015","stage-0"],"plugins":["add-module-exports"]},"files":["lib","package.json","README.md"],"gitHead":"0b984548b2d53e387129d8191514b257c52ada18","description":"[![NPM version](https://img.shields.io/npm/v/dora-plugin-proxy.svg?style=flat)](https://npmjs.org/package/dora-plugin-proxy) [![Build Status](https://img.shields.io/travis/dora-js/dora-plugin-proxy.svg?style=flat)](https://travis-ci.org/dora-js/dora-plugi","bugs":{"url":"https://github.com/dora-js/dora-plugin-proxy/issues"},"_id":"dora-plugin-proxy@0.5.2","_shasum":"2b255e24380c28872d9247e2d95ef6ed3f66791f","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.2.0","_npmUser":{"name":"sorrycc","email":"sorrycc@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"}],"dist":{"shasum":"2b255e24380c28872d9247e2d95ef6ed3f66791f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/dora-plugin-proxy/-/dora-plugin-proxy-0.5.2.tgz"},"directories":{}},"0.5.3":{"name":"dora-plugin-proxy","version":"0.5.3","repository":{"type":"git","url":"git+https://github.com/dora-js/dora-plugin-proxy.git"},"homepage":"https://github.com/dora-js/dora-plugin-proxy","author":{"name":"chencheng","email":"sorrycc@gmail.com"},"license":"MIT","main":"./lib","scripts":{"build":"rm -rf lib && babel src --out-dir lib","test":"babel-node node_modules/.bin/babel-istanbul cover node_modules/.bin/_mocha --no-timeouts","debug":"mocha --require babel-core/register --no-timeouts","lint":"eslint --ext .js src","coveralls":"cat ./coverage/lcov.info | coveralls"},"pre-commit":["lint"],"dependencies":{"crequire":"^1.7.0","dora-anyproxy":"~3.8.4","is-plain-object":"~2.0.1","mime-db":"~1.21.0","mime-type":"~3.0.4","object-assign":"~4.0.1","path-to-regexp":"~1.2.1","qs":"~6.0.1"},"devDependencies":{"babel-cli":"~6.4.0","babel-core":"~6.3.26","babel-istanbul":"^0.5.9","babel-plugin-add-module-exports":"~0.1.1","babel-preset-es2015":"~6.3.13","babel-preset-stage-0":"~6.3.13","coveralls":"^2.11.6","dora":"~0.2.2","eslint":"~1.10.3","eslint-config-airbnb":"~3.1.0","expect":"~1.13.0","mocha":"~2.3.4","pre-commit":"~1.1.2","request":"^2.67.0"},"peerDependencies":{"dora":"~0.2.2"},"babel":{"presets":["es2015","stage-0"],"plugins":["add-module-exports"]},"files":["lib","package.json","README.md"],"gitHead":"bcd576b4448c0a7474d045416215852fd7f4f4c5","description":"[![NPM version](https://img.shields.io/npm/v/dora-plugin-proxy.svg?style=flat)](https://npmjs.org/package/dora-plugin-proxy) [![Build Status](https://img.shields.io/travis/dora-js/dora-plugin-proxy.svg?style=flat)](https://travis-ci.org/dora-js/dora-plugi","bugs":{"url":"https://github.com/dora-js/dora-plugin-proxy/issues"},"_id":"dora-plugin-proxy@0.5.3","_shasum":"1513a473875322aca0b19dd4645aab60dfefe6dc","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.2.0","_npmUser":{"name":"sorrycc","email":"sorrycc@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"}],"dist":{"shasum":"1513a473875322aca0b19dd4645aab60dfefe6dc","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/dora-plugin-proxy/-/dora-plugin-proxy-0.5.3.tgz"},"directories":{}},"0.6.0":{"name":"dora-plugin-proxy","version":"0.6.0","repository":{"type":"git","url":"git+https://github.com/dora-js/dora-plugin-proxy.git"},"homepage":"https://github.com/dora-js/dora-plugin-proxy","author":{"name":"chencheng","email":"sorrycc@gmail.com"},"license":"MIT","main":"./lib","scripts":{"build":"rm -rf lib && babel src --out-dir lib","test":"babel-node node_modules/.bin/babel-istanbul cover node_modules/.bin/_mocha --no-timeouts","debug":"mocha --require babel-core/register --no-timeouts","lint":"eslint --ext .js src","coveralls":"cat ./coverage/lcov.info | coveralls"},"pre-commit":["lint"],"dependencies":{"crequire":"^1.7.0","dora-anyproxy":"~3.8.4","is-plain-object":"~2.0.1","mime-db":"~1.21.0","mime-type":"~3.0.4","path-to-regexp":"~1.2.1","qs":"~6.0.1"},"devDependencies":{"babel-cli":"~6.4.0","babel-core":"~6.4.5","babel-istanbul":"^0.6.0","babel-plugin-add-module-exports":"~0.1.1","babel-preset-es2015":"~6.3.13","babel-preset-stage-0":"~6.3.13","coveralls":"^2.11.6","dora":"~0.2.2","eslint":"~1.10.3","eslint-config-airbnb":"~3.1.0","expect":"~1.13.0","mocha":"~2.4.1","pre-commit":"~1.1.2","request":"^2.67.0"},"peerDependencies":{"dora":"~0.3.0"},"babel":{"presets":["es2015","stage-0"],"plugins":["add-module-exports"]},"files":["lib"],"gitHead":"0b293401119c1c383e4e3cd06a555ce92992c12c","description":"[![NPM version](https://img.shields.io/npm/v/dora-plugin-proxy.svg?style=flat)](https://npmjs.org/package/dora-plugin-proxy) [![Build Status](https://img.shields.io/travis/dora-js/dora-plugin-proxy.svg?style=flat)](https://travis-ci.org/dora-js/dora-plugi","bugs":{"url":"https://github.com/dora-js/dora-plugin-proxy/issues"},"_id":"dora-plugin-proxy@0.6.0","_shasum":"ca47cfb7e5e975a1254829fd7536fb6ddd4e73e4","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.2.0","_npmUser":{"name":"sorrycc","email":"sorrycc@gmail.com"},"dist":{"shasum":"ca47cfb7e5e975a1254829fd7536fb6ddd4e73e4","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/dora-plugin-proxy/-/dora-plugin-proxy-0.6.0.tgz"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"}],"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/dora-plugin-proxy-0.6.0.tgz_1456980399108_0.8437233893200755"},"directories":{}},"0.5.4":{"name":"dora-plugin-proxy","version":"0.5.4","repository":{"type":"git","url":"git+https://github.com/dora-js/dora-plugin-proxy.git"},"homepage":"https://github.com/dora-js/dora-plugin-proxy","author":{"name":"chencheng","email":"sorrycc@gmail.com"},"license":"MIT","main":"./lib","scripts":{"build":"rm -rf lib && babel src --out-dir lib","test":"babel-node node_modules/.bin/babel-istanbul cover node_modules/.bin/_mocha --no-timeouts","debug":"mocha --require babel-core/register --no-timeouts","lint":"eslint --ext .js src","coveralls":"cat ./coverage/lcov.info | coveralls"},"pre-commit":["lint"],"dependencies":{"crequire":"^1.7.0","dora-anyproxy":"~3.8.4","is-plain-object":"~2.0.1","mime-db":"~1.21.0","mime-type":"~3.0.4","object-assign":"~4.0.1","path-to-regexp":"~1.2.1","qs":"~6.0.1"},"devDependencies":{"babel-cli":"~6.4.0","babel-core":"~6.3.26","babel-istanbul":"^0.5.9","babel-plugin-add-module-exports":"~0.1.1","babel-preset-es2015":"~6.3.13","babel-preset-stage-0":"~6.3.13","coveralls":"^2.11.6","dora":"~0.2.2","eslint":"~1.10.3","eslint-config-airbnb":"~3.1.0","expect":"~1.13.0","mocha":"~2.3.4","pre-commit":"~1.1.2","request":"^2.67.0"},"peerDependencies":{"dora":"~0.2.2"},"babel":{"presets":["es2015","stage-0"],"plugins":["add-module-exports"]},"files":["lib","package.json","README.md"],"gitHead":"bcd576b4448c0a7474d045416215852fd7f4f4c5","description":"[![NPM version](https://img.shields.io/npm/v/dora-plugin-proxy.svg?style=flat)](https://npmjs.org/package/dora-plugin-proxy) [![Build Status](https://img.shields.io/travis/dora-js/dora-plugin-proxy.svg?style=flat)](https://travis-ci.org/dora-js/dora-plugi","bugs":{"url":"https://github.com/dora-js/dora-plugin-proxy/issues"},"_id":"dora-plugin-proxy@0.5.4","_shasum":"3f193ed158cef49c9b1988ff836d80a66e2e2048","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.2.0","_npmUser":{"name":"sorrycc","email":"sorrycc@gmail.com"},"dist":{"shasum":"3f193ed158cef49c9b1988ff836d80a66e2e2048","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/dora-plugin-proxy/-/dora-plugin-proxy-0.5.4.tgz"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/dora-plugin-proxy-0.5.4.tgz_1456989405637_0.4818087515886873"},"directories":{}},"0.6.1":{"name":"dora-plugin-proxy","version":"0.6.1","repository":{"type":"git","url":"git+https://github.com/dora-js/dora-plugin-proxy.git"},"homepage":"https://github.com/dora-js/dora-plugin-proxy","author":{"name":"chencheng","email":"sorrycc@gmail.com"},"license":"MIT","main":"./lib","scripts":{"build":"rm -rf lib && babel src --out-dir lib","test":"babel-node node_modules/.bin/babel-istanbul cover node_modules/.bin/_mocha --no-timeouts","debug":"mocha --require babel-core/register --no-timeouts","lint":"eslint --ext .js src","coveralls":"cat ./coverage/lcov.info | coveralls"},"pre-commit":["lint"],"dependencies":{"crequire":"^1.7.0","dora-anyproxy":"~3.8.4","is-plain-object":"~2.0.1","mime-db":"~1.21.0","mime-type":"~3.0.4","path-to-regexp":"~1.2.1","qs":"~6.0.1"},"devDependencies":{"babel-cli":"~6.4.0","babel-core":"~6.4.5","babel-istanbul":"^0.6.0","babel-plugin-add-module-exports":"~0.1.1","babel-preset-es2015":"~6.3.13","babel-preset-stage-0":"~6.3.13","coveralls":"^2.11.6","dora":"~0.3.0","eslint":"~1.10.3","eslint-config-airbnb":"~3.1.0","expect":"~1.13.0","mocha":"~2.4.1","pre-commit":"~1.1.2","request":"^2.67.0"},"peerDependencies":{"dora":"~0.3.0"},"babel":{"presets":["es2015","stage-0"],"plugins":["add-module-exports"]},"files":["lib"],"gitHead":"9425bf79e1a8db909fd778b5670ee36487657ce1","description":"[![NPM version](https://img.shields.io/npm/v/dora-plugin-proxy.svg?style=flat)](https://npmjs.org/package/dora-plugin-proxy) [![Build Status](https://img.shields.io/travis/dora-js/dora-plugin-proxy.svg?style=flat)](https://travis-ci.org/dora-js/dora-plugi","bugs":{"url":"https://github.com/dora-js/dora-plugin-proxy/issues"},"_id":"dora-plugin-proxy@0.6.1","_shasum":"ac07e0df5e98a7d4a4d20d47dfba8afea7383f72","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.2.0","_npmUser":{"name":"sorrycc","email":"sorrycc@gmail.com"},"dist":{"shasum":"ac07e0df5e98a7d4a4d20d47dfba8afea7383f72","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/dora-plugin-proxy/-/dora-plugin-proxy-0.6.1.tgz"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/dora-plugin-proxy-0.6.1.tgz_1459242912964_0.15561242611147463"},"directories":{}},"0.7.0":{"name":"dora-plugin-proxy","version":"0.7.0","repository":{"type":"git","url":"git+https://github.com/dora-js/dora-plugin-proxy.git"},"homepage":"https://github.com/dora-js/dora-plugin-proxy","author":{"name":"chencheng","email":"sorrycc@gmail.com"},"license":"MIT","main":"./lib","scripts":{"build":"rm -rf lib && babel src --out-dir lib","test":"babel-node node_modules/.bin/babel-istanbul cover node_modules/.bin/_mocha --no-timeouts","debug":"mocha --require babel-core/register --no-timeouts","lint":"eslint --ext .js src","coveralls":"cat ./coverage/lcov.info | coveralls"},"pre-commit":["lint"],"dependencies":{"crequire":"^1.7.0","dora-anyproxy":"~3.8.4","is-plain-object":"~2.0.1","mime-db":"~1.21.0","mime-type":"~3.0.4","path-to-regexp":"~1.2.1","qs":"~6.0.1"},"devDependencies":{"babel-cli":"~6.4.0","babel-core":"~6.4.5","babel-istanbul":"^0.6.0","babel-plugin-add-module-exports":"~0.1.1","babel-preset-es2015":"~6.3.13","babel-preset-stage-0":"~6.3.13","coveralls":"^2.11.6","dora":"~0.3.0","eslint":"~1.10.3","eslint-config-airbnb":"~3.1.0","expect":"~1.13.0","mocha":"~2.4.1","pre-commit":"~1.1.2","request":"^2.67.0"},"peerDependencies":{"dora":"~0.3.0"},"babel":{"presets":["es2015","stage-0"],"plugins":["add-module-exports"]},"files":["lib"],"gitHead":"55153a56420c951222b2eb9496380a1971f873fe","description":"[![NPM version](https://img.shields.io/npm/v/dora-plugin-proxy.svg?style=flat)](https://npmjs.org/package/dora-plugin-proxy) [![Build Status](https://img.shields.io/travis/dora-js/dora-plugin-proxy.svg?style=flat)](https://travis-ci.org/dora-js/dora-plugi","bugs":{"url":"https://github.com/dora-js/dora-plugin-proxy/issues"},"_id":"dora-plugin-proxy@0.7.0","_shasum":"19a7143e92d7537444dd02f890972f5593a2103a","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.2.0","_npmUser":{"name":"sorrycc","email":"sorrycc@gmail.com"},"dist":{"shasum":"19a7143e92d7537444dd02f890972f5593a2103a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/dora-plugin-proxy/-/dora-plugin-proxy-0.7.0.tgz"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/dora-plugin-proxy-0.7.0.tgz_1464273501868_0.14094813633710146"},"directories":{}},"0.8.0":{"name":"dora-plugin-proxy","version":"0.8.0","repository":{"type":"git","url":"git+https://github.com/dora-js/dora-plugin-proxy.git"},"homepage":"https://github.com/dora-js/dora-plugin-proxy","author":{"name":"chencheng","email":"sorrycc@gmail.com"},"license":"MIT","main":"./lib","scripts":{"build":"rm -rf lib && babel src --out-dir lib","test":"babel-node node_modules/.bin/babel-istanbul cover node_modules/.bin/_mocha --no-timeouts","debug":"mocha --require babel-core/register --no-timeouts","lint":"eslint --ext .js src","coveralls":"cat ./coverage/lcov.info | coveralls"},"pre-commit":["lint"],"dependencies":{"crequire":"^1.7.0","dora-anyproxy":"~3.8.4","is-plain-object":"~2.0.1","mime-db":"~1.21.0","mime-type":"~3.0.4","path-to-regexp":"~1.2.1","qs":"~6.0.1"},"devDependencies":{"babel-cli":"~6.4.0","babel-core":"~6.4.5","babel-istanbul":"^0.6.0","babel-plugin-add-module-exports":"~0.1.1","babel-preset-es2015":"~6.3.13","babel-preset-stage-0":"~6.3.13","coveralls":"^2.11.6","dora":"0.x","eslint":"~1.10.3","eslint-config-airbnb":"~3.1.0","expect":"~1.13.0","mocha":"~2.4.1","pre-commit":"~1.1.2","request":"^2.67.0"},"peerDependencies":{"dora":"0.4.x"},"babel":{"presets":["es2015","stage-0"],"plugins":["add-module-exports"]},"files":["lib"],"gitHead":"0fb353d3f4d04b077d908f03bb34dd435f9afcdd","description":"[![NPM version](https://img.shields.io/npm/v/dora-plugin-proxy.svg?style=flat)](https://npmjs.org/package/dora-plugin-proxy) [![Build Status](https://img.shields.io/travis/dora-js/dora-plugin-proxy.svg?style=flat)](https://travis-ci.org/dora-js/dora-plugi","bugs":{"url":"https://github.com/dora-js/dora-plugin-proxy/issues"},"_id":"dora-plugin-proxy@0.8.0","_shasum":"a30d2b329c78464922bfd296117f6e2b809e4501","_from":".","_npmVersion":"3.9.5","_nodeVersion":"6.2.2","_npmUser":{"name":"pigcan","email":"jiangjay818@gmail.com"},"dist":{"shasum":"a30d2b329c78464922bfd296117f6e2b809e4501","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/dora-plugin-proxy/-/dora-plugin-proxy-0.8.0.tgz"},"maintainers":[{"name":"pigcan","email":"jiangjay818@gmail.com"},{"name":"saiyagg","email":"saiyagg@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/dora-plugin-proxy-0.8.0.tgz_1470717950921_0.9344662702642381"},"directories":{}},"0.8.2":{"name":"dora-plugin-proxy","version":"0.8.2","repository":{"type":"git","url":"git+https://github.com/dora-js/dora-plugin-proxy.git"},"homepage":"https://github.com/dora-js/dora-plugin-proxy","author":{"name":"chencheng","email":"sorrycc@gmail.com"},"license":"MIT","main":"./lib","scripts":{"build":"rm -rf lib && babel src --out-dir lib","test":"babel-node node_modules/.bin/babel-istanbul cover node_modules/.bin/_mocha --no-timeouts","debug":"mocha --require babel-core/register --no-timeouts","lint":"eslint --ext .js src","coveralls":"cat ./coverage/lcov.info | coveralls"},"pre-commit":["lint"],"dependencies":{"crequire":"^1.7.0","dora-anyproxy":"~3.8.4","is-plain-object":"~2.0.1","mime-db":"~1.21.0","mime-type":"~3.0.4","path-to-regexp":"~1.2.1","qs":"~6.0.1"},"devDependencies":{"babel-cli":"~6.4.0","babel-core":"~6.4.5","babel-istanbul":"^0.6.0","babel-plugin-add-module-exports":"~0.1.1","babel-preset-es2015":"~6.3.13","babel-preset-stage-0":"~6.3.13","coveralls":"^2.11.6","dora":"0.x","eslint":"~1.10.3","eslint-config-airbnb":"~3.1.0","expect":"~1.13.0","mocha":"~2.4.1","pre-commit":"~1.1.2","request":"^2.67.0"},"peerDependencies":{"dora":"0.4.x"},"babel":{"presets":["es2015","stage-0"],"plugins":["add-module-exports"]},"files":["lib"],"gitHead":"ebc254aa2d6736a0f7ec961b050fa1b8878af4ab","description":"[![NPM version](https://img.shields.io/npm/v/dora-plugin-proxy.svg?style=flat)](https://npmjs.org/package/dora-plugin-proxy) [![Build Status](https://img.shields.io/travis/dora-js/dora-plugin-proxy.svg?style=flat)](https://travis-ci.org/dora-js/dora-plugi","bugs":{"url":"https://github.com/dora-js/dora-plugin-proxy/issues"},"_id":"dora-plugin-proxy@0.8.2","_shasum":"eca15742e7ec3ab2f3e950c680ce9c129e42d97d","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.2.0","_npmUser":{"name":"sorrycc","email":"sorrycc@gmail.com"},"dist":{"shasum":"eca15742e7ec3ab2f3e950c680ce9c129e42d97d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/dora-plugin-proxy/-/dora-plugin-proxy-0.8.2.tgz"},"maintainers":[{"name":"pigcan","email":"jiangjay818@gmail.com"},{"name":"saiyagg","email":"saiyagg@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/dora-plugin-proxy-0.8.2.tgz_1474253422175_0.14458262571133673"},"directories":{}},"0.8.3":{"name":"dora-plugin-proxy","version":"0.8.3","repository":{"type":"git","url":"git+https://github.com/dora-js/dora-plugin-proxy.git"},"homepage":"https://github.com/dora-js/dora-plugin-proxy","author":{"name":"chencheng","email":"sorrycc@gmail.com"},"license":"MIT","main":"./lib","scripts":{"build":"rm -rf lib && babel src --out-dir lib","test":"babel-node node_modules/.bin/babel-istanbul cover node_modules/.bin/_mocha --no-timeouts","debug":"mocha --require babel-core/register --no-timeouts","lint":"eslint --ext .js src","coveralls":"cat ./coverage/lcov.info | coveralls"},"pre-commit":["lint"],"dependencies":{"crequire":"^1.7.0","dora-anyproxy":"~3.8.4","is-plain-object":"~2.0.1","mime-db":"~1.21.0","mime-type":"~3.0.4","path-to-regexp":"~1.2.1","qs":"~6.0.1"},"devDependencies":{"babel-cli":"~6.4.0","babel-core":"~6.4.5","babel-istanbul":"^0.6.0","babel-plugin-add-module-exports":"~0.1.1","babel-preset-es2015":"~6.3.13","babel-preset-stage-0":"~6.3.13","coveralls":"^2.11.6","dora":"0.x","eslint":"~1.10.3","eslint-config-airbnb":"~3.1.0","expect":"~1.13.0","mocha":"~2.4.1","pre-commit":"~1.1.2","request":"^2.67.0"},"peerDependencies":{"dora":"0.4.x"},"babel":{"presets":["es2015","stage-0"],"plugins":["add-module-exports"]},"files":["lib"],"gitHead":"bf0ea840fc0dcc736c2785c2b767089a38f8b0be","description":"[![NPM version](https://img.shields.io/npm/v/dora-plugin-proxy.svg?style=flat)](https://npmjs.org/package/dora-plugin-proxy) [![Build Status](https://img.shields.io/travis/dora-js/dora-plugin-proxy.svg?style=flat)](https://travis-ci.org/dora-js/dora-plugi","bugs":{"url":"https://github.com/dora-js/dora-plugin-proxy/issues"},"_id":"dora-plugin-proxy@0.8.3","_shasum":"83f755e19d8392235954fb1cdf5c58e7bc2d3ad8","_from":".","_npmVersion":"3.9.5","_nodeVersion":"6.2.2","_npmUser":{"name":"pigcan","email":"jiangjay818@gmail.com"},"dist":{"shasum":"83f755e19d8392235954fb1cdf5c58e7bc2d3ad8","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/dora-plugin-proxy/-/dora-plugin-proxy-0.8.3.tgz"},"maintainers":[{"name":"pigcan","email":"jiangjay818@gmail.com"},{"name":"saiyagg","email":"saiyagg@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/dora-plugin-proxy-0.8.3.tgz_1474354888171_0.24342363071627915"},"directories":{}},"0.8.4":{"name":"dora-plugin-proxy","version":"0.8.4","repository":{"type":"git","url":"git+https://github.com/dora-js/dora-plugin-proxy.git"},"homepage":"https://github.com/dora-js/dora-plugin-proxy","author":{"name":"chencheng","email":"sorrycc@gmail.com"},"license":"MIT","main":"./lib","scripts":{"build":"rm -rf lib && babel src --out-dir lib","test":"babel-node node_modules/.bin/babel-istanbul cover node_modules/.bin/_mocha --no-timeouts","debug":"mocha --require babel-core/register --no-timeouts","lint":"eslint --ext .js src","coveralls":"cat ./coverage/lcov.info | coveralls"},"pre-commit":["lint"],"dependencies":{"crequire":"^1.7.0","dora-anyproxy":"~3.8.4","is-plain-object":"~2.0.1","mime-db":"~1.21.0","mime-type":"~3.0.4","path-to-regexp":"~1.2.1","qs":"~6.0.1"},"devDependencies":{"babel-cli":"~6.4.0","babel-core":"~6.4.5","babel-istanbul":"^0.6.0","babel-plugin-add-module-exports":"~0.1.1","babel-preset-es2015":"~6.3.13","babel-preset-stage-0":"~6.3.13","coveralls":"^2.11.6","dora":"0.x","eslint":"~1.10.3","eslint-config-airbnb":"~3.1.0","expect":"~1.13.0","mocha":"~2.4.1","pre-commit":"~1.1.2","request":"^2.67.0"},"peerDependencies":{"dora":"0.4.x"},"babel":{"presets":["es2015","stage-0"],"plugins":["add-module-exports"]},"files":["lib"],"gitHead":"d2b3f9563718900b30480f204fe8a936a1827a2f","description":"[![NPM version](https://img.shields.io/npm/v/dora-plugin-proxy.svg?style=flat)](https://npmjs.org/package/dora-plugin-proxy) [![Build Status](https://img.shields.io/travis/dora-js/dora-plugin-proxy.svg?style=flat)](https://travis-ci.org/dora-js/dora-plugi","bugs":{"url":"https://github.com/dora-js/dora-plugin-proxy/issues"},"_id":"dora-plugin-proxy@0.8.4","_shasum":"1b33bd4b4f52fe18bf2b0888854e2a5f9780bf2a","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.2.0","_npmUser":{"name":"sorrycc","email":"sorrycc@gmail.com"},"dist":{"shasum":"1b33bd4b4f52fe18bf2b0888854e2a5f9780bf2a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/dora-plugin-proxy/-/dora-plugin-proxy-0.8.4.tgz"},"maintainers":[{"name":"pigcan","email":"jiangjay818@gmail.com"},{"name":"saiyagg","email":"saiyagg@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/dora-plugin-proxy-0.8.4.tgz_1475294260340_0.2235624212771654"},"directories":{}},"0.8.5":{"name":"dora-plugin-proxy","version":"0.8.5","repository":{"type":"git","url":"git+https://github.com/dora-js/dora-plugin-proxy.git"},"homepage":"https://github.com/dora-js/dora-plugin-proxy","author":{"name":"chencheng","email":"sorrycc@gmail.com"},"license":"MIT","main":"./lib","scripts":{"build":"rm -rf lib && babel src --out-dir lib","test":"babel-node node_modules/.bin/babel-istanbul cover node_modules/.bin/_mocha --no-timeouts","debug":"mocha --require babel-core/register --no-timeouts","lint":"eslint --ext .js src","coveralls":"cat ./coverage/lcov.info | coveralls"},"pre-commit":["lint"],"dependencies":{"crequire":"^1.7.0","dora-anyproxy":"~3.8.4","is-plain-object":"~2.0.1","mime-db":"~1.21.0","mime-type":"~3.0.4","path-to-regexp":"~1.2.1","qs":"~6.0.1"},"devDependencies":{"babel-cli":"~6.4.0","babel-core":"~6.4.5","babel-istanbul":"^0.6.0","babel-plugin-add-module-exports":"~0.1.1","babel-preset-es2015":"~6.3.13","babel-preset-stage-0":"~6.3.13","coveralls":"^2.11.6","dora":"0.x","eslint":"~1.10.3","eslint-config-airbnb":"~3.1.0","expect":"~1.13.0","mocha":"~2.4.1","pre-commit":"~1.1.2","request":"^2.67.0"},"peerDependencies":{"dora":"0.4.x"},"babel":{"presets":["es2015","stage-0"],"plugins":["add-module-exports"]},"files":["lib"],"gitHead":"cb0d78fb700e7d80e09550180e6d4237759dcfbc","description":"[![NPM version](https://img.shields.io/npm/v/dora-plugin-proxy.svg?style=flat)](https://npmjs.org/package/dora-plugin-proxy) [![Build Status](https://img.shields.io/travis/dora-js/dora-plugin-proxy.svg?style=flat)](https://travis-ci.org/dora-js/dora-plugi","bugs":{"url":"https://github.com/dora-js/dora-plugin-proxy/issues"},"_id":"dora-plugin-proxy@0.8.5","_shasum":"a085c1f4d2552cc767ec718ef986cae5052ad00e","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.2.0","_npmUser":{"name":"sorrycc","email":"sorrycc@gmail.com"},"dist":{"shasum":"a085c1f4d2552cc767ec718ef986cae5052ad00e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/dora-plugin-proxy/-/dora-plugin-proxy-0.8.5.tgz"},"maintainers":[{"name":"pigcan","email":"jiangjay818@gmail.com"},{"name":"saiyagg","email":"saiyagg@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/dora-plugin-proxy-0.8.5.tgz_1477018059500_0.6265649737324566"},"directories":{}}},"name":"dora-plugin-proxy","time":{"modified":"2016-10-21T02:47:41.471Z","created":"2015-11-29T08:53:21.089Z","0.2.0":"2015-11-29T08:53:21.089Z","0.3.0-beta1":"2015-12-10T09:19:16.265Z","0.3.0-beta2":"2015-12-15T08:12:46.453Z","0.3.0-beta3":"2015-12-15T08:17:59.009Z","0.3.0-beta4":"2015-12-16T09:52:49.666Z","0.3.0-beta5":"2015-12-16T09:55:58.518Z","0.4.0":"2015-12-19T07:31:23.254Z","0.5.0":"2015-12-28T14:25:38.859Z","0.5.1":"2015-12-28T15:14:50.374Z","0.5.2":"2015-12-29T06:27:02.846Z","0.5.3":"2016-01-08T10:29:05.650Z","0.6.0":"2016-03-03T04:46:39.992Z","0.5.4":"2016-03-03T07:16:48.527Z","0.6.1":"2016-03-29T09:15:13.917Z","0.7.0":"2016-05-26T14:38:24.896Z","0.8.0":"2016-08-09T04:45:52.738Z","0.8.2":"2016-09-19T02:50:23.899Z","0.8.3":"2016-09-20T07:01:30.091Z","0.8.4":"2016-10-01T03:57:42.081Z","0.8.5":"2016-10-21T02:47:41.471Z"},"readmeFilename":"README.md","homepage":"https://github.com/dora-js/dora-plugin-proxy"}