package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "inline-source-map",
  3. "version": "0.6.2",
  4. "description": "Adds source mappings and base64 encodes them, so they can be inlined in your generated file.",
  5. "main": "index.js",
  6. "scripts": {
  7. "test-main": "tap test/*.js",
  8. "test-0.8": "nave use 0.8 npm run test-main",
  9. "test-0.10": "nave use 0.10 npm run test-main",
  10. "test-0.12": "nave use 0.12 npm run test-main",
  11. "test-all": "npm run test-main && npm run test-0.8 && npm run test-0.10 && npm run test-0.12",
  12. "test": "if [ -e $TRAVIS ]; then npm run test-all; else npm run test-main; fi"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "git://github.com/thlorenz/inline-source-map.git"
  17. },
  18. "homepage": "https://github.com/thlorenz/inline-source-map",
  19. "dependencies": {
  20. "source-map": "~0.5.3"
  21. },
  22. "devDependencies": {
  23. "tap": "~0.7.0",
  24. "nave": "~0.5.0"
  25. },
  26. "keywords": [
  27. "source",
  28. "map",
  29. "inline",
  30. "base64",
  31. "bundle",
  32. "generate",
  33. "transpile"
  34. ],
  35. "author": {
  36. "name": "Thorsten Lorenz",
  37. "email": "thlorenz@gmx.de",
  38. "url": "http://thlorenz.com"
  39. },
  40. "license": "MIT",
  41. "engine": {
  42. "node": ">=0.6"
  43. }
  44. }