package.json 733 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "source-map-support",
  3. "description": "Fixes stack traces for files with source maps",
  4. "version": "0.4.18",
  5. "main": "./source-map-support.js",
  6. "scripts": {
  7. "build": "node build.js",
  8. "serve-tests": "http-server -p 1336",
  9. "prepublish": "npm run build",
  10. "test": "mocha"
  11. },
  12. "dependencies": {
  13. "source-map": "^0.5.6"
  14. },
  15. "devDependencies": {
  16. "browserify": "3.44.2",
  17. "coffee-script": "1.7.1",
  18. "http-server": "^0.8.5",
  19. "mocha": "1.18.2",
  20. "webpack": "^1.13.3"
  21. },
  22. "repository": {
  23. "type": "git",
  24. "url": "https://github.com/evanw/node-source-map-support"
  25. },
  26. "bugs": {
  27. "url": "https://github.com/evanw/node-source-map-support/issues"
  28. },
  29. "license": "MIT"
  30. }