{"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"keywords":["markdown","spa","website","blog","react"],"dist-tags":{"latest":"0.23.2"},"author":{"name":"Benjy Cui"},"description":"Transform Markdown(and other static files with transformers) into a SPA website using React.","readme":"# Bi Sheng\n\n[![](https://img.shields.io/travis/benjycui/bisheng.svg?style=flat-square)](https://travis-ci.org/benjycui/bisheng)\n[![npm package](https://img.shields.io/npm/v/bisheng.svg?style=flat-square)](https://www.npmjs.org/package/bisheng)\n[![NPM downloads](http://img.shields.io/npm/dm/bisheng.svg?style=flat-square)](https://npmjs.org/package/bisheng)\n[![Dependency Status](https://david-dm.org/benjycui/bisheng.svg?style=flat-square)](https://david-dm.org/benjycui/bisheng)\n\n> [Bi Sheng](https://en.wikipedia.org/wiki/Bi_Sheng) was the Chinese inventor of the first known movable type technology.\n\n`bisheng` is designed to transform [Markdown](https://en.wikipedia.org/wiki/Markdown) into static websites and blogs using [React](https://facebook.github.io/react/).\n\n## Sites built with BiSheng\n\n* [A simple blog](http://benjycui.github.io/bisheng-theme-one/)\n* [Ant Design](http://ant.design)\n* [Ant Motion](http://motion.ant.design)\n* [Ant Design Mobile](http://mobile.ant.design/)\n\nYou can create a PR to extend this list with your amazing website which is built with BiSheng.\n\n## Features\n\n`bisheng` is based on [dora](https://github.com/dora-js/dora) & [webpack](https://webpack.github.io/) & [React](https://facebook.github.io/react/) & [react-router](https://github.com/ReactTraining/react-router), and it has the following features:\n\n* Support [`browserHistory`](https://github.com/reactjs/react-router/blob/master/docs/API.md#browserhistory), even in [GitHub Pages](https://pages.github.com/).\n* Lazy load for Markdown data.\n* [Plugin](https://github.com/benjycui/bisheng#plugins-arraystring) system to extend default behaviour.\n* Server-side render for SEO.\n\n## Big picture\n\n![Big picture of BiSheng](https://raw.githubusercontent.com/benjycui/bisheng/master/big-picture.jpg)\n\n## Usage\n\nInstallation:\n\n```bash\nnpm install --save-dev bisheng\n```\n\nThen, add `start` to [npm scripts](https://docs.npmjs.com/misc/scripts):\n\n```json\n{\n  \"scripts\": {\n    \"start\": \"bisheng start\"\n  }\n}\n```\n\nCreate `bisheng.config.js`, otherwise `bisheng` will use the default config:\n\n```js\nmodule.exports = {\n  source: './posts',\n  output: './_site',\n  theme: './_theme',\n  port: 8000,\n};\n```\n\n**Note:** please make sure that `source` and `theme` exists, and `theme` should not be an empty directory. Just use [bisheng-theme-one](https://github.com/benjycui/bisheng-theme-one), if you don't know how to develop a theme.\n\nNow, just run `npm start`.\n\n## Documentation\n\n### CLI\n\nWe can install `bisheng` as a cli command and explore what it can do by `bisheng -h`. However, the recommended way to use `bisheng` is to install it as `devDependencies`.\n\n```bash\n$ npm install -g bisheng\n$ bisheng -h\n  Usage: bisheng [command] [options]\n\n  Commands:\n\n    start [options]     to start a server\n    build [options]     to build and write static files to `config.output`\n    gh-pages [options]  to deploy website to gh-pages\n    help [cmd]          display help for [cmd]\n\n  Options:\n\n    -h, --help     output usage information\n    -V, --version  output the version number\n```\n\n### Configuration\n\n`bisheng` will read `bisheng.config.js` as its config file, but we can set the config file name by `--config`, something like this `bisheng --config another.config.js`.\n\nThe content of `bisheng.config.js` looks like this:\n\n```js\nmodule.exports = {\n  port: 8000,\n  source: './posts',\n  output: './_site',\n  theme: './_theme',\n  htmlTemplate: path.join(__dirname, '../template.html'),\n  doraConfig: {},\n  webpackConfig(config) {\n    return config;\n  },\n\n  entryName: 'index',\n  root: '/',\n};\n```\n\n#### port: Number\n\n> default: 8000\n\nTo set the port which will be listened when we start a local server.\n\n#### source: String | Array[String] | Object{ [category]: String | Array[String]}\n\n> default: './posts'\n\nTo set directory/directories where we place Markdown files.\n\nAnd all the Markdown files in `source` will be parsed and then structured as a tree data, for example:\n\n```bash\nposts\n├── a.md\n└── b.md\n```\n\nWill output a **Markdown data tree**:\n\n```js\n{\n  posts: {\n    a: {...},\n    b: {...},\n  },\n}\n```\n\nAnd each Markdown file will be parsed as a **Markdown data**. Actually, a Markdown data is the returned value of [mark-twain](https://github.com/benjycui/mark-twain), and it could be preprocessed by plugins.\n\n#### output: String\n\n> default: './_site'\n\nTo set directory where `bisheng` will generate (HTML & CSS & JavaScript) files to.\n\n#### theme: String\n\n> default: './_theme'\n\nTo set directory where we put the theme of website, and it also can be a npm package name.\n\n[**More about theme**](https://github.com/benjycui/bisheng/tree/master/docs/theme.md).\n\n* [bisheng-theme-one](https://github.com/benjycui/bisheng-theme-one)\n\n#### themeConfig: any\n\n> undefined\n\nA set of configuration that your theme provides, and then your theme can read it from `props.themeConfig`.\n\n#### htmlTemplate: String\n\n> default: [`bisheng/lib/template.html`](https://github.com/benjycui/bisheng/blob/master/src/template.html)\n\nThe HTML template which will be use to generate HTML files which will be sent to users.\n\n**Note:** template will be parsed by [nunjucks](https://mozilla.github.io/nunjucks/), and you can use the following variables in this template:\n\n* [`root`](https://github.com/benjycui/bisheng#root-string)\n\n#### doraConfig: Object\n\n> default: {}\n\nYou can consult [dora's documentation](https://github.com/dora-js/dora).\n\n#### webpackConfig: (config) => config\n\n> default: (config) => config\n\nTo modify the webpack config, you can extend the config like [this](https://github.com/ant-tool/atool-build#配置扩展).\n\n#### entryName: String\n\n> default: 'index'\n\nThe name of files which will be generated by webpack, such as `[entryName].js` & `[entryName].css`.\n\n#### root: String\n\n> default: '/'\n\nIf the website will be deployed under a sub-directory of a domain (something like `http://benjycui.github.io/bisheng-theme-one/`), we must set it (such as `/bisheng-theme-one/`).\n\n## License\n\nMIT\n","repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"users":{"rexpan":true},"bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"license":"MIT","versions":{"0.1.0-beta.0":{"name":"bisheng","version":"0.1.0-beta.0","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint ./lib","eslint-fix":"eslint --fix ./lib","test":"echo \"Error: no test specified\" && exit 1"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","commander":"^2.9.0","dora":"^0.3.2","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.3.0","dora-plugin-webpack":"^0.6.4","dora-plugin-webpack-hmr":"^0.1.1","exist.js":"^0.1.3","jsonml-to-react-component":"^0.2.2","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0"},"devDependencies":{"eslint":"^2.9.0","eslint-config-airbnb":"^8.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^1.0.4","eslint-plugin-react":"^5.0.1","pre-commit":"^1.1.2"},"gitHead":"aa5bdfb0bef27e6813a6659b1f8ece8fa52ae746","_id":"bisheng@0.1.0-beta.0","_shasum":"95753c57a902aec8ea75cd1190e25816729a9fe3","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"95753c57a902aec8ea75cd1190e25816729a9fe3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.1.0-beta.0.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.1.0-beta.0.tgz_1462413455662_0.3102674651890993"},"directories":{}},"0.1.0-beta.1":{"name":"bisheng","version":"0.1.0-beta.1","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint ./lib","eslint-fix":"eslint --fix ./lib","test":"echo \"Error: no test specified\" && exit 1"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","commander":"^2.9.0","dora":"^0.3.2","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.3.0","dora-plugin-webpack":"^0.6.4","dora-plugin-webpack-hmr":"^0.1.1","exist.js":"^0.1.3","jsonml-to-react-component":"^0.2.2","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0"},"devDependencies":{"eslint":"^2.9.0","eslint-config-airbnb":"^8.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^1.0.4","eslint-plugin-react":"^5.0.1","pre-commit":"^1.1.2"},"gitHead":"ea7ce65f15b05fb1d96933a023bbe0a23ba8c5be","_id":"bisheng@0.1.0-beta.1","_shasum":"da447973a0bda144a0039c2b32390a06f586ce8b","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"da447973a0bda144a0039c2b32390a06f586ce8b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.1.0-beta.1.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/bisheng-0.1.0-beta.1.tgz_1462434905572_0.3827812969684601"},"directories":{}},"0.1.0-beta.2":{"name":"bisheng","version":"0.1.0-beta.2","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint ./lib","eslint-fix":"eslint --fix ./lib","test":"echo \"Error: no test specified\" && exit 1"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","commander":"^2.9.0","dora":"^0.3.2","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.3.0","dora-plugin-webpack":"^0.6.4","dora-plugin-webpack-hmr":"^0.1.1","exist.js":"^0.1.3","jsonml-to-react-component":"^0.2.2","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0"},"devDependencies":{"eslint":"^2.9.0","eslint-config-airbnb":"^8.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^1.0.4","eslint-plugin-react":"^5.0.1","pre-commit":"^1.1.2"},"gitHead":"cff3f59b72e42ff1c19d25c5940b0584a5a3cfce","_id":"bisheng@0.1.0-beta.2","_shasum":"d255e9f2b0fb83ec7755f14e4a5b68284748201f","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"d255e9f2b0fb83ec7755f14e4a5b68284748201f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.1.0-beta.2.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/bisheng-0.1.0-beta.2.tgz_1462441877328_0.2550662267021835"},"directories":{}},"0.1.0-beta.3":{"name":"bisheng","version":"0.1.0-beta.3","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint ./lib","eslint-fix":"eslint --fix ./lib","test":"echo \"Error: no test specified\" && exit 1"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","commander":"^2.9.0","dora":"^0.3.2","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.3.0","dora-plugin-webpack":"^0.6.4","dora-plugin-webpack-hmr":"^0.1.1","exist.js":"^0.1.3","jsonml-to-react-component":"^0.2.2","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-airbnb":"^8.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^1.0.4","eslint-plugin-react":"^5.0.1","pre-commit":"^1.1.2"},"gitHead":"5c57d79e02c0bbf16fb3e225a51bb47709c6b73b","_id":"bisheng@0.1.0-beta.3","_shasum":"d838d7a657afa82b543777df4b6d1ca8199c3724","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"d838d7a657afa82b543777df4b6d1ca8199c3724","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.1.0-beta.3.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/bisheng-0.1.0-beta.3.tgz_1462443943996_0.43857909901998937"},"directories":{}},"0.1.0-beta.4":{"name":"bisheng","version":"0.1.0-beta.4","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint ./lib","eslint-fix":"eslint --fix ./lib","test":"echo \"Error: no test specified\" && exit 1"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","commander":"^2.9.0","dora":"^0.3.2","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.3.0","dora-plugin-webpack":"^0.6.4","dora-plugin-webpack-hmr":"^0.1.1","exist.js":"^0.1.3","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-airbnb":"^8.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^1.0.4","eslint-plugin-react":"^5.0.1","pre-commit":"^1.1.2"},"gitHead":"3d8324817d9bcfdd5c1d387ed7caf29b560bce2a","_id":"bisheng@0.1.0-beta.4","_shasum":"d4e590eb530544599f5a1fc48ddcc83a45fb14d5","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"d4e590eb530544599f5a1fc48ddcc83a45fb14d5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.1.0-beta.4.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/bisheng-0.1.0-beta.4.tgz_1462529453675_0.5302617230918258"},"directories":{}},"0.1.0":{"name":"bisheng","version":"0.1.0","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint ./lib","eslint-fix":"eslint --fix ./lib","test":"echo \"Error: no test specified\" && exit 1"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","commander":"^2.9.0","dora":"^0.3.2","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.3.0","dora-plugin-webpack":"^0.6.4","dora-plugin-webpack-hmr":"^0.1.1","exist.js":"^0.1.3","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-airbnb":"^8.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^1.0.4","eslint-plugin-react":"^5.0.1","pre-commit":"^1.1.2"},"gitHead":"3255876a0e90a3aaf6b6e94983075db9188a1d28","_id":"bisheng@0.1.0","_shasum":"962b138bea1e6e45f1fca41f7fa6609d0becc506","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"962b138bea1e6e45f1fca41f7fa6609d0becc506","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.1.0.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.1.0.tgz_1462871993657_0.7083956983406097"},"directories":{}},"0.1.1":{"name":"bisheng","version":"0.1.1","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint ./lib","eslint-fix":"eslint --fix ./lib","test":"echo \"Error: no test specified\" && exit 1"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","commander":"^2.9.0","dora":"^0.3.2","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.3.0","dora-plugin-webpack":"^0.6.4","dora-plugin-webpack-hmr":"^0.1.1","exist.js":"^0.1.3","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-airbnb":"^8.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^1.0.4","eslint-plugin-react":"^5.0.1","pre-commit":"^1.1.2"},"gitHead":"27dcd87a0c71b890f5085e54ec4db8594ae567e2","_id":"bisheng@0.1.1","_shasum":"4c322bc615b46dfdae1cfea72a4106cc7c56dbe5","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"4c322bc615b46dfdae1cfea72a4106cc7c56dbe5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.1.1.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.1.1.tgz_1462873292986_0.27445307839661837"},"directories":{}},"0.1.2":{"name":"bisheng","version":"0.1.2","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint ./lib","eslint-fix":"eslint --fix ./lib","test":"echo \"Error: no test specified\" && exit 1"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","commander":"^2.9.0","dora":"^0.3.2","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.3.0","dora-plugin-webpack":"^0.6.4","dora-plugin-webpack-hmr":"^0.1.1","exist.js":"^0.1.3","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-airbnb":"^8.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^1.0.4","eslint-plugin-react":"^5.0.1","pre-commit":"^1.1.2"},"gitHead":"a4b9991783b6d7944b1a03a187e141cb7eb8a9d6","_id":"bisheng@0.1.2","_shasum":"04dd64e81c8ca765c5cf315c30c7b887c0e5405a","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"04dd64e81c8ca765c5cf315c30c7b887c0e5405a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.1.2.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/bisheng-0.1.2.tgz_1462874327839_0.8147134315222502"},"directories":{}},"0.1.3":{"name":"bisheng","version":"0.1.3","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint ./lib","eslint-fix":"eslint --fix ./lib","test":"echo \"Error: no test specified\" && exit 1"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","commander":"^2.9.0","dora":"^0.3.2","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.3.0","dora-plugin-webpack":"^0.6.4","dora-plugin-webpack-hmr":"^0.1.1","exist.js":"^0.1.3","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-airbnb":"^8.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^1.0.4","eslint-plugin-react":"^5.0.1","pre-commit":"^1.1.2"},"gitHead":"a203eccf9f996d1e5c75231f77c684bb68d5ca30","_id":"bisheng@0.1.3","_shasum":"408b1e9bd0ecb24783208c6655d34584aaa6371d","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"408b1e9bd0ecb24783208c6655d34584aaa6371d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.1.3.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/bisheng-0.1.3.tgz_1462957442677_0.8132769563235343"},"directories":{}},"0.1.4":{"name":"bisheng","version":"0.1.4","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint ./lib","eslint-fix":"eslint --fix ./lib","test":"echo \"Error: no test specified\" && exit 1"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","commander":"^2.9.0","dora":"^0.3.2","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.3.0","dora-plugin-webpack":"^0.6.4","dora-plugin-webpack-hmr":"^0.1.1","exist.js":"^0.1.3","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-airbnb":"^8.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^1.0.4","eslint-plugin-react":"^5.0.1","pre-commit":"^1.1.2"},"gitHead":"4524c37dacbabd160ce7d0a12cd2ce422895a7ba","_id":"bisheng@0.1.4","_shasum":"2e45969fe3cb520b89a78bfb45019d9d1c29d4f3","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"2e45969fe3cb520b89a78bfb45019d9d1c29d4f3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.1.4.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.1.4.tgz_1462958671091_0.40448973793536425"},"directories":{}},"0.1.5":{"name":"bisheng","version":"0.1.5","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","commander":"^2.9.0","dora":"^0.3.2","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.3.0","dora-plugin-webpack":"^0.6.4","dora-plugin-webpack-hmr":"^0.1.1","exist.js":"^0.1.3","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"59ab18e7ede482e073cbe4326de916f28187af05","_id":"bisheng@0.1.5","_shasum":"f92c8f5d58ed11142d5b619652cd7e238bd1ba7c","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"f92c8f5d58ed11142d5b619652cd7e238bd1ba7c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.1.5.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/bisheng-0.1.5.tgz_1463109907315_0.7915699661243707"},"directories":{}},"0.2.0":{"name":"bisheng","version":"0.2.0","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","babel-polyfill":"^6.8.0","commander":"^2.9.0","dora":"^0.3.2","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.3.0","dora-plugin-webpack":"^0.6.4","dora-plugin-webpack-hmr":"^0.1.1","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"112c09c63cf745a81b9e13cc6d2cea68e0d56d9c","_id":"bisheng@0.2.0","_shasum":"db7c46918e618c6eb335fbbbd6934f2f05f5b560","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"db7c46918e618c6eb335fbbbd6934f2f05f5b560","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.2.0.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.2.0.tgz_1463536854507_0.07905099564231932"},"directories":{}},"0.2.1":{"name":"bisheng","version":"0.2.1","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","babel-polyfill":"^6.8.0","commander":"^2.9.0","dora":"^0.3.2","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.3.0","dora-plugin-webpack":"^0.6.4","dora-plugin-webpack-hmr":"^0.1.1","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"7ff8ed6c6aa57cf9196df39be56319918de5ab38","_id":"bisheng@0.2.1","_shasum":"3a1f8adeedb8719de20c26584e316c45b9b6ca23","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"3a1f8adeedb8719de20c26584e316c45b9b6ca23","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.2.1.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.2.1.tgz_1463555497967_0.6867797044105828"},"directories":{}},"0.3.0":{"name":"bisheng","version":"0.3.0","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","babel-polyfill":"^6.8.0","commander":"^2.9.0","dora":"^0.3.2","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.3.0","dora-plugin-webpack":"^0.6.4","dora-plugin-webpack-hmr":"^0.1.1","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"2c1fd7cd1e569f0529ff5b101a516ba9421b194a","_id":"bisheng@0.3.0","_shasum":"c116b87c28dcddf513aad981a26612c7af73263e","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"c116b87c28dcddf513aad981a26612c7af73263e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.3.0.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/bisheng-0.3.0.tgz_1463625799372_0.9817046518437564"},"directories":{}},"0.3.1":{"name":"bisheng","version":"0.3.1","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","babel-polyfill":"^6.8.0","commander":"^2.9.0","dora":"^0.3.2","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.3.0","dora-plugin-webpack":"^0.6.4","dora-plugin-webpack-hmr":"^0.1.1","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"f98f5a76b36d2f9c310b794dbf193a6ec870eccb","_id":"bisheng@0.3.1","_shasum":"effe9751aaf9fea01baa60521f233002bf019cb2","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"effe9751aaf9fea01baa60521f233002bf019cb2","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.3.1.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/bisheng-0.3.1.tgz_1463644762922_0.4259302173741162"},"directories":{}},"0.3.2":{"name":"bisheng","version":"0.3.2","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","babel-polyfill":"^6.8.0","commander":"^2.9.0","dora":"^0.3.2","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.3.0","dora-plugin-webpack":"^0.6.4","dora-plugin-webpack-hmr":"^0.1.1","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"ca089f0110656aa7283cb3f978938b08db83aa29","_id":"bisheng@0.3.2","_shasum":"732252b27097e339fc1152faf972ef014366a40e","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"732252b27097e339fc1152faf972ef014366a40e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.3.2.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.3.2.tgz_1464057133173_0.41624903911724687"},"directories":{}},"0.4.0-beta.0":{"name":"bisheng","version":"0.4.0-beta.0","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","babel-polyfill":"^6.8.0","commander":"^2.9.0","dora":"^0.3.2","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.3.0","dora-plugin-webpack":"^0.6.4","dora-plugin-webpack-hmr":"^0.1.1","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"11cc7823397b8ea79336f6bed5584594df4497d4","_id":"bisheng@0.4.0-beta.0","_shasum":"8052b7e0a5f3aeff31a0cb66a079dc4eac1415dc","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"8052b7e0a5f3aeff31a0cb66a079dc4eac1415dc","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.4.0-beta.0.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/bisheng-0.4.0-beta.0.tgz_1464062176921_0.8735466736834496"},"directories":{}},"0.4.0":{"name":"bisheng","version":"0.4.0","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","babel-polyfill":"^6.8.0","commander":"^2.9.0","dora":"^0.3.2","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.3.0","dora-plugin-webpack":"^0.6.4","dora-plugin-webpack-hmr":"^0.1.1","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"f0f005738fe6f754ffe1f0230c98c28d7d454cfb","_id":"bisheng@0.4.0","_shasum":"ecee3e4be8c090db833bbfeabaea0bf9d3fb59f0","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"ecee3e4be8c090db833bbfeabaea0bf9d3fb59f0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.4.0.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/bisheng-0.4.0.tgz_1464071401027_0.7777226541657001"},"directories":{}},"0.4.1":{"name":"bisheng","version":"0.4.1","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","babel-polyfill":"^6.8.0","commander":"^2.9.0","dora":"^0.3.2","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.3.0","dora-plugin-webpack":"^0.6.4","dora-plugin-webpack-hmr":"^0.1.1","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"cec0f7459ec315836eab12cde7a2c5c01a504a7c","_id":"bisheng@0.4.1","_shasum":"7545e52dbca782eada9d20620a71bb23e4cbdf35","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"7545e52dbca782eada9d20620a71bb23e4cbdf35","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.4.1.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.4.1.tgz_1464071444282_0.33254328090697527"},"directories":{}},"0.5.0":{"name":"bisheng","version":"0.5.0","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","babel-polyfill":"^6.8.0","commander":"^2.9.0","dora":"^0.3.2","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.3.0","dora-plugin-webpack":"^0.6.4","dora-plugin-webpack-hmr":"^0.1.1","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"00107c49b4a87973ba126d2f78a81a827e6825da","_id":"bisheng@0.5.0","_shasum":"177eec3079527fed29b0a8bbe302769e764b37db","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"177eec3079527fed29b0a8bbe302769e764b37db","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.5.0.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.5.0.tgz_1464246711453_0.3876816718839109"},"directories":{}},"0.5.1":{"name":"bisheng","version":"0.5.1","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","babel-polyfill":"^6.8.0","bundle-loader":"^0.5.4","commander":"^2.9.0","dora":"^0.3.2","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.3.0","dora-plugin-webpack":"^0.6.4","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"313ae6aedde94543801ed0fe27e7e737714faab3","_id":"bisheng@0.5.1","_shasum":"b7490cff53202054253e16fd433dfeb6ad7bf5c8","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"b7490cff53202054253e16fd433dfeb6ad7bf5c8","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.5.1.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/bisheng-0.5.1.tgz_1464925701626_0.4067764258943498"},"directories":{}},"0.5.2":{"name":"bisheng","version":"0.5.2","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","babel-polyfill":"^6.8.0","bundle-loader":"^0.5.4","commander":"^2.9.0","dora":"^0.3.2","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.3.0","dora-plugin-webpack":"^0.6.4","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"8502467ca25e9dbcceee5b1006e38248551be741","_id":"bisheng@0.5.2","_shasum":"a4767200eba1eeabe654c15fab8c7257b5bbb98d","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"a4767200eba1eeabe654c15fab8c7257b5bbb98d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.5.2.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.5.2.tgz_1464932717701_0.1204280334059149"},"directories":{}},"0.5.3":{"name":"bisheng","version":"0.5.3","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","babel-polyfill":"^6.8.0","bundle-loader":"^0.5.4","commander":"^2.9.0","dora":"^0.3.2","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.3.0","dora-plugin-webpack":"^0.6.4","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"25179b1f0a572e3fb05640cb63a7ecfab168aefc","_id":"bisheng@0.5.3","_shasum":"9d611ff0aad4f588aef12edcf07d3dbde05add0d","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"9d611ff0aad4f588aef12edcf07d3dbde05add0d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.5.3.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/bisheng-0.5.3.tgz_1464933147886_0.9310693067964166"},"directories":{}},"0.5.4":{"name":"bisheng","version":"0.5.4","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","babel-polyfill":"^6.8.0","bundle-loader":"^0.5.4","commander":"^2.9.0","dora":"^0.3.2","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.3.0","dora-plugin-webpack":"^0.6.4","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"e0d158243b0237f32dac7b70c17f65618c742f99","_id":"bisheng@0.5.4","_shasum":"0b5ce1a48a84de9a616041b4d042bb2d7e28e4a0","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"0b5ce1a48a84de9a616041b4d042bb2d7e28e4a0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.5.4.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/bisheng-0.5.4.tgz_1464939427175_0.2514332386199385"},"directories":{}},"0.5.5":{"name":"bisheng","version":"0.5.5","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","babel-polyfill":"^6.8.0","bundle-loader":"^0.5.4","commander":"^2.9.0","dora":"^0.3.2","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.3.0","dora-plugin-webpack":"^0.6.4","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"81084034eaf693aaf97139a03e14887117029496","_id":"bisheng@0.5.5","_shasum":"710f3198bacdab00ce062bab220987e4263da1ca","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"710f3198bacdab00ce062bab220987e4263da1ca","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.5.5.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.5.5.tgz_1465095093943_0.982018556445837"},"directories":{}},"0.5.6":{"name":"bisheng","version":"0.5.6","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","babel-polyfill":"^6.8.0","bundle-loader":"^0.5.4","commander":"^2.9.0","dora":"^0.3.2","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.3.0","dora-plugin-webpack":"^0.6.4","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"4862c6e09bf89e476c0a98d6a893dba87411c991","_id":"bisheng@0.5.6","_shasum":"0729193a82d471c3595c04b7603527a94a6da0b5","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"0729193a82d471c3595c04b7603527a94a6da0b5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.5.6.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/bisheng-0.5.6.tgz_1465179530788_0.7786988827865571"},"directories":{}},"0.6.0":{"name":"bisheng","version":"0.6.0","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","babel-polyfill":"^6.8.0","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.3.2","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.3.0","dora-plugin-webpack":"^0.6.4","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","promise-loader":"^1.0.0","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"885bfe800c9612c1aec495a0d4dc6df9338c3e18","_id":"bisheng@0.6.0","_shasum":"e225b72852bc649ca06a6852b0d686c18e244142","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"e225b72852bc649ca06a6852b0d686c18e244142","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.6.0.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/bisheng-0.6.0.tgz_1465200444503_0.003829978872090578"},"directories":{}},"0.6.1":{"name":"bisheng","version":"0.6.1","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","babel-polyfill":"^6.8.0","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.3.2","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.3.0","dora-plugin-webpack":"^0.6.4","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","promise-loader":"^1.0.0","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"d6585c334843905473ea426c9ce0e148c6e73ffe","_id":"bisheng@0.6.1","_shasum":"8c82415283c13d3f5327f81ae70cb72802dd80ff","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"8c82415283c13d3f5327f81ae70cb72802dd80ff","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.6.1.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/bisheng-0.6.1.tgz_1465262486421_0.4062129631638527"},"directories":{}},"0.6.2":{"name":"bisheng","version":"0.6.2","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","babel-polyfill":"^6.8.0","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.3.2","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.3.0","dora-plugin-webpack":"^0.6.4","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","promise-loader":"^1.0.0","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"cdea3288833417eefb2d08982e048bddc22b7eb3","_id":"bisheng@0.6.2","_shasum":"797516c54a745a9d0198469e695a19b24dd4462e","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"797516c54a745a9d0198469e695a19b24dd4462e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.6.2.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/bisheng-0.6.2.tgz_1465441290168_0.5597544743213803"},"directories":{}},"0.6.3":{"name":"bisheng","version":"0.6.3","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","babel-polyfill":"^6.8.0","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.3.2","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.3.0","dora-plugin-webpack":"^0.6.4","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"39b74fdfc9fc7e350eb665a41dd211bac9aa5b5e","_id":"bisheng@0.6.3","_shasum":"95a2b88a87e5cf6fea2cf890272ac76ab07dcaa5","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"95a2b88a87e5cf6fea2cf890272ac76ab07dcaa5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.6.3.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.6.3.tgz_1465447758091_0.418147288961336"},"directories":{}},"0.6.4":{"name":"bisheng","version":"0.6.4","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","babel-polyfill":"^6.8.0","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.3.2","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.3.0","dora-plugin-webpack":"^0.6.4","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"39b74fdfc9fc7e350eb665a41dd211bac9aa5b5e","_id":"bisheng@0.6.4","_shasum":"c3f10fd8a528b0ae65562fe19d08a777f707efac","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"c3f10fd8a528b0ae65562fe19d08a777f707efac","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.6.4.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/bisheng-0.6.4.tgz_1465447795014_0.8388431388884783"},"directories":{}},"0.6.5":{"name":"bisheng","version":"0.6.5","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","babel-polyfill":"^6.8.0","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.3.2","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.3.0","dora-plugin-webpack":"^0.6.4","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"973bc3922ee40709d060cd9c1a56b6a12ec812bc","_id":"bisheng@0.6.5","_shasum":"af1c6f10a75366f42edc0930bd54cecf506093c1","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"af1c6f10a75366f42edc0930bd54cecf506093c1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.6.5.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/bisheng-0.6.5.tgz_1465448227217_0.4861240063328296"},"directories":{}},"0.7.0":{"name":"bisheng","version":"0.7.0","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","babel-polyfill":"^6.8.0","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.3.2","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.3.0","dora-plugin-webpack":"^0.6.4","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"0b794d7785c9ce268e1deabf7760325354cbb770","_id":"bisheng@0.7.0","_shasum":"a593f001ec5da67bf1e0ddca8ad394b6739b1436","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"a593f001ec5da67bf1e0ddca8ad394b6739b1436","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.7.0.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.7.0.tgz_1465455020802_0.01838524336926639"},"directories":{}},"0.7.1":{"name":"bisheng","version":"0.7.1","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","babel-polyfill":"^6.8.0","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.3.2","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.3.0","dora-plugin-webpack":"^0.6.4","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"be8b86fed8a8c3cb7c3a8fca116f18d0c7e20437","_id":"bisheng@0.7.1","_shasum":"a59d205f9389d0bbcafc6c436adae940ec67d8c8","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"a59d205f9389d0bbcafc6c436adae940ec67d8c8","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.7.1.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.7.1.tgz_1465868717052_0.919820488197729"},"directories":{}},"0.7.2":{"name":"bisheng","version":"0.7.2","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","babel-polyfill":"^6.8.0","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.3.2","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.3.0","dora-plugin-webpack":"^0.6.4","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"da485cbf483e7183870798db3ec0db09af147bbf","_id":"bisheng@0.7.2","_shasum":"8eef4f31d00d42a8197c59677ee79b2c90f78892","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"8eef4f31d00d42a8197c59677ee79b2c90f78892","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.7.2.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/bisheng-0.7.2.tgz_1466042467354_0.8564051624853164"},"directories":{}},"0.7.3":{"name":"bisheng","version":"0.7.3","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.3.2","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.3.0","dora-plugin-webpack":"^0.6.4","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"ac9af2f4600d33b2c7a2a748927a314ee098b59c","_id":"bisheng@0.7.3","_shasum":"9ab870bf7433c2bc8c741784846748b65f086b86","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"9ab870bf7433c2bc8c741784846748b65f086b86","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.7.3.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.7.3.tgz_1466069317177_0.9294509165920317"},"directories":{}},"0.7.4":{"name":"bisheng","version":"0.7.4","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.3.2","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.3.0","dora-plugin-webpack":"^0.6.4","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"65ba4588c4515e7e69c4c6d271940a5cf7f0c638","_id":"bisheng@0.7.4","_shasum":"08c52a1ab57a8d98ece2957e7fc9dd94cfdaec09","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"08c52a1ab57a8d98ece2957e7fc9dd94cfdaec09","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.7.4.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/bisheng-0.7.4.tgz_1468459679959_0.9320447286590934"},"directories":{}},"0.7.5":{"name":"bisheng","version":"0.7.5","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.3.2","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.3.0","dora-plugin-webpack":"^0.6.4","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"6b11b22c4fdb44306e181b2635c7860ed56b1254","_id":"bisheng@0.7.5","_shasum":"2e8cde9f7609449daaeb7443844b61bb04022799","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"2e8cde9f7609449daaeb7443844b61bb04022799","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.7.5.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.7.5.tgz_1468926270354_0.8664795947261155"},"directories":{}},"0.8.0-beta.0":{"name":"bisheng","version":"0.8.0-beta.0","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.3.2","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.3.0","dora-plugin-webpack":"^0.6.4","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"575cc03169eef64cb9c67ae2fa09a501b12a2ba8","_id":"bisheng@0.8.0-beta.0","_shasum":"7b0b9998c99ffb010057535ce6972d6a90409583","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"7b0b9998c99ffb010057535ce6972d6a90409583","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.8.0-beta.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.8.0-beta.0.tgz_1468982966051_0.45657398155890405"},"directories":{}},"0.7.6":{"name":"bisheng","version":"0.7.6","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.3.2","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.3.0","dora-plugin-webpack":"^0.6.4","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"499f1edf0ee6cdae71c38e7979573d9fa95c125e","_id":"bisheng@0.7.6","_shasum":"07b062ab2ae934f7045e02e77a47351466240c3d","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"07b062ab2ae934f7045e02e77a47351466240c3d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.7.6.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.7.6.tgz_1468986252634_0.8896954855881631"},"directories":{}},"0.8.0-beta.1":{"name":"bisheng","version":"0.8.0-beta.1","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.3.2","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.3.0","dora-plugin-webpack":"^0.6.4","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"7ff47fec40802e245b1e0ba0bf095cf238577211","_id":"bisheng@0.8.0-beta.1","_shasum":"87f8040d62b15aefbb5de6eb693cf69736f93823","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"87f8040d62b15aefbb5de6eb693cf69736f93823","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.8.0-beta.1.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.8.0-beta.1.tgz_1468986484989_0.8693394281435758"},"directories":{}},"0.8.0-beta.2":{"name":"bisheng","version":"0.8.0-beta.2","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.3.2","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.3.0","dora-plugin-webpack":"^0.6.4","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"c76196cdedaa27ca0e956866c062b06b2dcada08","_id":"bisheng@0.8.0-beta.2","_shasum":"934f3e6ad12fd8ed9644b4717c31fdd3c3c20e7e","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"934f3e6ad12fd8ed9644b4717c31fdd3c3c20e7e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.8.0-beta.2.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/bisheng-0.8.0-beta.2.tgz_1469007089326_0.7885621446184814"},"directories":{}},"0.7.7":{"name":"bisheng","version":"0.7.7","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.6.4","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"37c1c65ec21fec010d7c20bc563a7d60d2920584","_id":"bisheng@0.7.7","_shasum":"a957b3d613de910955b62e8c592d874f65fb307d","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"a957b3d613de910955b62e8c592d874f65fb307d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.7.7.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.7.7.tgz_1469418583207_0.7516802581958473"},"directories":{}},"0.8.0":{"name":"bisheng","version":"0.8.0","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.6.4","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"caf7349526ea44f7cadda49d0fc1e399dbee0501","_id":"bisheng@0.8.0","_shasum":"6999b03f9f136c2ad0b2c254b9d69e4d8e43cc21","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"6999b03f9f136c2ad0b2c254b9d69e4d8e43cc21","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.8.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.8.0.tgz_1469502010665_0.03594581037759781"},"directories":{}},"0.9.0":{"name":"bisheng","version":"0.9.0","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.6.4","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"516a9f5d735038d7bf4ee0bc027fd942696d6419","_id":"bisheng@0.9.0","_shasum":"1083fb59fc99933beacb2a2fcd8ea362a4f1b920","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"1083fb59fc99933beacb2a2fcd8ea362a4f1b920","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.9.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/bisheng-0.9.0.tgz_1469514336180_0.12278311559930444"},"directories":{}},"0.9.1":{"name":"bisheng","version":"0.9.1","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.6.4","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"e217459ebcea1a6b1eb2a92b104d6cb6ce78978f","_id":"bisheng@0.9.1","_shasum":"ca0492a6d46a2e8ce166bc0f3ae1738cb4a49d14","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"ca0492a6d46a2e8ce166bc0f3ae1738cb4a49d14","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.9.1.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.9.1.tgz_1469516067758_0.9697381164878607"},"directories":{}},"0.9.2":{"name":"bisheng","version":"0.9.2","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.6.4","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"d601b6604b812f46fa116857461528df6f021255","_id":"bisheng@0.9.2","_shasum":"885780abe1b2762b2f84770a9bf08c836edfd474","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"885780abe1b2762b2f84770a9bf08c836edfd474","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.9.2.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/bisheng-0.9.2.tgz_1469520207336_0.7281121097039431"},"directories":{}},"0.9.3":{"name":"bisheng","version":"0.9.3","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.6.4","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"a9881e8ff089e95eeb60f9e3362181c1d358635b","_id":"bisheng@0.9.3","_shasum":"3b6a4b9b8e050407c98a148032fee72e397df0c7","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"3b6a4b9b8e050407c98a148032fee72e397df0c7","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.9.3.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.9.3.tgz_1469524320007_0.16085224016569555"},"directories":{}},"0.9.4":{"name":"bisheng","version":"0.9.4","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.6.4","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"12441c7dd822cdfa55d9f51355b42dd0822db49b","_id":"bisheng@0.9.4","_shasum":"3db82589b79b3deec649812de7d899e51924886e","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"3db82589b79b3deec649812de7d899e51924886e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.9.4.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.9.4.tgz_1469529536920_0.27041091211140156"},"directories":{}},"0.9.5":{"name":"bisheng","version":"0.9.5","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.6.4","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"187e008bad7b00352a65eeb29079ede31f3b8ab0","_id":"bisheng@0.9.5","_shasum":"e20240d8889d0544891a040a6c048a54627a3eb6","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"e20240d8889d0544891a040a6c048a54627a3eb6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.9.5.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/bisheng-0.9.5.tgz_1469531388594_0.3631887931842357"},"directories":{}},"0.9.6":{"name":"bisheng","version":"0.9.6","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.6.4","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"90593de7521bf2f012c031af8bad828bb0a61ac2","_id":"bisheng@0.9.6","_shasum":"5429d23b37e0854bcfe7785fe97569c777fa74f4","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"5429d23b37e0854bcfe7785fe97569c777fa74f4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.9.6.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.9.6.tgz_1469761166396_0.8290596501901746"},"directories":{}},"0.9.7":{"name":"bisheng","version":"0.9.7","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.6.4","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"f989a6521ea79bb8c0b06ffa0a3f79c08a0c8f4c","_id":"bisheng@0.9.7","_shasum":"64e3be145a686c692d0fe55c72997397d29edf52","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"64e3be145a686c692d0fe55c72997397d29edf52","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.9.7.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/bisheng-0.9.7.tgz_1469764705344_0.6635941613931209"},"directories":{}},"0.10.0":{"name":"bisheng","version":"0.10.0","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.6.4","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"fca0792cdb2bc29f3fff7ba9686f0279d93e241f","_id":"bisheng@0.10.0","_shasum":"9a5fd9912c82142c2375303c30b9c0451cfccba2","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"9a5fd9912c82142c2375303c30b9c0451cfccba2","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.10.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/bisheng-0.10.0.tgz_1469784464871_0.9674751528073102"},"directories":{}},"0.10.1":{"name":"bisheng","version":"0.10.1","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.6.4","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"f118493be81f8dc61ba16b7895f850104203f586","_id":"bisheng@0.10.1","_shasum":"a433f1613da3479494bd0f8e0b8d69fdee810ac5","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"a433f1613da3479494bd0f8e0b8d69fdee810ac5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.10.1.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.10.1.tgz_1469786815231_0.7410841439850628"},"directories":{}},"0.10.2":{"name":"bisheng","version":"0.10.2","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.6.4","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"22f62fb76a535dff1523d8d407dbcc0c18550067","_id":"bisheng@0.10.2","_shasum":"33bcf27d08eaf92733ef18ab9778a454eb54e171","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"33bcf27d08eaf92733ef18ab9778a454eb54e171","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.10.2.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.10.2.tgz_1470022371926_0.26434365776367486"},"directories":{}},"0.10.3":{"name":"bisheng","version":"0.10.3","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.6.4","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"26fc9b0d1f07688341eee3ede72c7b5e0d31275e","_id":"bisheng@0.10.3","_shasum":"f99fe86354486cbef0566a9f82ad64e9664656e5","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"f99fe86354486cbef0566a9f82ad64e9664656e5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.10.3.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/bisheng-0.10.3.tgz_1470035746292_0.04979950422421098"},"directories":{}},"0.10.4":{"name":"bisheng","version":"0.10.4","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.6.4","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"196c3d2f285b34d526683fb1b532b954e52f9259","_id":"bisheng@0.10.4","_shasum":"1f1db01e3994dcf3c613880f1ec6df092f4c8fc3","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"1f1db01e3994dcf3c613880f1ec6df092f4c8fc3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.10.4.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.10.4.tgz_1470041277842_0.9039340920280665"},"directories":{}},"0.11.0-beta.0":{"name":"bisheng","version":"0.11.0-beta.0","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.6.4","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"f4a5b842f5154f5a43cf32968ec6e5295c365cdd","_id":"bisheng@0.11.0-beta.0","_shasum":"e492dfc8711978a4fc123033caa8fdf8b1bb9409","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"e492dfc8711978a4fc123033caa8fdf8b1bb9409","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.11.0-beta.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.11.0-beta.0.tgz_1470199771494_0.542013970669359"},"directories":{}},"0.11.0":{"name":"bisheng","version":"0.11.0","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.6.4","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"180394498979c9cab9283ee5c42073fca881b321","_id":"bisheng@0.11.0","_shasum":"cec6c81197590ad4e5a88301d37457032665a44d","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"cec6c81197590ad4e5a88301d37457032665a44d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.11.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.11.0.tgz_1470205393879_0.30731672374531627"},"directories":{}},"0.12.0":{"name":"bisheng","version":"0.12.0","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.6.4","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"804594c00f335a84a899428f603b52d86330a8f6","_id":"bisheng@0.12.0","_shasum":"c958caec4351412ef47b9b57bd82dbb82f91198d","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"c958caec4351412ef47b9b57bd82dbb82f91198d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.12.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.12.0.tgz_1470215950871_0.8092705230228603"},"directories":{}},"0.12.1":{"name":"bisheng","version":"0.12.1","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.7.1","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.6.4","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"af28bb4f1e307925475ee9e83f80f54d090597cd","_id":"bisheng@0.12.1","_shasum":"4b4f62266fa2224ca41f630044c289514f04e52a","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"4b4f62266fa2224ca41f630044c289514f04e52a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.12.1.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.12.1.tgz_1470217440205_0.37607301003299654"},"directories":{}},"0.12.2":{"name":"bisheng","version":"0.12.2","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.8.0","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.6.4","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"53af691d1d20fd2e6425b3aa6d8b3524ef0e49e1","_id":"bisheng@0.12.2","_shasum":"8931281fd999678370395e481c09170f85b3aabb","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"8931281fd999678370395e481c09170f85b3aabb","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.12.2.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/bisheng-0.12.2.tgz_1473389895357_0.786183588206768"},"directories":{}},"0.12.3":{"name":"bisheng","version":"0.12.3","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.8.0","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.1.1","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.6.4","exist.js":"^0.2.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.21.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"c62ef9fb6f58919157a71efab91874dde0b16dde","_id":"bisheng@0.12.3","_shasum":"000568d786f3527ccc66582cb08756a1324a19f9","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"000568d786f3527ccc66582cb08756a1324a19f9","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.12.3.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.12.3.tgz_1474361050585_0.49780655186623335"},"directories":{}},"0.12.4":{"name":"bisheng","version":"0.12.4","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.8.0","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"5e140bac98fcd57b65024a9f799928ff9bb96835","_id":"bisheng@0.12.4","_shasum":"fd940f111f328e6300db39cf756b03a6295678e5","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"fd940f111f328e6300db39cf756b03a6295678e5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.12.4.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/bisheng-0.12.4.tgz_1474942917037_0.13070100429467857"},"directories":{}},"0.12.5":{"name":"bisheng","version":"0.12.5","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.8.0","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"7da5e510cb2f93a575a611abd5367897102b720c","_id":"bisheng@0.12.5","_shasum":"3b566813a55cd11402f0370752dfc1d70b42c4b0","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"3b566813a55cd11402f0370752dfc1d70b42c4b0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.12.5.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.12.5.tgz_1474962242028_0.1851870585232973"},"directories":{}},"0.12.6":{"name":"bisheng","version":"0.12.6","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.8.0","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"3ed9256b5d1facc2ce0775ad5868d3ffbf26eb40","_id":"bisheng@0.12.6","_shasum":"9bad35c60c825dbd9c32eb0e1485e9d83553d4da","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"9bad35c60c825dbd9c32eb0e1485e9d83553d4da","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.12.6.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.12.6.tgz_1475025664851_0.22090874752029777"},"directories":{}},"0.12.7":{"name":"bisheng","version":"0.12.7","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.8.0","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.4.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"21829b65578b7b0f6e2bb72cf23beda80da7e2f3","_id":"bisheng@0.12.7","_shasum":"204879187481128213c41b8271462a0d8eddbdb0","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"204879187481128213c41b8271462a0d8eddbdb0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.12.7.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/bisheng-0.12.7.tgz_1476776452916_0.6109077520668507"},"directories":{}},"0.12.8":{"name":"bisheng","version":"0.12.8","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./lib ./test","eslint-fix":"eslint .eslintrc.js --fix ./lib ./test","test":"npm run lint && mocha --recursive"},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.9.0","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.5.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"3ad12688a34c5922cf7c7a553920828d14f246d3","_id":"bisheng@0.12.8","_shasum":"aa35c29751b7c999c8ee22fe7677a6ec835013b7","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"aa35c29751b7c999c8ee22fe7677a6ec835013b7","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.12.8.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.12.8.tgz_1476777159318_0.01869725016877055"},"directories":{}},"0.12.9":{"name":"bisheng","version":"0.12.9","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"scripts":{"lint":"eslint .eslintrc.js ./src ./test","eslint-fix":"eslint .eslintrc.js --fix ./src ./test","test":"npm run lint && mocha --recursive","prepublish":"babel src --out-dir lib && cp src/template.html lib/template.html","postpublish":"rm -rf lib"},"babel":{"presets":["es2015","react"]},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.9.0","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.5.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"b5687b8c09ce091a58316053685bd0f2901d5fae","_id":"bisheng@0.12.9","_shasum":"9bc9d99b5ba863f0019279bd76e87d661f444249","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"9bc9d99b5ba863f0019279bd76e87d661f444249","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.12.9.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/bisheng-0.12.9.tgz_1476781367535_0.25771841243840754"},"directories":{}},"0.12.10":{"name":"bisheng","version":"0.12.10","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"files":["lib"],"scripts":{"lint":"eslint .eslintrc.js ./src ./test","eslint-fix":"eslint .eslintrc.js --fix ./src ./test","test":"npm run lint && mocha --recursive","prepublish":"babel src --out-dir lib && cp src/template.html lib/template.html","postpublish":"rm -rf lib"},"babel":{"presets":["es2015","react"]},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.9.0","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.5.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"5f3130b682b3cf147a00cec3fba7e1d895bac420","_id":"bisheng@0.12.10","_shasum":"45e261fd6798fb69f31eaf900e9c12a9f2c90c5e","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"45e261fd6798fb69f31eaf900e9c12a9f2c90c5e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.12.10.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.12.10.tgz_1476781637540_0.5396816541906446"},"directories":{}},"0.12.11":{"name":"bisheng","version":"0.12.11","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"files":["lib","bin"],"scripts":{"lint":"eslint .eslintrc.js ./src ./test","eslint-fix":"eslint .eslintrc.js --fix ./src ./test","test":"npm run lint && mocha --recursive","prepublish":"babel src --out-dir lib && cp src/template.html lib/template.html","postpublish":"rm -rf lib"},"babel":{"presets":["es2015","react"]},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.9.0","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.5.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"45a0a7f6748be0e72fb269109ea07db87b90a659","_id":"bisheng@0.12.11","_shasum":"7b28266af714e06565924914a56267ebcea5bcfa","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"7b28266af714e06565924914a56267ebcea5bcfa","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.12.11.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.12.11.tgz_1476781983157_0.16049046348780394"},"directories":{}},"0.13.0":{"name":"bisheng","version":"0.13.0","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"files":["lib","bin"],"scripts":{"lint":"eslint .eslintrc.js ./src ./test","eslint-fix":"eslint .eslintrc.js --fix ./src ./test","test":"npm run lint && npm run prepublish && mocha --recursive","prepublish":"babel src --out-dir lib && cp src/template.html lib/template.html","postpublish":"rm -rf lib"},"babel":{"presets":["es2015","react"]},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.9.0","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.5.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"a180be32ad2b1f65cdb2af637a86249682246b9d","_id":"bisheng@0.13.0","_shasum":"f2f1f71f43140bd14e0de2212a2568bd02602684","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"f2f1f71f43140bd14e0de2212a2568bd02602684","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.13.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.13.0.tgz_1476784229348_0.9827074122149497"},"directories":{}},"0.13.1":{"name":"bisheng","version":"0.13.1","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"files":["lib","bin"],"scripts":{"lint":"eslint .eslintrc.js ./src ./test","eslint-fix":"eslint .eslintrc.js --fix ./src ./test","test":"npm run lint && npm run prepublish && mocha --recursive","prepublish":"babel src --out-dir lib && cp src/template.html lib/template.html","postpublish":"rm -rf lib"},"babel":{"presets":["es2015","react"]},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.9.0","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.5.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"f1f3c3a28fbc8e3b3a257ac874cedec3a70ac167","_id":"bisheng@0.13.1","_shasum":"b5a1d141399b1f5515925e36444a3fce826a3213","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"b5a1d141399b1f5515925e36444a3fce826a3213","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.13.1.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.13.1.tgz_1476785071499_0.5387737927958369"},"directories":{}},"0.13.2":{"name":"bisheng","version":"0.13.2","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"files":["lib","bin"],"scripts":{"lint":"eslint .eslintrc.js ./src ./test","eslint-fix":"eslint .eslintrc.js --fix ./src ./test","test":"npm run lint && npm run prepublish && mocha --recursive","prepublish":"babel src --out-dir lib && cp src/template.html lib/template.html","postpublish":"rm -rf lib"},"babel":{"presets":["es2015","react"]},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.9.0","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.5.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"c6ed26e4100cb4906ad99f2ecade755f362d882c","_id":"bisheng@0.13.2","_shasum":"d83808029b549c796391c58a9d9404dec108a25e","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"d83808029b549c796391c58a9d9404dec108a25e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.13.2.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.13.2.tgz_1476954470337_0.6587560668122023"},"directories":{}},"0.13.3":{"name":"bisheng","version":"0.13.3","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"files":["lib","bin"],"scripts":{"lint":"eslint .eslintrc.js ./src ./test","eslint-fix":"eslint .eslintrc.js --fix ./src ./test","test":"npm run lint && npm run prepublish && mocha --recursive","prepublish":"babel src --out-dir lib && cp src/template.html lib/template.html","postpublish":"rm -rf lib"},"babel":{"presets":["es2015","react"]},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.9.0","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.5.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"41a3c6c1d166254b5b6f50f9c08991665d5d05a9","_id":"bisheng@0.13.3","_shasum":"a3df8dfaa25667c7debf45955e887dca35d8d1e7","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"a3df8dfaa25667c7debf45955e887dca35d8d1e7","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.13.3.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/bisheng-0.13.3.tgz_1476956487250_0.43463159375824034"},"directories":{}},"0.14.0":{"name":"bisheng","version":"0.14.0","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"files":["lib","bin"],"scripts":{"lint":"eslint .eslintrc.js ./src ./test","eslint-fix":"eslint .eslintrc.js --fix ./src ./test","test":"npm run lint && npm run prepublish && mocha --recursive","prepublish":"babel src --out-dir lib && cp src/template.html lib/template.html","postpublish":"rm -rf lib"},"babel":{"presets":["es2015","react"]},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.9.0","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.5.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"797b53bcdf90e4f7141f9681a99837d6dd3123d2","_id":"bisheng@0.14.0","_shasum":"3d149ee772110a12a2faef02cfc02fdd8bfe358c","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"3d149ee772110a12a2faef02cfc02fdd8bfe358c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.14.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.14.0.tgz_1477387710475_0.8326894617639482"},"directories":{}},"0.15.0":{"name":"bisheng","version":"0.15.0","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"files":["lib","bin"],"scripts":{"lint":"eslint .eslintrc.js ./src ./test","eslint-fix":"eslint .eslintrc.js --fix ./src ./test","test":"npm run lint && npm run prepublish && mocha --recursive","prepublish":"babel src --out-dir lib && cp src/template.html lib/template.html","postpublish":"rm -rf lib"},"babel":{"presets":["es2015","react"]},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.9.0","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.5.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"6a6b8104284058b4ffb35db2b486204694bd4ded","_id":"bisheng@0.15.0","_shasum":"e1bf547bafd984d34d212ad8326c8d07a8d32440","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"e1bf547bafd984d34d212ad8326c8d07a8d32440","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.15.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.15.0.tgz_1477455132163_0.683238408062607"},"directories":{}},"0.16.0":{"name":"bisheng","version":"0.16.0","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"files":["lib","bin"],"scripts":{"lint":"eslint .eslintrc.js ./src ./test","eslint-fix":"eslint .eslintrc.js --fix ./src ./test","test":"npm run lint && npm run prepublish && mocha --recursive","prepublish":"babel src --out-dir lib && cp src/template.html lib/template.html","postpublish":"rm -rf lib"},"babel":{"presets":["es2015","react"]},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.9.0","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.5.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"8c112d29873b709e944f32c2c67fa042d50f254a","_id":"bisheng@0.16.0","_shasum":"a21d78153f4d6214f95d3e28d26b6caef1603a32","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"a21d78153f4d6214f95d3e28d26b6caef1603a32","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.16.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/bisheng-0.16.0.tgz_1478070244638_0.1575754804071039"},"directories":{}},"0.16.1":{"name":"bisheng","version":"0.16.1","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"files":["lib","bin"],"scripts":{"lint":"eslint .eslintrc.js ./src ./test","eslint-fix":"eslint .eslintrc.js --fix ./src ./test","test":"npm run lint && npm run prepublish && mocha --recursive","prepublish":"babel src --out-dir lib && cp src/template.html lib/template.html","postpublish":"rm -rf lib"},"babel":{"presets":["es2015","react"]},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.9.0","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.5.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"a90ce0116490ef634f6d087737b9e71b1509b558","_id":"bisheng@0.16.1","_shasum":"b54a52658daf87f1526daa7e38193ac75b2f0d81","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"b54a52658daf87f1526daa7e38193ac75b2f0d81","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.16.1.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.16.1.tgz_1478070531045_0.964054636657238"},"directories":{}},"0.16.2":{"name":"bisheng","version":"0.16.2","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"files":["lib","bin"],"scripts":{"lint":"eslint .eslintrc.js ./src ./test","eslint-fix":"eslint .eslintrc.js --fix ./src ./test","test":"npm run lint && npm run prepublish && mocha --recursive","prepublish":"babel src --out-dir lib && cp src/template.html lib/template.html","postpublish":"rm -rf lib"},"babel":{"presets":["es2015","react"]},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.9.0","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.5.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"edb78a5dc1d40f428b2dcf32cd74980c30bfa4dc","_id":"bisheng@0.16.2","_shasum":"7fb8435f9dbe1809fdf12e4b7eeb0515f703227e","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"7fb8435f9dbe1809fdf12e4b7eeb0515f703227e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.16.2.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.16.2.tgz_1478072642224_0.08486373769119382"},"directories":{}},"0.16.3":{"name":"bisheng","version":"0.16.3","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"files":["lib","bin"],"scripts":{"lint":"eslint .eslintrc.js ./src ./test","eslint-fix":"eslint .eslintrc.js --fix ./src ./test","test":"npm run lint && npm run prepublish && mocha --recursive","prepublish":"babel src --out-dir lib && cp src/template.html lib/template.html","postpublish":"rm -rf lib"},"babel":{"presets":["es2015","react"]},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.9.0","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.5.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"0768593bce13fc59fc2ce019a1136ea0138218d4","_id":"bisheng@0.16.3","_shasum":"93ed60f9c866bcdf0e931d32f1da5d587faa1644","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"93ed60f9c866bcdf0e931d32f1da5d587faa1644","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.16.3.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.16.3.tgz_1478073343788_0.42220791382715106"},"directories":{}},"0.17.0":{"name":"bisheng","version":"0.17.0","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"files":["lib","bin"],"scripts":{"lint":"eslint .eslintrc.js ./src ./test","eslint-fix":"eslint .eslintrc.js --fix ./src ./test","test":"npm run lint && npm run prepublish && mocha --recursive","prepublish":"babel src --out-dir lib && cp src/template.html lib/template.html","postpublish":"rm -rf lib"},"babel":{"presets":["es2015","react"]},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.9.0","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.5.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"160bff6d057d873ce58a12e14f7de5a296308b29","_id":"bisheng@0.17.0","_shasum":"fa1b99061ca3e252670a22442e3edcc7f967a18d","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"fa1b99061ca3e252670a22442e3edcc7f967a18d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.17.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/bisheng-0.17.0.tgz_1479366595996_0.24304534448310733"},"directories":{}},"0.17.1":{"name":"bisheng","version":"0.17.1","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"files":["lib","bin"],"scripts":{"lint":"eslint .eslintrc.js ./src ./test","eslint-fix":"eslint .eslintrc.js --fix ./src ./test","test":"npm run lint && npm run prepublish && mocha --recursive","prepublish":"babel src --out-dir lib && cp src/template.html lib/template.html","postpublish":"rm -rf lib"},"babel":{"presets":["es2015","react"]},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.9.0","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.5.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"f55caad91e802d6bb851b5014e8caa36f6d666c6","_id":"bisheng@0.17.1","_shasum":"7ea33f1f115f787c97aa5f76ee18d259b469e174","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"7ea33f1f115f787c97aa5f76ee18d259b469e174","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.17.1.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/bisheng-0.17.1.tgz_1479372672098_0.19402143685147166"},"directories":{}},"0.17.2":{"name":"bisheng","version":"0.17.2","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"files":["lib","bin"],"scripts":{"lint":"eslint .eslintrc.js ./src ./test","eslint-fix":"eslint .eslintrc.js --fix ./src ./test","test":"npm run lint && npm run prepublish && mocha --recursive","prepublish":"babel src --out-dir lib && cp src/template.html lib/template.html","postpublish":"rm -rf lib"},"babel":{"presets":["es2015","react"]},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.9.0","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^2.1.1","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.5.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^2.4.0","resolve":"^1.1.7"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"ebde380c230ed6ebe3f97bf855fd351db94b4332","_id":"bisheng@0.17.2","_shasum":"e52b442006387124970f8f4da25e086a951b47ce","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"e52b442006387124970f8f4da25e086a951b47ce","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.17.2.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/bisheng-0.17.2.tgz_1479456967522_0.8364538855385035"},"directories":{}},"0.17.3":{"name":"bisheng","version":"0.17.3","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"files":["lib","bin"],"scripts":{"lint":"eslint .eslintrc.js ./src ./test","eslint-fix":"eslint .eslintrc.js --fix ./src ./test","test":"npm run lint && npm run prepublish && mocha --recursive","prepublish":"babel src --out-dir lib && cp src/template.html lib/template.html","postpublish":"rm -rf lib"},"babel":{"presets":["es2015","react"]},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.9.0","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^3.0.0","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.5.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^3.0.0","resolve":"^1.1.7"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"c5a58862bd2bcc212b90c6021717d3ab2accc0fd","_id":"bisheng@0.17.3","_shasum":"e4462ad6895bdcc0f366a915cdd42ae8b4783c07","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"e4462ad6895bdcc0f366a915cdd42ae8b4783c07","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.17.3.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/bisheng-0.17.3.tgz_1479718427464_0.5052361385896802"},"directories":{}},"0.18.0":{"name":"bisheng","version":"0.18.0","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"files":["lib","bin"],"scripts":{"lint":"eslint .eslintrc.js ./src ./test","eslint-fix":"eslint .eslintrc.js --fix ./src ./test","test":"npm run lint && npm run prepublish && mocha --recursive","prepublish":"babel src --out-dir lib && cp src/template.html lib/template.html","postpublish":"rm -rf lib"},"babel":{"presets":["es2015","react"]},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.9.0","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^3.0.0","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.5.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^3.0.0","resolve":"^1.1.7"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"b874d9ba904c75f01d95e252cc8973aaa6dab79f","_id":"bisheng@0.18.0","_shasum":"ced5484d6fd55dfe702bdbbcff58926704d15cca","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"ced5484d6fd55dfe702bdbbcff58926704d15cca","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.18.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/bisheng-0.18.0.tgz_1480659182614_0.6651912983506918"},"directories":{}},"0.18.1":{"name":"bisheng","version":"0.18.1","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"files":["lib","bin"],"scripts":{"lint":"eslint .eslintrc.js ./src ./test","eslint-fix":"eslint .eslintrc.js --fix ./src ./test","test":"npm run lint && npm run prepublish && mocha --recursive","prepublish":"babel src --out-dir lib && cp src/template.html lib/template.html","postpublish":"rm -rf lib"},"babel":{"presets":["es2015","react"]},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.9.0","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^3.0.0","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.5.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^3.0.0","resolve":"^1.1.7"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"dcd9ab7a642a62796c59d745c1f36b3147a0f57c","_id":"bisheng@0.18.1","_shasum":"950565bd1a2a1350ee8207f95490d214a21d0a6f","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"950565bd1a2a1350ee8207f95490d214a21d0a6f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.18.1.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.18.1.tgz_1480670588203_0.007280789781361818"},"directories":{}},"0.18.2":{"name":"bisheng","version":"0.18.2","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"files":["lib","bin"],"scripts":{"lint":"eslint .eslintrc.js ./src ./test","eslint-fix":"eslint .eslintrc.js --fix ./src ./test","test":"npm run lint && npm run prepublish && mocha --recursive","prepublish":"babel src --out-dir lib && cp src/template.html lib/template.html","postpublish":"rm -rf lib"},"babel":{"presets":["es2015","react"]},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.9.0","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^3.0.0","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.5.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^3.0.0","resolve":"^1.1.7"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"149582c673be5ab087c9c1e732c08ded6b3bbbe5","_id":"bisheng@0.18.2","_shasum":"c4c7b41b4683fc760566bf4c0cbdfdea6d13a501","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"c4c7b41b4683fc760566bf4c0cbdfdea6d13a501","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.18.2.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.18.2.tgz_1480923216864_0.5849840682931244"},"directories":{}},"0.18.3":{"name":"bisheng","version":"0.18.3","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"files":["lib","bin"],"scripts":{"lint":"eslint .eslintrc.js ./src ./test","eslint-fix":"eslint .eslintrc.js --fix ./src ./test","test":"npm run lint && npm run prepublish && mocha --recursive","prepublish":"babel src --out-dir lib && cp src/template.html lib/template.html","postpublish":"rm -rf lib"},"babel":{"presets":["es2015","react"]},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.9.0","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^3.0.0","jsonml-to-react-component":"^0.2.2","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.5.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^3.0.0","resolve":"^1.1.7"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"ab6777c927667d83aafd4ccf04ec94322a1fc31d","_id":"bisheng@0.18.3","_shasum":"d4ce6bfe0df2e425bc7832c6798f5b5ce75e58be","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"d4ce6bfe0df2e425bc7832c6798f5b5ce75e58be","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.18.3.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/bisheng-0.18.3.tgz_1483062550470_0.929223233833909"},"directories":{}},"0.18.4":{"name":"bisheng","version":"0.18.4","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"files":["lib","bin"],"scripts":{"lint":"eslint .eslintrc.js ./src ./test","eslint-fix":"eslint .eslintrc.js --fix ./src ./test","test":"npm run lint && npm run prepublish && mocha --recursive","prepublish":"babel src --out-dir lib && cp src/template.html lib/template.html","postpublish":"rm -rf lib"},"babel":{"presets":["es2015","react"]},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.9.0","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^3.0.0","jsonml-to-react-element":"^1.0.0","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.5.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^3.0.0","resolve":"^1.1.7"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"0444f33ada7255412f127416207329cd6583f53d","_id":"bisheng@0.18.4","_shasum":"b352458704f0ece9f17e2cf1e5340bf6b2c87c93","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"b352458704f0ece9f17e2cf1e5340bf6b2c87c93","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.18.4.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.18.4.tgz_1484632675999_0.7237284500151873"},"directories":{}},"0.18.5":{"name":"bisheng","version":"0.18.5","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"files":["lib","bin"],"scripts":{"lint":"eslint .eslintrc.js ./src ./test","eslint-fix":"eslint .eslintrc.js --fix ./src ./test","test":"npm run lint && npm run prepublish && mocha --recursive","prepublish":"babel src --out-dir lib && cp src/template.html lib/template.html","postpublish":"rm -rf lib"},"babel":{"presets":["es2015","react"]},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.9.0","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^3.0.0","jsonml-to-react-element":"^1.0.0","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.5.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^3.0.0","resolve":"^1.1.7"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"70349c4264956e1832ea59b8082e1a6d7977583d","_id":"bisheng@0.18.5","_shasum":"2e3813c47cd3876dc82841b3ac3d8dd0c46109ba","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"2e3813c47cd3876dc82841b3ac3d8dd0c46109ba","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.18.5.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/bisheng-0.18.5.tgz_1484632957513_0.2759671004023403"},"directories":{}},"0.18.6":{"name":"bisheng","version":"0.18.6","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"files":["lib","bin","router.js"],"scripts":{"lint":"eslint .eslintrc.js ./src ./test","eslint-fix":"eslint .eslintrc.js --fix ./src ./test","test":"npm run lint && npm run prepublish && mocha --recursive","prepublish":"babel src --out-dir lib && cp src/template.html lib/template.html","postpublish":"rm -rf lib"},"babel":{"presets":["es2015","react"]},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.9.0","babel-polyfill":"^6.9.1","bluebird":"^3.4.0","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^3.0.0","jsonml-to-react-element":"^1.0.0","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.5.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^3.0.0","resolve":"^1.1.7"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"16a1120815937c27a4167e5e15e9695277dc67b4","_id":"bisheng@0.18.6","_shasum":"0b865e313a463a451c8bc52394651a74f5aa5f16","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"0b865e313a463a451c8bc52394651a74f5aa5f16","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.18.6.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/bisheng-0.18.6.tgz_1484633439768_0.14067248976789415"},"directories":{}},"0.18.7":{"name":"bisheng","version":"0.18.7","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"files":["lib","bin","router.js"],"scripts":{"lint":"eslint .eslintrc.js ./src ./test","eslint-fix":"eslint .eslintrc.js --fix ./src ./test","test":"npm run lint && npm run prepublish && mocha --recursive","prepublish":"babel src --out-dir lib && cp src/template.html lib/template.html","postpublish":"rm -rf lib"},"babel":{"presets":["es2015","react"]},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.9.0","babel-polyfill":"^6.9.1","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^3.0.0","jsonml-to-react-element":"^1.0.0","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.5.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^3.0.0","resolve":"^1.1.7"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"8fb3c3eac9f48f29faf16e08d39da461f0b77b93","_id":"bisheng@0.18.7","_shasum":"c644fc5b58a2e03e2b24cefe71b6079f8f4069de","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"c644fc5b58a2e03e2b24cefe71b6079f8f4069de","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.18.7.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/bisheng-0.18.7.tgz_1484633729687_0.8936105591710657"},"directories":{}},"0.18.8":{"name":"bisheng","version":"0.18.8","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"files":["lib","bin","router.js"],"scripts":{"lint":"eslint .eslintrc.js ./src ./test","eslint-fix":"eslint .eslintrc.js --fix ./src ./test","test":"npm run lint && npm run prepublish && mocha --recursive","prepublish":"babel src --out-dir lib && cp src/template.html lib/template.html","postpublish":"rm -rf lib"},"babel":{"presets":["es2015","react"]},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.9.0","babel-polyfill":"^6.9.1","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^3.0.0","jsonml-to-react-element":"^1.0.0","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.5.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^3.0.0","resolve":"^1.1.7"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"2327ab153eba2458097c1dcc5f57d5992153a665","_id":"bisheng@0.18.8","_shasum":"7060194cf79e050bf6d99adf11e5884cb15c5d87","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"7060194cf79e050bf6d99adf11e5884cb15c5d87","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.18.8.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/bisheng-0.18.8.tgz_1484709962237_0.22785240318626165"},"directories":{}},"0.18.9":{"name":"bisheng","version":"0.18.9","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"files":["lib","bin","router.js"],"scripts":{"lint":"eslint .eslintrc.js ./src ./test","eslint-fix":"eslint .eslintrc.js --fix ./src ./test","test":"npm run lint && npm run prepublish && mocha --recursive","prepublish":"babel src --out-dir lib && cp src/template.html lib/template.html","postpublish":"rm -rf lib"},"babel":{"presets":["es2015","react"]},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.9.0","babel-polyfill":"^6.9.1","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^3.0.0","jsonml-to-react-element":"^1.0.0","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.5.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^3.0.0","resolve":"^1.1.7"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"5aaa75d9d2663b180a19f251c15017d92e53bb3b","_id":"bisheng@0.18.9","_shasum":"3e3ad4d06cd2e926e2bfd40f160ea3abd65b7c88","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"3e3ad4d06cd2e926e2bfd40f160ea3abd65b7c88","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.18.9.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/bisheng-0.18.9.tgz_1484710873390_0.9402357102371752"},"directories":{}},"0.18.10":{"name":"bisheng","version":"0.18.10","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"files":["lib","bin","router.js"],"scripts":{"lint":"eslint .eslintrc.js ./src ./test","eslint-fix":"eslint .eslintrc.js --fix ./src ./test","test":"npm run lint && npm run prepublish && mocha --recursive","prepublish":"babel src --out-dir lib && cp src/template.html lib/template.html","postpublish":"rm -rf lib"},"babel":{"presets":["es2015","react"]},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.9.0","babel-polyfill":"^6.9.1","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^3.0.0","jsonml-to-react-element":"^1.0.0","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.5.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^3.0.0","resolve":"^1.1.7"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"b947dadea333f81e9b551166fcc05f87da40a356","_id":"bisheng@0.18.10","_shasum":"3d948a6b718f1f5baf29032bb2a2b6db24878332","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"3d948a6b718f1f5baf29032bb2a2b6db24878332","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.18.10.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.18.10.tgz_1484713451322_0.956613051937893"},"directories":{}},"0.19.0":{"name":"bisheng","version":"0.19.0","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"files":["lib","bin","router.js"],"scripts":{"lint":"eslint .eslintrc.js ./src ./test","eslint-fix":"eslint .eslintrc.js --fix ./src ./test","test":"npm run lint && npm run prepublish && mocha --recursive","prepublish":"babel src --out-dir lib && cp src/template.html lib/template.html","postpublish":"rm -rf lib"},"babel":{"presets":["es2015","react"]},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.9.0","babel-polyfill":"^6.9.1","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^3.0.0","jsonml-to-react-element":"^1.0.0","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.5.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^3.0.0","resolve":"^1.1.7"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"7dd1b9714f235b219d10e931acbf5b2d52601f68","_id":"bisheng@0.19.0","_shasum":"c53202c59cd82c99670e9e3a68edf383467cb0c3","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"c53202c59cd82c99670e9e3a68edf383467cb0c3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.19.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.19.0.tgz_1484808870283_0.2575469589792192"},"directories":{}},"0.20.0-beta.0":{"name":"bisheng","version":"0.20.0-beta.0","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"files":["lib","bin","router.js"],"scripts":{"lint":"eslint .eslintrc.js ./src ./test","eslint-fix":"eslint .eslintrc.js --fix ./src ./test","test":"npm run lint && npm run prepublish && mocha --recursive","prepublish":"babel src --out-dir lib && cp src/template.html lib/template.html","postpublish":"rm -rf lib"},"babel":{"presets":["es2015","react"]},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.9.0","babel-polyfill":"^6.9.1","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^3.0.0","jsonml-to-react-element":"^1.0.0","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.5.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^3.0.0","resolve":"^1.1.7"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"d0d8dd545e7f86c4dafe559df9ba6b6997139feb","_id":"bisheng@0.20.0-beta.0","_shasum":"1fe13d6d6ccfa89de692e79f880fc138f9b37aa8","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"1fe13d6d6ccfa89de692e79f880fc138f9b37aa8","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.20.0-beta.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.20.0-beta.0.tgz_1484879307011_0.46605502674356103"},"directories":{}},"0.20.0-beta.1":{"name":"bisheng","version":"0.20.0-beta.1","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"files":["lib","bin","router.js"],"scripts":{"lint":"eslint .eslintrc.js ./src ./test","eslint-fix":"eslint .eslintrc.js --fix ./src ./test","test":"npm run lint && npm run prepublish && mocha --recursive","prepublish":"babel src --out-dir lib && cp src/template.html lib/template.html","postpublish":"rm -rf lib"},"babel":{"presets":["es2015","react"]},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.9.0","babel-polyfill":"^6.9.1","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^3.0.0","jsonml-to-react-element":"^1.0.0","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.5.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^3.0.0","resolve":"^1.1.7"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"37cfe90e61bd6d7388a66ebb33fa19ebf5d7b0fc","_id":"bisheng@0.20.0-beta.1","_shasum":"9fb53907c04152e1632cee1ca1167e8d68566813","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"9fb53907c04152e1632cee1ca1167e8d68566813","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.20.0-beta.1.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/bisheng-0.20.0-beta.1.tgz_1484880114226_0.0554835747461766"},"directories":{}},"0.20.0":{"name":"bisheng","version":"0.20.0","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"files":["lib","bin","router.js"],"scripts":{"lint":"eslint .eslintrc.js ./src ./test","eslint-fix":"eslint .eslintrc.js --fix ./src ./test","test":"npm run lint && npm run prepublish && mocha --recursive","prepublish":"babel src --out-dir lib && cp src/template.html lib/template.html","postpublish":"rm -rf lib"},"babel":{"presets":["es2015","react"]},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.9.0","babel-polyfill":"^6.9.1","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^3.0.0","jsonml-to-react-element":"^1.0.0","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.5.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^3.0.0","resolve":"^1.1.7"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"aed8ece53aa91ecf95ea4964c097ca0b26f04ece","_id":"bisheng@0.20.0","_shasum":"cbe4c88689c6ec2999a075f337a9fb9a055f5c63","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"cbe4c88689c6ec2999a075f337a9fb9a055f5c63","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.20.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.20.0.tgz_1484881678690_0.3331926946993917"},"directories":{}},"0.20.1":{"name":"bisheng","version":"0.20.1","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"files":["lib","bin","router.js"],"scripts":{"lint":"eslint .eslintrc.js ./src ./test","eslint-fix":"eslint .eslintrc.js --fix ./src ./test","test":"npm run lint && npm run prepublish && mocha --recursive","prepublish":"babel src --out-dir lib && cp src/template.html lib/template.html","postpublish":"rm -rf lib"},"babel":{"presets":["es2015","react"]},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.9.0","babel-polyfill":"^6.9.1","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^3.0.0","jsonml-to-react-element":"^1.0.0","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.5.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^3.0.0","resolve":"^1.1.7"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2"},"gitHead":"bcd1627970d013dd16750aeed0c0e1daa5b62c8f","_id":"bisheng@0.20.1","_shasum":"5656f3a11c7c0f2ca3e8e8a6c57953bf56d0f2bb","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"5656f3a11c7c0f2ca3e8e8a6c57953bf56d0f2bb","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.20.1.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/bisheng-0.20.1.tgz_1484885102840_0.013097480637952685"},"directories":{}},"0.20.2":{"name":"bisheng","version":"0.20.2","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"files":["lib","bin","router.js"],"scripts":{"lint":"eslint .eslintrc.js ./src ./test","eslint-fix":"eslint .eslintrc.js --fix ./src ./test","build":"babel src --out-dir lib","clean":"rimraf lib","test":"npm run lint && npm run prepublish && mocha --recursive","prepublish":"npm run build && cp src/template.html lib/template.html","postpublish":"npm run clean"},"babel":{"presets":["es2015","react"]},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.9.0","babel-polyfill":"^6.9.1","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^3.0.0","jsonml-to-react-element":"^1.0.0","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.5.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^3.0.0","resolve":"^1.1.7"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","chalk":"^1.1.3","eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2","rimraf":"^2.5.4"},"engines":{"node":">=6.0.0"},"gitHead":"b0a9ffdfe9b94141de60c09db1dfae66e88e1d61","_id":"bisheng@0.20.2","_shasum":"9a553a7ae657f46396365e6c6f7a75f744eb6edc","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"9a553a7ae657f46396365e6c6f7a75f744eb6edc","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.20.2.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/bisheng-0.20.2.tgz_1485420501743_0.8885181117802858"},"directories":{}},"0.20.3":{"name":"bisheng","version":"0.20.3","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"files":["lib","bin","router.js"],"scripts":{"lint":"eslint .eslintrc.js ./src ./test","eslint-fix":"eslint .eslintrc.js --fix ./src ./test","build":"babel src --out-dir lib","clean":"rimraf lib","test":"npm run lint && npm run prepublish && mocha --recursive","prepublish":"npm run build && cp src/template.html lib/template.html","postpublish":"npm run clean"},"babel":{"presets":["es2015","react"]},"pre-commit":["lint"],"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.9.0","babel-polyfill":"^6.9.1","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^3.0.0","jsonml-to-react-element":"^1.0.0","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.5.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^3.0.0","resolve":"^1.1.7"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","chalk":"^1.1.3","eslint":"^2.9.0","eslint-config-egg":"^2.0.0","mocha":"^2.4.5","pre-commit":"^1.1.2","rimraf":"^2.5.4"},"engines":{"node":">=6.0.0"},"gitHead":"1668b861650737308c417aa0354538a98fbca2de","_id":"bisheng@0.20.3","_shasum":"0e863907e71c7afc950339055dd6db011ec44145","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"0e863907e71c7afc950339055dd6db011ec44145","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.20.3.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.20.3.tgz_1486364321793_0.8855876633897424"},"directories":{}},"0.21.0":{"name":"bisheng","version":"0.21.0","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"files":["lib","bin","router.js"],"scripts":{"build":"babel src --out-dir lib","clean":"rimraf lib","prepublish":"npm run build && cp src/template.html lib/template.html","postpublish":"npm run clean"},"babel":{"presets":["es2015","react","stage-0"]},"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.9.0","babel-polyfill":"^6.9.1","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^3.0.0","jsonml-to-react-element":"^1.0.0","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.5.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^3.0.0","resolve":"^1.1.7"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","chalk":"^1.1.3","rimraf":"^2.5.4"},"engines":{"node":">=6.0.0"},"_id":"bisheng@0.21.0","_shasum":"e3f8dda354b279a25cebd4ba0d39798436b6f616","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"e3f8dda354b279a25cebd4ba0d39798436b6f616","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.21.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/bisheng-0.21.0.tgz_1486622047790_0.9083194457925856"},"directories":{}},"0.21.1":{"name":"bisheng","version":"0.21.1","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"files":["lib","bin","router.js","collect.js"],"scripts":{"build":"babel src --out-dir lib","clean":"rimraf lib","prepublish":"npm run build && cp src/template.html lib/template.html","postpublish":"npm run clean"},"babel":{"presets":["es2015","react","stage-0"]},"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.9.0","babel-polyfill":"^6.9.1","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^3.0.0","jsonml-to-react-element":"^1.0.0","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.5.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^3.0.0","resolve":"^1.1.7"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","chalk":"^1.1.3","rimraf":"^2.5.4"},"engines":{"node":">=6.0.0"},"_id":"bisheng@0.21.1","_shasum":"94d6bc6839c279e785c0d758d29872db7b3d9ed2","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"94d6bc6839c279e785c0d758d29872db7b3d9ed2","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.21.1.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/bisheng-0.21.1.tgz_1486627449474_0.8758294046856463"},"directories":{}},"0.21.2":{"name":"bisheng","version":"0.21.2","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"files":["lib","bin","router.js","collect.js"],"scripts":{"build":"babel src --out-dir lib","clean":"rimraf lib","prepublish":"npm run build && cp src/template.html lib/template.html","postpublish":"npm run clean"},"babel":{"presets":["es2015","react","stage-0"]},"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.9.0","babel-polyfill":"^6.9.1","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^3.0.0","jsonml-to-react-element":"^1.0.0","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.5.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^3.0.0","resolve":"^1.1.7"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","chalk":"^1.1.3","rimraf":"^2.5.4"},"engines":{"node":">=6.0.0"},"_id":"bisheng@0.21.2","_shasum":"73a7d1578aa3271985bab971550b9b2a285dfd03","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"73a7d1578aa3271985bab971550b9b2a285dfd03","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.21.2.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/bisheng-0.21.2.tgz_1486797417244_0.6307165324687958"},"directories":{}},"0.21.3":{"name":"bisheng","version":"0.21.3","description":"Transform Markdown files into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"files":["lib","bin","router.js","collect.js"],"scripts":{"build":"babel src --out-dir lib","clean":"rimraf lib","prepublish":"npm run build && cp src/template.html lib/template.html","postpublish":"npm run clean"},"babel":{"presets":["es2015","react","stage-0"]},"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.9.0","babel-polyfill":"^6.9.1","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^3.0.0","jsonml-to-react-element":"^1.0.0","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.5.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^3.0.0","resolve":"^1.1.7"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","chalk":"^1.1.3","rimraf":"^2.5.4"},"engines":{"node":">=6.0.0"},"_id":"bisheng@0.21.3","_shasum":"88c6c4e38489685a00cc1eefb9d0920cd09b5bff","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"88c6c4e38489685a00cc1eefb9d0920cd09b5bff","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.21.3.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.21.3.tgz_1487039744408_0.9970174620393664"},"directories":{}},"0.22.0":{"name":"bisheng","version":"0.22.0","description":"Transform Markdown(and other static files with transformers) into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"files":["lib","bin","router.js","collect.js"],"scripts":{"build":"babel src --out-dir lib","clean":"rimraf lib","prepublish":"npm run build && cp src/template.html lib/template.html","postpublish":"npm run clean"},"babel":{"presets":["es2015","react","stage-0"]},"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.9.0","babel-polyfill":"^6.9.1","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^3.0.0","jsonml-to-react-element":"^1.0.0","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.5.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^3.0.0","resolve":"^1.1.7"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","chalk":"^1.1.3","rimraf":"^2.5.4"},"engines":{"node":">=6.0.0"},"_id":"bisheng@0.22.0","_shasum":"ea0611e134b489d4b8a4eb0171a96a11312796ca","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"ea0611e134b489d4b8a4eb0171a96a11312796ca","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.22.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.22.0.tgz_1487064437012_0.189124358817935"},"directories":{}},"0.22.1":{"name":"bisheng","version":"0.22.1","description":"Transform Markdown(and other static files with transformers) into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"files":["lib","bin","router.js","collect.js"],"scripts":{"build":"babel src --out-dir lib","clean":"rimraf lib","prepublish":"npm run build && cp src/template.html lib/template.html","postpublish":"npm run clean"},"babel":{"presets":["es2015","react","stage-0"]},"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.9.0","babel-polyfill":"^6.9.1","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^3.0.0","jsonml-to-react-element":"^1.0.0","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.5.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^3.0.0","resolve":"^1.1.7"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","chalk":"^1.1.3","rimraf":"^2.5.4"},"engines":{"node":">=6.0.0"},"_id":"bisheng@0.22.1","_shasum":"4da859208c894ec2f6788c6c271e7fc5e19d8d3b","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"4da859208c894ec2f6788c6c271e7fc5e19d8d3b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.22.1.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.22.1.tgz_1487066455826_0.29730659490451217"},"directories":{}},"0.22.2":{"name":"bisheng","version":"0.22.2","description":"Transform Markdown(and other static files with transformers) into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"files":["lib","bin","router.js","collect.js"],"scripts":{"build":"babel src --out-dir lib","clean":"rimraf lib","prepublish":"npm run build && cp src/template.html lib/template.html","postpublish":"npm run clean"},"babel":{"presets":["es2015","react","stage-0"]},"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.9.0","babel-polyfill":"^6.9.1","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^3.0.0","jsonml-to-react-element":"^1.0.0","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.5.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^3.0.0","resolve":"^1.1.7"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","chalk":"^1.1.3","rimraf":"^2.5.4"},"engines":{"node":">=6.0.0"},"_id":"bisheng@0.22.2","_shasum":"d3c9bf2351e39cce99d6cc94906f3605e5b637b8","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"d3c9bf2351e39cce99d6cc94906f3605e5b637b8","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.22.2.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/bisheng-0.22.2.tgz_1487129572427_0.9746713032945991"},"directories":{}},"0.22.3":{"name":"bisheng","version":"0.22.3","description":"Transform Markdown(and other static files with transformers) into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"files":["lib","bin","router.js","collect.js"],"scripts":{"build":"babel src --out-dir lib","clean":"rimraf lib","prepublish":"npm run build && cp src/template.html lib/template.html","postpublish":"npm run clean"},"babel":{"presets":["es2015","react","stage-0"]},"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.9.0","babel-polyfill":"^6.9.1","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^3.0.0","jsonml-to-react-element":"^1.0.0","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.5.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^3.0.0","resolve":"^1.1.7"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","chalk":"^1.1.3","rimraf":"^2.5.4"},"engines":{"node":">=6.0.0"},"_id":"bisheng@0.22.3","_shasum":"55f77095eda4b3b8f70c61fc42dc80dbf8bffbd8","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"55f77095eda4b3b8f70c61fc42dc80dbf8bffbd8","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.22.3.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.22.3.tgz_1487129997809_0.18102122098207474"},"directories":{}},"0.22.4":{"name":"bisheng","version":"0.22.4","description":"Transform Markdown(and other static files with transformers) into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"files":["lib","bin","router.js","collect.js"],"scripts":{"build":"babel src --out-dir lib","clean":"rimraf lib","prepublish":"npm run build && cp src/template.html lib/template.html","postpublish":"npm run clean"},"babel":{"presets":["es2015","react","stage-0"]},"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.9.0","babel-polyfill":"^6.9.1","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^3.0.0","jsonml-to-react-element":"^1.0.0","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.5.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^3.0.0","resolve":"^1.1.7"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","chalk":"^1.1.3","rimraf":"^2.5.4"},"engines":{"node":">=6.0.0"},"_id":"bisheng@0.22.4","_shasum":"1d2cd342bf0a690187d16bd0ef499bd53627edc9","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"1d2cd342bf0a690187d16bd0ef499bd53627edc9","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.22.4.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.22.4.tgz_1487130218713_0.7759750687982887"},"directories":{}},"0.22.5":{"name":"bisheng","version":"0.22.5","description":"Transform Markdown(and other static files with transformers) into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"files":["lib","bin","router.js","collect.js"],"scripts":{"build":"babel src --out-dir lib","clean":"rimraf lib","prepublish":"npm run build && cp src/template.html lib/template.html","postpublish":"npm run clean"},"babel":{"presets":["es2015","react","stage-0"]},"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.9.0","babel-polyfill":"^6.9.1","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^3.0.0","jsonml-to-react-element":"^1.0.0","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.5.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^3.0.0","resolve":"^1.1.7"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","chalk":"^1.1.3","rimraf":"^2.5.4"},"engines":{"node":">=6.0.0"},"_id":"bisheng@0.22.5","_shasum":"a66f0a97e66cbc82749cb5b736f44b17c34ad470","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.5","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"a66f0a97e66cbc82749cb5b736f44b17c34ad470","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.22.5.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/bisheng-0.22.5.tgz_1487229717559_0.17975569074042141"},"directories":{}},"0.22.6":{"name":"bisheng","version":"0.22.6","description":"Transform Markdown(and other static files with transformers) into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"files":["lib","bin","router.js","collect.js"],"scripts":{"build":"babel src --out-dir lib","clean":"rimraf lib","prepublish":"npm run build && cp src/template.html lib/template.html","postpublish":"npm run clean"},"babel":{"presets":["es2015","react","stage-0"]},"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.9.0","babel-polyfill":"^6.9.1","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^3.0.0","jsonml-to-react-element":"^1.0.0","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.5.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^3.0.0","resolve":"^1.1.7"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","chalk":"^1.1.3","rimraf":"^2.5.4"},"engines":{"node":">=6.0.0"},"_id":"bisheng@0.22.6","_shasum":"55b172445472119c5afd3545f4da824fa3a1c6bb","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.5","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"55b172445472119c5afd3545f4da824fa3a1c6bb","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.22.6.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/bisheng-0.22.6.tgz_1487301608671_0.7245940731372684"},"directories":{}},"0.22.7":{"name":"bisheng","version":"0.22.7","description":"Transform Markdown(and other static files with transformers) into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"files":["lib","bin","router.js","collect.js"],"scripts":{"build":"babel src --out-dir lib","clean":"rimraf lib","prepublish":"npm run build && cp src/template.html lib/template.html","postpublish":"npm run clean"},"babel":{"presets":["es2015","react","stage-0"]},"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.9.0","babel-polyfill":"^6.9.1","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^3.0.0","jsonml-to-react-element":"^1.0.0","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.5.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^3.0.0","resolve":"^1.1.7"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","chalk":"^1.1.3","rimraf":"^2.5.4"},"engines":{"node":">=6.0.0"},"_id":"bisheng@0.22.7","_shasum":"44a171b8fe0584637087724ea074cc2f9cc2025b","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.6.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"44a171b8fe0584637087724ea074cc2f9cc2025b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.22.7.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.22.7.tgz_1488272442397_0.18876716238446534"},"directories":{}},"0.23.0":{"name":"bisheng","version":"0.23.0","description":"Transform Markdown(and other static files with transformers) into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"files":["lib","bin","router.js","collect.js"],"scripts":{"build":"babel src --out-dir lib","clean":"rimraf lib","prepublish":"npm run build && cp src/template.html lib/template.html","postpublish":"npm run clean"},"babel":{"presets":["es2015","react","stage-0"]},"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.9.0","babel-polyfill":"^6.9.1","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.11.0","history":"^3.0.0","jsonml-to-react-element":"^1.0.0","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.5.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^3.0.0","resolve":"^1.1.7"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","chalk":"^1.1.3","rimraf":"^2.5.4"},"engines":{"node":">=6.0.0"},"_id":"bisheng@0.23.0","_shasum":"ad40b74abbaeb4dbb1ee544e2ea3cd7a11330690","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.6.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"ad40b74abbaeb4dbb1ee544e2ea3cd7a11330690","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.23.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.23.0.tgz_1489377922802_0.11796215176582336"},"directories":{}},"0.23.1":{"name":"bisheng","version":"0.23.1","description":"Transform Markdown(and other static files with transformers) into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"files":["lib","bin","router.js","collect.js"],"scripts":{"build":"babel src --out-dir lib","clean":"rimraf lib","prepublish":"npm run build && cp src/template.html lib/template.html","postpublish":"npm run clean"},"babel":{"presets":["es2015","react","stage-0"]},"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.9.0","babel-polyfill":"^6.9.1","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.12.0","history":"^3.0.0","jsonml-to-react-element":"^1.0.0","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.5.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^3.0.0","resolve":"^1.1.7"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","chalk":"^1.1.3","rimraf":"^2.5.4"},"engines":{"node":">=6.0.0"},"_id":"bisheng@0.23.1","_shasum":"9201062f3c8e315c7568ae6d8436745a75d10421","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.6.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"9201062f3c8e315c7568ae6d8436745a75d10421","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.23.1.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bisheng-0.23.1.tgz_1489998783329_0.8275564569048584"},"directories":{}},"0.23.2":{"name":"bisheng","version":"0.23.2","description":"Transform Markdown(and other static files with transformers) into a SPA website using React.","bin":{"bisheng":"./bin/bisheng"},"files":["lib","bin","router.js","collect.js"],"scripts":{"build":"babel src --out-dir lib","clean":"rimraf lib","prepublish":"npm run build && shx cp src/template.html lib/template.html","postpublish":"npm run clean"},"babel":{"presets":["es2015","react","stage-0"]},"repository":{"type":"git","url":"git+https://github.com/benjycui/bisheng.git"},"keywords":["markdown","spa","website","blog","react"],"author":{"name":"Benjy Cui"},"license":"MIT","bugs":{"url":"https://github.com/benjycui/bisheng/issues"},"homepage":"https://github.com/benjycui/bisheng#readme","dependencies":{"atool-build":"^0.9.0","babel-polyfill":"^6.9.1","commander":"^2.9.0","dora":"^0.4.0","dora-plugin-browser-history":"^0.2.0","dora-plugin-livereload":"^0.5.2","dora-plugin-webpack":"^0.8.1","exist.js":"^0.3.0","gh-pages":"^0.12.0","history":"^3.0.0","jsonml-to-react-element":"^1.0.0","jsonml.js":"^0.1.0","loader-utils":"^0.2.14","mark-twain":"^1.1.4","mkdirp":"^0.5.1","node-prismjs":"^0.1.0","nprogress":"^0.2.0","nunjucks":"^2.5.2","prismjs":"^1.4.1","ramda":"^0.22.0","react":"^15.0.2","react-dom":"^15.0.2","react-router":"^3.0.0","resolve":"^1.1.7"},"devDependencies":{"babel":"^6.5.2","babel-cli":"^6.16.0","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","chalk":"^1.1.3","rimraf":"^2.5.4","shx":"^0.2.2"},"engines":{"node":">=6.0.0"},"_id":"bisheng@0.23.2","_shasum":"b0b7835bb973c8ddd7699c853fdda7d8a6f0f1f5","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.6.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"b0b7835bb973c8ddd7699c853fdda7d8a6f0f1f5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bisheng/-/bisheng-0.23.2.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/bisheng-0.23.2.tgz_1490669766316_0.0756046378519386"},"directories":{}}},"name":"bisheng","time":{"modified":"2017-03-28T02:56:23.700Z","created":"2016-05-05T01:57:36.163Z","0.1.0-beta.0":"2016-05-05T01:57:36.163Z","0.1.0-beta.1":"2016-05-05T07:55:08.214Z","0.1.0-beta.2":"2016-05-05T09:51:20.111Z","0.1.0-beta.3":"2016-05-05T10:25:46.784Z","0.1.0-beta.4":"2016-05-06T10:10:56.703Z","0.1.0":"2016-05-10T09:19:54.109Z","0.1.1":"2016-05-10T09:41:33.475Z","0.1.2":"2016-05-10T09:58:50.515Z","0.1.3":"2016-05-11T09:04:05.527Z","0.1.4":"2016-05-11T09:24:31.548Z","0.1.5":"2016-05-13T03:25:10.872Z","0.2.0":"2016-05-18T02:00:55.121Z","0.2.1":"2016-05-18T07:11:38.503Z","0.3.0":"2016-05-19T02:43:23.828Z","0.3.1":"2016-05-19T07:59:27.309Z","0.3.2":"2016-05-24T02:32:13.712Z","0.4.0-beta.0":"2016-05-24T03:56:19.277Z","0.4.0":"2016-05-24T06:30:03.370Z","0.4.1":"2016-05-24T06:30:44.698Z","0.5.0":"2016-05-26T07:11:51.881Z","0.5.1":"2016-06-03T03:48:22.992Z","0.5.2":"2016-06-03T05:45:19.801Z","0.5.3":"2016-06-03T05:52:29.231Z","0.5.4":"2016-06-03T07:37:08.554Z","0.5.5":"2016-06-05T02:51:36.201Z","0.5.6":"2016-06-06T02:18:52.385Z","0.6.0":"2016-06-06T08:07:26.097Z","0.6.1":"2016-06-07T01:21:28.253Z","0.6.2":"2016-06-09T03:01:32.265Z","0.6.3":"2016-06-09T04:49:20.729Z","0.6.4":"2016-06-09T04:49:57.015Z","0.6.5":"2016-06-09T04:57:09.211Z","0.7.0":"2016-06-09T06:50:22.976Z","0.7.1":"2016-06-14T01:45:19.463Z","0.7.2":"2016-06-16T02:01:08.285Z","0.7.3":"2016-06-16T09:28:39.801Z","0.7.4":"2016-07-14T01:28:01.994Z","0.7.5":"2016-07-19T11:04:30.588Z","0.8.0-beta.0":"2016-07-20T02:49:27.992Z","0.7.6":"2016-07-20T03:44:14.564Z","0.8.0-beta.1":"2016-07-20T03:48:06.766Z","0.8.0-beta.2":"2016-07-20T09:31:30.565Z","0.7.7":"2016-07-25T03:49:45.126Z","0.8.0":"2016-07-26T03:00:12.656Z","0.9.0":"2016-07-26T06:25:38.432Z","0.9.1":"2016-07-26T06:54:29.416Z","0.9.2":"2016-07-26T08:03:29.652Z","0.9.3":"2016-07-26T09:12:01.650Z","0.9.4":"2016-07-26T10:38:58.544Z","0.9.5":"2016-07-26T11:09:50.826Z","0.9.6":"2016-07-29T02:59:28.453Z","0.9.7":"2016-07-29T03:58:28.153Z","0.10.0":"2016-07-29T09:27:47.701Z","0.10.1":"2016-07-29T10:06:57.114Z","0.10.2":"2016-08-01T03:32:53.696Z","0.10.3":"2016-08-01T07:15:46.937Z","0.10.4":"2016-08-01T08:47:59.745Z","0.11.0-beta.0":"2016-08-03T04:49:33.057Z","0.11.0":"2016-08-03T06:23:15.934Z","0.12.0":"2016-08-03T09:19:12.784Z","0.12.1":"2016-08-03T09:44:02.041Z","0.12.2":"2016-09-09T02:58:16.730Z","0.12.3":"2016-09-20T08:44:12.324Z","0.12.4":"2016-09-27T02:21:58.446Z","0.12.5":"2016-09-27T07:44:03.767Z","0.12.6":"2016-09-28T01:21:06.690Z","0.12.7":"2016-10-18T07:40:54.995Z","0.12.8":"2016-10-18T07:52:40.994Z","0.12.9":"2016-10-18T09:02:49.594Z","0.12.10":"2016-10-18T09:07:19.409Z","0.12.11":"2016-10-18T09:13:04.944Z","0.13.0":"2016-10-18T09:50:30.989Z","0.13.1":"2016-10-18T10:04:33.453Z","0.13.2":"2016-10-20T09:07:52.522Z","0.13.3":"2016-10-20T09:41:27.910Z","0.14.0":"2016-10-25T09:28:32.606Z","0.15.0":"2016-10-26T04:12:14.142Z","0.16.0":"2016-11-02T07:04:05.217Z","0.16.1":"2016-11-02T07:08:52.880Z","0.16.2":"2016-11-02T07:44:04.454Z","0.16.3":"2016-11-02T07:55:45.622Z","0.17.0":"2016-11-17T07:09:56.655Z","0.17.1":"2016-11-17T08:51:12.685Z","0.17.2":"2016-11-18T08:16:08.222Z","0.17.3":"2016-11-21T08:53:48.159Z","0.18.0":"2016-12-02T06:13:03.345Z","0.18.1":"2016-12-02T09:23:10.264Z","0.18.2":"2016-12-05T07:33:38.987Z","0.18.3":"2016-12-30T01:49:12.262Z","0.18.4":"2017-01-17T05:57:56.241Z","0.18.5":"2017-01-17T06:02:39.264Z","0.18.6":"2017-01-17T06:10:41.504Z","0.18.7":"2017-01-17T06:15:31.494Z","0.18.8":"2017-01-18T03:26:04.075Z","0.18.9":"2017-01-18T03:41:15.173Z","0.18.10":"2017-01-18T04:24:11.569Z","0.19.0":"2017-01-19T06:54:30.519Z","0.20.0-beta.0":"2017-01-20T02:28:27.481Z","0.20.0-beta.1":"2017-01-20T02:41:56.167Z","0.20.0":"2017-01-20T03:07:58.950Z","0.20.1":"2017-01-20T04:05:05.333Z","0.20.2":"2017-01-26T08:48:24.039Z","0.20.3":"2017-02-06T06:58:42.030Z","0.21.0":"2017-02-09T06:34:09.587Z","0.21.1":"2017-02-09T08:04:11.227Z","0.21.2":"2017-02-11T07:16:59.267Z","0.21.3":"2017-02-14T02:35:44.649Z","0.22.0":"2017-02-14T09:27:17.240Z","0.22.1":"2017-02-14T10:00:56.058Z","0.22.2":"2017-02-15T03:32:54.367Z","0.22.3":"2017-02-15T03:39:58.177Z","0.22.4":"2017-02-15T03:43:38.993Z","0.22.5":"2017-02-16T07:21:59.418Z","0.22.6":"2017-02-17T03:20:10.693Z","0.22.7":"2017-02-28T09:00:42.647Z","0.23.0":"2017-03-13T04:05:23.049Z","0.23.1":"2017-03-20T08:33:03.583Z","0.23.2":"2017-03-28T02:56:08.014Z"},"readmeFilename":"README.md","homepage":"https://github.com/benjycui/bisheng#readme"}