
PK 
{
"name": "webpack-stats-plugin",
"version": "0.1.5",
"description": "Webpack stats plugin",
"main": "webpack-stats-plugin.js",
"dependencies": {},
"devDependencies": {
"gulp": "3.8.10",
"gulp-eslint": "0.2.2",
"gulp-jscs": "1.4.0",
"gulp-mdox": "0.0.2",
"webpack": "1.6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/FormidableLabs/webpack-stats-plugin"
},
"keywords": [
"webpack"
],
"author": "Ryan Roemer <ryan.roemer@formidablelabs.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/FormidableLabs/webpack-stats-plugin/issues"
},
"files": [
"lib",
"index.js"
],
"scripts": {
"test": "gulp check",
"clean": "rm -rf demo/stats.json demo/build*",
"build-demo": "npm run clean && cd demo && webpack"
}
}


PK 99