package.json 925 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "combine-source-map",
  3. "version": "0.8.0",
  4. "description": "Add source maps of multiple files, offset them and then combine them into one source map",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "tap test/*.js"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "git://github.com/thlorenz/combine-source-map.git"
  12. },
  13. "homepage": "https://github.com/thlorenz/combine-source-map",
  14. "dependencies": {
  15. "convert-source-map": "~1.1.0",
  16. "inline-source-map": "~0.6.0",
  17. "lodash.memoize": "~3.0.3",
  18. "source-map": "~0.5.3"
  19. },
  20. "devDependencies": {
  21. "tap": "~0.4.3"
  22. },
  23. "keywords": [
  24. "source",
  25. "map",
  26. "sourcemap",
  27. "bundle",
  28. "combine",
  29. "cat",
  30. "sourceMappingUrl",
  31. "browserify"
  32. ],
  33. "author": {
  34. "name": "Thorsten Lorenz",
  35. "email": "thlorenz@gmx.de",
  36. "url": "http://thlorenz.com"
  37. },
  38. "license": "MIT",
  39. "engine": {
  40. "node": ">=0.6"
  41. }
  42. }