package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "webworkify-webpack",
  3. "version": "2.1.5",
  4. "description": "launch a web worker at runtime that can require() in the browser with webpack",
  5. "main": "index.js",
  6. "scripts": {
  7. "build": "webpack --config example/webpack.config.js",
  8. "serve": "http-server",
  9. "example": "npm run build && npm run serve"
  10. },
  11. "repository": {
  12. "type": "git",
  13. "url": "git+https://github.com/borisirota/webworkify-webpack.git"
  14. },
  15. "keywords": [
  16. "web",
  17. "worker",
  18. "webworker",
  19. "background",
  20. "browser",
  21. "inline",
  22. "runtime",
  23. "webpack"
  24. ],
  25. "author": "Boris Sirota <borisirota@gmail.com> (https://github.com/borisirota)",
  26. "license": "MIT",
  27. "bugs": {
  28. "url": "https://github.com/borisirota/webworkify-webpack/issues"
  29. },
  30. "homepage": "https://github.com/borisirota/webworkify-webpack",
  31. "devDependencies": {
  32. "babel-core": "^6.9.0",
  33. "babel-loader": "^7.1.2",
  34. "babel-preset-es2015": "^6.9.0",
  35. "gamma": "^1.0.0",
  36. "http-server": "^0.11.1",
  37. "webpack": "^4.29.6",
  38. "webpack-cli": "^3.2.3"
  39. }
  40. }