package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "webpack-stream",
  3. "version": "7.0.0",
  4. "description": "Run webpack as a stream",
  5. "license": "MIT",
  6. "homepage": "https://github.com/shama/webpack-stream",
  7. "repository": "shama/webpack-stream",
  8. "author": {
  9. "name": "Kyle Robinson Young",
  10. "email": "kyle@dontkry.com",
  11. "url": "http://dontkry.com"
  12. },
  13. "engines": {
  14. "node": ">= 10.0.0"
  15. },
  16. "scripts": {
  17. "start": "gulp",
  18. "debug": "node --inspect-brk ./node_modules/.bin/gulp",
  19. "test": "semistandard && node test/test.js"
  20. },
  21. "files": [
  22. "index.js"
  23. ],
  24. "semistandard": {
  25. "ignore": [
  26. "test/fixtures",
  27. "examples"
  28. ]
  29. },
  30. "dependencies": {
  31. "fancy-log": "^1.3.3",
  32. "lodash.clone": "^4.3.2",
  33. "lodash.some": "^4.2.2",
  34. "memory-fs": "^0.5.0",
  35. "plugin-error": "^1.0.1",
  36. "supports-color": "^8.1.1",
  37. "through": "^2.3.8",
  38. "vinyl": "^2.2.1"
  39. },
  40. "devDependencies": {
  41. "gulp": "^4.0.2",
  42. "rimraf": "^3.0.2",
  43. "semistandard": "^16.0.1",
  44. "tape": "^5.3.1",
  45. "vinyl-fs": "^3.0.2",
  46. "vinyl-named": "^1.1.0",
  47. "webpack": "^5.21.2"
  48. },
  49. "peerDependencies": {
  50. "webpack": "^5.21.2"
  51. },
  52. "keywords": [
  53. "gulpplugin",
  54. "webpack",
  55. "stream"
  56. ]
  57. }