package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "webpack-node-externals",
  3. "version": "3.0.0",
  4. "description": "Easily exclude node_modules in Webpack bundle",
  5. "main": "index.js",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://github.com/liady/webpack-node-externals.git"
  9. },
  10. "dependencies": {},
  11. "devDependencies": {
  12. "chai": "^3.5.0",
  13. "eslint": "^7.7.0",
  14. "eslint-plugin-import": "^2.22.0",
  15. "mocha": "^2.5.3",
  16. "mock-fs": "^4.12.0",
  17. "ncp": "^2.0.0",
  18. "webpack": "^4.44.1"
  19. },
  20. "scripts": {
  21. "unit": "mocha --colors ./test/*.spec.js",
  22. "unit-watch": "mocha --colors -w ./test/*.spec.js",
  23. "test": "npm run unit-watch"
  24. },
  25. "keywords": [
  26. "webpack",
  27. "node_modules",
  28. "node",
  29. "bundle",
  30. "externals"
  31. ],
  32. "author": {
  33. "name": "Liad Yosef",
  34. "url": "https://github.com/liady"
  35. },
  36. "files": [
  37. "LICENSE",
  38. "README.md",
  39. "index.js",
  40. "utils.js"
  41. ],
  42. "bugs": {
  43. "url": "https://github.com/liady/webpack-node-externals/issues"
  44. },
  45. "engines": {
  46. "node": ">=6"
  47. },
  48. "homepage": "https://github.com/liady/webpack-node-externals",
  49. "license": "MIT"
  50. }