{"maintainers":[{"name":"wpfpizicai","email":"444689899@qq.com"}],"keywords":["gulp","gulp-md5"],"dist-tags":{"latest":"1.0.3"},"author":{"name":"wpfpizicai"},"description":"md5 the static file and change the names in the quoted html ","readme":"# gulp-md5-plus\n\n> md5 plugin for [gulp](https://github.com/wpfpizicai/gulp-md5-plus) ,md5 the static files(eg javascript style image files) ;then replace the filenames in css or the html if needed by passing the file or dir in the second parameter\n\n## Usage\n\n\nFirst, install `gulp-md5-plus` as a development dependency:\n\n```shell\nnpm install --save-dev gulp-md5-plus\n```\n\nThen, add it to your `gulpfile.js`:\n\n```javascript\nvar md5 = require(\"gulp-md5-plus\");\n\ngulp.src(\"./src/*.css\")\n\t.pipe(md5(10,'./output/index.html'))\n\t.pipe(gulp.dest(\"./dist\"));\n```\n\nmd5 all css files in the src folder and change these css names in the quoted html--index.html\n\n```javascript\n\ngulp.task('img' ,function() {\n    var imgSrc = './static/img/**',\n        quoteSrc = './output/static/css/**/*.css', // [./output/static/css/**/*.css',./output/static/js/**/*.js']\n        imgDst = './output/static/img';\n\n    return gulp.src(imgSrc)\n        .pipe(imagemin())\n        .pipe(md5(10 ,quoteSrc))\n        .pipe(gulp.dest(imgDst));\n});\n\n```\n\nfirst, optimize all images in the img folder including all sub folders; then md5 all these images and change these images' names in the quoted css files ;\n\n\n####note\nthe directory of the md5ed files in the imgDst folder is the same as that of original files in the imgSrc folder; and css files can refer the image file with the same name in different folder rightly;\n\n## API\n\n### md5(size,file,option)\n\n#### size\nType: `String`\n\nDefault: null\n\n> you can pass the size to limit the size of the hash that is appended.\n\n#### file\nType: `String`\n\nDefault: null\n\n> the file need to replace the file name of the md5ed files. dir is also supported\n\n#### option\nType: `Object`\n\nDefault: null\n\n##### option.dirLevel\nType: `Number`\n\nDefault: null\n\n> used to match the file with it's directory path. for example: there is a file `Dev/work/gulp-md5-plus/demo/source/img/sub_img/same.svg`;when setting `dirLevel` to *1*, the plugin will use `sub_img/same.svg` to find this file in the quoted files;this option's main purpose is to replace the files with the same name in different paths. you can see demo for detail.\n\nExample:\n```javascript\n\tgulp.task('img' , ['css'],function() {\n\t    gulp.src('./source/img/**/*')\n\t        .pipe(md5(10 ,'./output/css/*.css',{\n\t        \tdirLevel : 1,\n\t        \tmappingFile: 'manifest.json',\n        \t\tconnector: '.'\n\t        }))\n\t        .pipe(gulp.dest('./output/img/'));\n\t});\n```\n\nThe sample above will append the md5 hash(length : 10) to each of the file in the static/js folder then repalce the link file name in the output/html/ using md5ed file name; at last store all of that into the *output* folder.\n\n##### option.connector\nType: `String`\n\nDefault: `_`\n\n> used to set the output file‘s connector; if use `.` the outfile will look like `imgfile.5546983ac2.png` ,while default is `imgfile_5546983ac2.png` \n\n\n##### option.mappingFile\nType: `String`\n\nDefault: null \n\n> set the file to write the mapping result ,for example `manifest.json`  \n\nafter set this option ;you should remove this file before `gulp`; you can follow the demo;\n\n## Demo\n\nI have add a demo to demonstate how to use this plugin; If you have any other questions ,pls add issues.\n\n## License\n\nhttp://en.wikipedia.org/wiki/MIT_License[MIT License]\n\n\n","repository":{"type":"git","url":"git+https://github.com/wpfpizicai/gulp-md5-plus.git"},"users":{"adamlu":true,"hustliu":true,"sternelee":true,"wpfpizicai":true,"tyouritugenn":true,"jimco":true,"slowfish":true,"yanlaichang":true},"bugs":{"url":"https://github.com/wpfpizicai/gulp-md5-plus/issues"},"license":"MIT","versions":{"0.1.0":{"name":"gulp-md5-plus","version":"0.1.0","description":"md5 the static file and change the quote names in the html","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"https://github.com/wpfpizicai/gulp-md5-plus.git"},"keywords":["gulp","gulp-md5"],"dependencies":{"gulp-util":"~2.2.14","through2":"^0.4.1"},"homepage":"https://github.com/wpfpizicai/gulp-md5-plus.git","author":{"name":"wpfpizicai"},"email":"tjuwpf@163.com","license":"MIT","gitHead":"b8b9f23b60455d68cca455f128371226a71eed9f","bugs":{"url":"https://github.com/wpfpizicai/gulp-md5-plus/issues"},"_id":"gulp-md5-plus@0.1.0","_shasum":"6ff86616df30e606f8368157663cb1085feb1504","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"wpfpizicai","email":"444689899@qq.com"},"maintainers":[{"name":"wpfpizicai","email":"444689899@qq.com"}],"dist":{"shasum":"6ff86616df30e606f8368157663cb1085feb1504","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/gulp-md5-plus/-/gulp-md5-plus-0.1.0.tgz"},"directories":{}},"0.1.1":{"name":"gulp-md5-plus","version":"0.1.1","description":"md5 the static file and change the quote names in the html","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"https://github.com/wpfpizicai/gulp-md5-plus.git"},"keywords":["gulp","gulp-md5"],"dependencies":{"gulp-util":"~2.2.14","through2":"^0.4.1","glob":"^4.0.6"},"homepage":"https://github.com/wpfpizicai/gulp-md5-plus.git","author":{"name":"wpfpizicai"},"email":"tjuwpf@163.com","license":"MIT","gitHead":"c2c729e02a8a144b8fef3b67a6222c7067136976","bugs":{"url":"https://github.com/wpfpizicai/gulp-md5-plus/issues"},"_id":"gulp-md5-plus@0.1.1","_shasum":"e910b8236590d68d93427c3f9d89a07761e85046","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"wpfpizicai","email":"444689899@qq.com"},"maintainers":[{"name":"wpfpizicai","email":"444689899@qq.com"}],"dist":{"shasum":"e910b8236590d68d93427c3f9d89a07761e85046","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/gulp-md5-plus/-/gulp-md5-plus-0.1.1.tgz"},"directories":{}},"0.1.2":{"name":"gulp-md5-plus","version":"0.1.2","description":"md5 the static file and change the quote names in the html","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"https://github.com/wpfpizicai/gulp-md5-plus.git"},"keywords":["gulp","gulp-md5"],"dependencies":{"gulp-util":"~2.2.14","through2":"^0.4.1","glob":"^4.0.6"},"homepage":"https://github.com/wpfpizicai/gulp-md5-plus.git","author":{"name":"wpfpizicai"},"email":"tjuwpf@163.com","license":"MIT","gitHead":"dda877f53095f811e78b060c0f6fed62910cf8e9","bugs":{"url":"https://github.com/wpfpizicai/gulp-md5-plus/issues"},"_id":"gulp-md5-plus@0.1.2","_shasum":"2990d105a03729f7f9f2f7557d089f68e88ecb61","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"wpfpizicai","email":"444689899@qq.com"},"maintainers":[{"name":"wpfpizicai","email":"444689899@qq.com"}],"dist":{"shasum":"2990d105a03729f7f9f2f7557d089f68e88ecb61","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/gulp-md5-plus/-/gulp-md5-plus-0.1.2.tgz"},"directories":{}},"0.1.3":{"name":"gulp-md5-plus","version":"0.1.3","description":"md5 the static file and change the quote names in the html","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"https://github.com/wpfpizicai/gulp-md5-plus.git"},"keywords":["gulp","gulp-md5"],"dependencies":{"gulp-util":"~2.2.14","through2":"^0.4.1","glob":"^4.0.6"},"homepage":"https://github.com/wpfpizicai/gulp-md5-plus.git","author":{"name":"wpfpizicai"},"email":"tjuwpf@163.com","license":"MIT","gitHead":"551cc4e8f5b15babdd7488787fb94de07e88599a","bugs":{"url":"https://github.com/wpfpizicai/gulp-md5-plus/issues"},"_id":"gulp-md5-plus@0.1.3","_shasum":"e8835ca7c92010c4da35715ee3ad63e75bab5a6f","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"wpfpizicai","email":"444689899@qq.com"},"maintainers":[{"name":"wpfpizicai","email":"444689899@qq.com"}],"dist":{"shasum":"e8835ca7c92010c4da35715ee3ad63e75bab5a6f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/gulp-md5-plus/-/gulp-md5-plus-0.1.3.tgz"},"directories":{}},"0.1.4":{"name":"gulp-md5-plus","version":"0.1.4","description":"md5 the static file and change the names in the quoted html","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"https://github.com/wpfpizicai/gulp-md5-plus.git"},"keywords":["gulp","gulp-md5"],"dependencies":{"gulp-util":"~2.2.14","through2":"^0.4.1","glob":"^4.0.6"},"homepage":"https://github.com/wpfpizicai/gulp-md5-plus.git","author":{"name":"wpfpizicai"},"email":"tjuwpf@163.com","license":"MIT","gitHead":"82574b0856e899d52f30fd5db7e30e43cf29275e","bugs":{"url":"https://github.com/wpfpizicai/gulp-md5-plus/issues"},"_id":"gulp-md5-plus@0.1.4","_shasum":"7b9d4aa11ee6a9e902e469b43c666198b706f1db","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"wpfpizicai","email":"444689899@qq.com"},"maintainers":[{"name":"wpfpizicai","email":"444689899@qq.com"}],"dist":{"shasum":"7b9d4aa11ee6a9e902e469b43c666198b706f1db","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/gulp-md5-plus/-/gulp-md5-plus-0.1.4.tgz"},"directories":{}},"0.1.5":{"name":"gulp-md5-plus","version":"0.1.5","description":"md5 the static file and change the names in the quoted html ","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"https://github.com/wpfpizicai/gulp-md5-plus.git"},"keywords":["gulp","gulp-md5"],"dependencies":{"gulp-util":"~2.2.14","through2":"^0.4.1","glob":"^4.0.6"},"homepage":"https://github.com/wpfpizicai/gulp-md5-plus.git","author":{"name":"wpfpizicai"},"email":"tjuwpf@163.com","license":"MIT","gitHead":"90a5481e5abd412a426f629fffd7c16bfa74440b","bugs":{"url":"https://github.com/wpfpizicai/gulp-md5-plus/issues"},"_id":"gulp-md5-plus@0.1.5","_shasum":"81a1ed159ac3f2e337428bd7ddc0347b857c1436","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"wpfpizicai","email":"444689899@qq.com"},"maintainers":[{"name":"wpfpizicai","email":"444689899@qq.com"}],"dist":{"shasum":"81a1ed159ac3f2e337428bd7ddc0347b857c1436","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/gulp-md5-plus/-/gulp-md5-plus-0.1.5.tgz"},"directories":{}},"0.1.6":{"name":"gulp-md5-plus","version":"0.1.6","description":"md5 the static file and change the names in the quoted html ","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"https://github.com/wpfpizicai/gulp-md5-plus.git"},"keywords":["gulp","gulp-md5"],"dependencies":{"gulp-util":"~2.2.14","through2":"^0.4.1","glob":"^4.0.6"},"homepage":"https://github.com/wpfpizicai/gulp-md5-plus.git","author":{"name":"wpfpizicai"},"email":"tjuwpf@163.com","license":"MIT","gitHead":"cc86b02149baf116292d4a043a9c58799423b964","bugs":{"url":"https://github.com/wpfpizicai/gulp-md5-plus/issues"},"_id":"gulp-md5-plus@0.1.6","_shasum":"61588deef03a8e0dcc570ad3cc361b920ca360c6","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"wpfpizicai","email":"444689899@qq.com"},"maintainers":[{"name":"wpfpizicai","email":"444689899@qq.com"}],"dist":{"shasum":"61588deef03a8e0dcc570ad3cc361b920ca360c6","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/gulp-md5-plus/-/gulp-md5-plus-0.1.6.tgz"},"directories":{}},"0.1.7":{"name":"gulp-md5-plus","version":"0.1.7","description":"md5 the static file and change the names in the quoted html ","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"https://github.com/wpfpizicai/gulp-md5-plus.git"},"keywords":["gulp","gulp-md5"],"dependencies":{"gulp-util":"~2.2.14","through2":"^0.4.1","glob":"^4.0.6"},"homepage":"https://github.com/wpfpizicai/gulp-md5-plus.git","author":{"name":"wpfpizicai"},"email":"tjuwpf@163.com","license":"MIT","gitHead":"08b76a219bad65f8f286cec67ffd962319e1aeed","bugs":{"url":"https://github.com/wpfpizicai/gulp-md5-plus/issues"},"_id":"gulp-md5-plus@0.1.7","_shasum":"d28d7b46088ba97bc0fc8865933244df1633e9d7","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"wpfpizicai","email":"444689899@qq.com"},"maintainers":[{"name":"wpfpizicai","email":"444689899@qq.com"}],"dist":{"shasum":"d28d7b46088ba97bc0fc8865933244df1633e9d7","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/gulp-md5-plus/-/gulp-md5-plus-0.1.7.tgz"},"directories":{}},"0.1.8":{"name":"gulp-md5-plus","version":"0.1.8","description":"md5 the static file and change the names in the quoted html ","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"https://github.com/wpfpizicai/gulp-md5-plus.git"},"keywords":["gulp","gulp-md5"],"dependencies":{"gulp-util":"~2.2.14","through2":"^0.4.1","glob":"^4.0.6"},"homepage":"https://github.com/wpfpizicai/gulp-md5-plus.git","author":{"name":"wpfpizicai"},"email":"tjuwpf@163.com","license":"MIT","gitHead":"e730172213e666d1c8b97ae52e25fb062dcfa9ab","bugs":{"url":"https://github.com/wpfpizicai/gulp-md5-plus/issues"},"_id":"gulp-md5-plus@0.1.8","_shasum":"1267531cf59078837e7e0a7c438ebf87a14a3e3a","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"wpfpizicai","email":"444689899@qq.com"},"maintainers":[{"name":"wpfpizicai","email":"444689899@qq.com"}],"dist":{"shasum":"1267531cf59078837e7e0a7c438ebf87a14a3e3a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/gulp-md5-plus/-/gulp-md5-plus-0.1.8.tgz"},"directories":{}},"0.1.9":{"name":"gulp-md5-plus","version":"0.1.9","description":"md5 the static file and change the names in the quoted html ","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/wpfpizicai/gulp-md5-plus.git"},"keywords":["gulp","gulp-md5"],"dependencies":{"gulp-util":"~2.2.14","through2":"^0.4.1","glob":"^4.0.6"},"homepage":"https://github.com/wpfpizicai/gulp-md5-plus.git","author":{"name":"wpfpizicai"},"email":"tjuwpf@163.com","license":"MIT","gitHead":"ee64dab82d8695da65865563022ac734620af541","bugs":{"url":"https://github.com/wpfpizicai/gulp-md5-plus/issues"},"_id":"gulp-md5-plus@0.1.9","_shasum":"9ddeba591bc452d25425069582b323d3d185c642","_from":".","_npmVersion":"2.13.4","_nodeVersion":"4.1.2","_npmUser":{"name":"wpfpizicai","email":"444689899@qq.com"},"maintainers":[{"name":"wpfpizicai","email":"444689899@qq.com"}],"dist":{"shasum":"9ddeba591bc452d25425069582b323d3d185c642","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/gulp-md5-plus/-/gulp-md5-plus-0.1.9.tgz"},"directories":{}},"0.2.0":{"name":"gulp-md5-plus","version":"0.2.0","description":"md5 the static file and change the names in the quoted html ","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/wpfpizicai/gulp-md5-plus.git"},"keywords":["gulp","gulp-md5"],"dependencies":{"gulp-util":"~2.2.14","through2":"^0.4.1","glob":"^4.0.6"},"homepage":"https://github.com/wpfpizicai/gulp-md5-plus.git","author":{"name":"wpfpizicai"},"email":"tjuwpf@163.com","license":"MIT","gitHead":"33a041011110eb5f46dba19683b36d4739f3b2c4","bugs":{"url":"https://github.com/wpfpizicai/gulp-md5-plus/issues"},"_id":"gulp-md5-plus@0.2.0","_shasum":"74fed7aed9482466938e53985c3002036c8e6646","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"wpfpizicai","email":"444689899@qq.com"},"dist":{"shasum":"74fed7aed9482466938e53985c3002036c8e6646","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/gulp-md5-plus/-/gulp-md5-plus-0.2.0.tgz"},"maintainers":[{"name":"wpfpizicai","email":"444689899@qq.com"}],"directories":{}},"0.2.1":{"name":"gulp-md5-plus","version":"0.2.1","description":"md5 the static file and change the names in the quoted html ","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/wpfpizicai/gulp-md5-plus.git"},"keywords":["gulp","gulp-md5"],"dependencies":{"gulp-util":"~2.2.14","through2":"^0.4.1","glob":"^4.0.6"},"homepage":"https://github.com/wpfpizicai/gulp-md5-plus.git","author":{"name":"wpfpizicai"},"email":"tjuwpf@163.com","license":"MIT","gitHead":"e68cc4a01c58fe10570215949029675b29c12f8a","bugs":{"url":"https://github.com/wpfpizicai/gulp-md5-plus/issues"},"_id":"gulp-md5-plus@0.2.1","_shasum":"79d51443e52c748f5c5f37e1fb7c2374b5fc9316","_from":".","_npmVersion":"3.8.1","_nodeVersion":"5.3.0","_npmUser":{"name":"wpfpizicai","email":"444689899@qq.com"},"dist":{"shasum":"79d51443e52c748f5c5f37e1fb7c2374b5fc9316","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/gulp-md5-plus/-/gulp-md5-plus-0.2.1.tgz"},"maintainers":[{"name":"wpfpizicai","email":"444689899@qq.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/gulp-md5-plus-0.2.1.tgz_1460203680799_0.2246849606744945"},"directories":{}},"0.2.2":{"name":"gulp-md5-plus","version":"0.2.2","description":"md5 the static file and change the names in the quoted html ","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/wpfpizicai/gulp-md5-plus.git"},"keywords":["gulp","gulp-md5"],"dependencies":{"gulp-util":"~2.2.14","through2":"^0.4.1","glob":"^4.0.6"},"homepage":"https://github.com/wpfpizicai/gulp-md5-plus.git","author":{"name":"wpfpizicai"},"email":"tjuwpf@163.com","license":"MIT","gitHead":"651f07dc309febbfec5b5ca72a83c0c669a7be01","bugs":{"url":"https://github.com/wpfpizicai/gulp-md5-plus/issues"},"_id":"gulp-md5-plus@0.2.2","_shasum":"893b4354cc707f29403503df8ba57f24ca00bbf6","_from":".","_npmVersion":"3.8.1","_nodeVersion":"5.3.0","_npmUser":{"name":"wpfpizicai","email":"444689899@qq.com"},"dist":{"shasum":"893b4354cc707f29403503df8ba57f24ca00bbf6","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/gulp-md5-plus/-/gulp-md5-plus-0.2.2.tgz"},"maintainers":[{"name":"wpfpizicai","email":"444689899@qq.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/gulp-md5-plus-0.2.2.tgz_1460203993241_0.30024246498942375"},"directories":{}},"0.2.4":{"name":"gulp-md5-plus","version":"0.2.4","description":"md5 the static file and change the names in the quoted html ","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/wpfpizicai/gulp-md5-plus.git"},"keywords":["gulp","gulp-md5"],"dependencies":{"gulp-util":"~2.2.14","through2":"^0.4.1","glob":"^4.0.6"},"homepage":"https://github.com/wpfpizicai/gulp-md5-plus.git","author":{"name":"wpfpizicai"},"email":"tjuwpf@163.com","license":"MIT","gitHead":"8fb21829aa80a8a5e3132f3fabea09e0b09623c8","bugs":{"url":"https://github.com/wpfpizicai/gulp-md5-plus/issues"},"_id":"gulp-md5-plus@0.2.4","_shasum":"590a52a667ea209110c653b3a0bc3eb4057fe914","_from":".","_npmVersion":"3.8.1","_nodeVersion":"5.3.0","_npmUser":{"name":"wpfpizicai","email":"444689899@qq.com"},"dist":{"shasum":"590a52a667ea209110c653b3a0bc3eb4057fe914","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/gulp-md5-plus/-/gulp-md5-plus-0.2.4.tgz"},"maintainers":[{"name":"wpfpizicai","email":"444689899@qq.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/gulp-md5-plus-0.2.4.tgz_1460259021509_0.34775979327969253"},"directories":{}},"0.2.5":{"name":"gulp-md5-plus","version":"0.2.5","description":"md5 the static file and change the names in the quoted html ","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/wpfpizicai/gulp-md5-plus.git"},"keywords":["gulp","gulp-md5"],"dependencies":{"gulp-util":"~2.2.14","through2":"^0.4.1","glob":"^4.0.6"},"homepage":"https://github.com/wpfpizicai/gulp-md5-plus.git","author":{"name":"wpfpizicai"},"email":"tjuwpf@163.com","license":"MIT","gitHead":"5836f83c0519782ac2df4979c362485c7831d371","bugs":{"url":"https://github.com/wpfpizicai/gulp-md5-plus/issues"},"_id":"gulp-md5-plus@0.2.5","_shasum":"54fc638144e6077cf5f75693ace434d0547adbd8","_from":".","_npmVersion":"3.8.1","_nodeVersion":"5.3.0","_npmUser":{"name":"wpfpizicai","email":"444689899@qq.com"},"dist":{"shasum":"54fc638144e6077cf5f75693ace434d0547adbd8","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/gulp-md5-plus/-/gulp-md5-plus-0.2.5.tgz"},"maintainers":[{"name":"wpfpizicai","email":"444689899@qq.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/gulp-md5-plus-0.2.5.tgz_1460259769038_0.23634974798187613"},"directories":{}},"1.0.0":{"name":"gulp-md5-plus","version":"1.0.0","description":"md5 the static file and change the names in the quoted html ","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/wpfpizicai/gulp-md5-plus.git"},"keywords":["gulp","gulp-md5"],"dependencies":{"gulp-util":"~2.2.14","through2":"^0.4.1","glob":"^4.0.6"},"homepage":"https://github.com/wpfpizicai/gulp-md5-plus.git","author":{"name":"wpfpizicai"},"email":"tjuwpf@163.com","license":"MIT","devDependencies":{"jsonfile":"^2.4.0"},"gitHead":"ba9f4506948c92cd396dd45debd328b1d0952e44","bugs":{"url":"https://github.com/wpfpizicai/gulp-md5-plus/issues"},"_id":"gulp-md5-plus@1.0.0","_shasum":"787bde1ffb3f2efcfb4c8be4c034450aa9526e23","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"wpfpizicai","email":"444689899@qq.com"},"dist":{"shasum":"787bde1ffb3f2efcfb4c8be4c034450aa9526e23","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/gulp-md5-plus/-/gulp-md5-plus-1.0.0.tgz"},"maintainers":[{"name":"wpfpizicai","email":"444689899@qq.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/gulp-md5-plus-1.0.0.tgz_1489998383658_0.6801471386570483"},"directories":{}},"1.0.1":{"name":"gulp-md5-plus","version":"1.0.1","description":"md5 the static file and change the names in the quoted html ","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/wpfpizicai/gulp-md5-plus.git"},"keywords":["gulp","gulp-md5"],"dependencies":{"gulp-util":"~2.2.14","through2":"^0.4.1","glob":"^4.0.6"},"homepage":"https://github.com/wpfpizicai/gulp-md5-plus.git","author":{"name":"wpfpizicai"},"email":"tjuwpf@163.com","license":"MIT","devDependencies":{"jsonfile":"^2.4.0"},"gitHead":"f8d9aed6a0ed43fdce6714f6b5f3d246bd4191eb","bugs":{"url":"https://github.com/wpfpizicai/gulp-md5-plus/issues"},"_id":"gulp-md5-plus@1.0.1","_shasum":"30322cc7d37a7be3783955cb2a4f1c83c5938ffb","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"wpfpizicai","email":"444689899@qq.com"},"dist":{"shasum":"30322cc7d37a7be3783955cb2a4f1c83c5938ffb","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/gulp-md5-plus/-/gulp-md5-plus-1.0.1.tgz"},"maintainers":[{"name":"wpfpizicai","email":"444689899@qq.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/gulp-md5-plus-1.0.1.tgz_1490064958846_0.09231856069527566"},"directories":{}},"1.0.2":{"name":"gulp-md5-plus","version":"1.0.2","description":"md5 the static file and change the names in the quoted html ","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/wpfpizicai/gulp-md5-plus.git"},"keywords":["gulp","gulp-md5"],"dependencies":{"gulp-util":"~2.2.14","through2":"^0.4.1","glob":"^4.0.6"},"homepage":"https://github.com/wpfpizicai/gulp-md5-plus.git","author":{"name":"wpfpizicai"},"email":"tjuwpf@163.com","license":"MIT","devDependencies":{"jsonfile":"^2.4.0"},"gitHead":"28880dee0eb9e9018081c09d312dcbce86fa4cfe","bugs":{"url":"https://github.com/wpfpizicai/gulp-md5-plus/issues"},"_id":"gulp-md5-plus@1.0.2","_shasum":"584d133f270f98cb2cfce700f78af0dd74e67109","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"wpfpizicai","email":"444689899@qq.com"},"dist":{"shasum":"584d133f270f98cb2cfce700f78af0dd74e67109","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/gulp-md5-plus/-/gulp-md5-plus-1.0.2.tgz"},"maintainers":[{"name":"wpfpizicai","email":"444689899@qq.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/gulp-md5-plus-1.0.2.tgz_1491809799131_0.5119476916734129"},"directories":{}},"1.0.3":{"name":"gulp-md5-plus","version":"1.0.3","description":"md5 the static file and change the names in the quoted html ","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/wpfpizicai/gulp-md5-plus.git"},"keywords":["gulp","gulp-md5"],"dependencies":{"gulp-util":"~2.2.14","through2":"^0.4.1","glob":"^4.0.6"},"homepage":"https://github.com/wpfpizicai/gulp-md5-plus.git","author":{"name":"wpfpizicai"},"email":"tjuwpf@163.com","license":"MIT","devDependencies":{"jsonfile":"^2.4.0"},"gitHead":"5fec2f68f9867ae8ca9397610bfc239a66a19097","bugs":{"url":"https://github.com/wpfpizicai/gulp-md5-plus/issues"},"_id":"gulp-md5-plus@1.0.3","_shasum":"586d23886939b6102f095f992916d1d7887282d0","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"wpfpizicai","email":"444689899@qq.com"},"dist":{"shasum":"586d23886939b6102f095f992916d1d7887282d0","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/gulp-md5-plus/-/gulp-md5-plus-1.0.3.tgz"},"maintainers":[{"name":"wpfpizicai","email":"444689899@qq.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/gulp-md5-plus-1.0.3.tgz_1494403496097_0.6559166016522795"},"directories":{}}},"name":"gulp-md5-plus","time":{"modified":"2017-05-10T08:04:56.413Z","created":"2014-11-06T06:33:17.503Z","0.1.0":"2014-11-06T06:33:17.503Z","0.1.1":"2014-11-09T03:50:48.988Z","0.1.2":"2014-11-09T04:07:14.277Z","0.1.3":"2014-11-09T07:04:19.220Z","0.1.4":"2014-11-16T02:43:42.801Z","0.1.5":"2014-11-16T05:42:28.256Z","0.1.6":"2014-12-19T09:57:42.615Z","0.1.7":"2015-05-19T10:06:02.647Z","0.1.8":"2015-09-29T05:33:55.886Z","0.1.9":"2015-11-29T17:07:08.401Z","0.2.0":"2016-01-17T01:51:50.532Z","0.2.1":"2016-04-09T12:08:01.291Z","0.2.2":"2016-04-09T12:13:16.032Z","0.2.4":"2016-04-10T03:30:23.995Z","0.2.5":"2016-04-10T03:42:51.856Z","1.0.0":"2017-03-20T08:26:25.828Z","1.0.1":"2017-03-21T02:56:00.689Z","1.0.2":"2017-04-10T07:36:41.318Z","1.0.3":"2017-05-10T08:04:56.413Z"},"readmeFilename":"README.md","homepage":"https://github.com/wpfpizicai/gulp-md5-plus.git"}