| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 | {  "name": "webpack-stream",  "version": "7.0.0",  "description": "Run webpack as a stream",  "license": "MIT",  "homepage": "https://github.com/shama/webpack-stream",  "repository": "shama/webpack-stream",  "author": {    "name": "Kyle Robinson Young",    "email": "kyle@dontkry.com",    "url": "http://dontkry.com"  },  "engines": {    "node": ">= 10.0.0"  },  "scripts": {    "start": "gulp",    "debug": "node --inspect-brk ./node_modules/.bin/gulp",    "test": "semistandard && node test/test.js"  },  "files": [    "index.js"  ],  "semistandard": {    "ignore": [      "test/fixtures",      "examples"    ]  },  "dependencies": {    "fancy-log": "^1.3.3",    "lodash.clone": "^4.3.2",    "lodash.some": "^4.2.2",    "memory-fs": "^0.5.0",    "plugin-error": "^1.0.1",    "supports-color": "^8.1.1",    "through": "^2.3.8",    "vinyl": "^2.2.1"  },  "devDependencies": {    "gulp": "^4.0.2",    "rimraf": "^3.0.2",    "semistandard": "^16.0.1",    "tape": "^5.3.1",    "vinyl-fs": "^3.0.2",    "vinyl-named": "^1.1.0",    "webpack": "^5.21.2"  },  "peerDependencies": {    "webpack": "^5.21.2"  },  "keywords": [    "gulpplugin",    "webpack",    "stream"  ]}
 |