package.json 830 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "adjust-sourcemap-loader",
  3. "version": "4.0.0",
  4. "description": "Webpack loader that adjusts source maps",
  5. "main": "index.js",
  6. "engines": {
  7. "node": ">=8.9"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "git+https://github.com/bholloway/adjust-sourcemap-loader.git"
  12. },
  13. "keywords": [
  14. "webpack",
  15. "loader",
  16. "source-map",
  17. "sourcemap",
  18. "sources",
  19. "resolve",
  20. "adjust"
  21. ],
  22. "author": "bholloway",
  23. "license": "MIT",
  24. "bugs": {
  25. "url": "https://github.com/bholloway/adjust-sourcemap-loader/issues"
  26. },
  27. "homepage": "https://github.com/bholloway/adjust-sourcemap-loader",
  28. "dependencies": {
  29. "loader-utils": "^2.0.0",
  30. "regex-parser": "^2.2.11"
  31. },
  32. "devDependencies": {
  33. "jshint": "^2.12.0"
  34. },
  35. "scripts": {
  36. "lint": "jshint index.js lib codec"
  37. }
  38. }