package.json 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "source-map",
  3. "description": "Generates and consumes source maps",
  4. "version": "0.4.4",
  5. "homepage": "https://github.com/mozilla/source-map",
  6. "author": "Nick Fitzgerald <nfitzgerald@mozilla.com>",
  7. "contributors": [
  8. "Tobias Koppers <tobias.koppers@googlemail.com>",
  9. "Duncan Beevers <duncan@dweebd.com>",
  10. "Stephen Crane <scrane@mozilla.com>",
  11. "Ryan Seddon <seddon.ryan@gmail.com>",
  12. "Miles Elam <miles.elam@deem.com>",
  13. "Mihai Bazon <mihai.bazon@gmail.com>",
  14. "Michael Ficarra <github.public.email@michael.ficarra.me>",
  15. "Todd Wolfson <todd@twolfson.com>",
  16. "Alexander Solovyov <alexander@solovyov.net>",
  17. "Felix Gnass <fgnass@gmail.com>",
  18. "Conrad Irwin <conrad.irwin@gmail.com>",
  19. "usrbincc <usrbincc@yahoo.com>",
  20. "David Glasser <glasser@davidglasser.net>",
  21. "Chase Douglas <chase@newrelic.com>",
  22. "Evan Wallace <evan.exe@gmail.com>",
  23. "Heather Arthur <fayearthur@gmail.com>",
  24. "Hugh Kennedy <hughskennedy@gmail.com>",
  25. "David Glasser <glasser@davidglasser.net>",
  26. "Simon Lydell <simon.lydell@gmail.com>",
  27. "Jmeas Smith <jellyes2@gmail.com>",
  28. "Michael Z Goddard <mzgoddard@gmail.com>",
  29. "azu <azu@users.noreply.github.com>",
  30. "John Gozde <john@gozde.ca>",
  31. "Adam Kirkton <akirkton@truefitinnovation.com>",
  32. "Chris Montgomery <christopher.montgomery@dowjones.com>",
  33. "J. Ryan Stinnett <jryans@gmail.com>",
  34. "Jack Herrington <jherrington@walmartlabs.com>",
  35. "Chris Truter <jeffpalentine@gmail.com>",
  36. "Daniel Espeset <daniel@danielespeset.com>",
  37. "Jamie Wong <jamie.lf.wong@gmail.com>",
  38. "Eddy Bruël <ejpbruel@mozilla.com>",
  39. "Hawken Rives <hawkrives@gmail.com>",
  40. "Gilad Peleg <giladp007@gmail.com>"
  41. ],
  42. "repository": {
  43. "type": "git",
  44. "url": "http://github.com/mozilla/source-map.git"
  45. },
  46. "directories": {
  47. "lib": "./lib"
  48. },
  49. "main": "./lib/source-map.js",
  50. "files": [
  51. "lib/",
  52. "build/"
  53. ],
  54. "engines": {
  55. "node": ">=0.8.0"
  56. },
  57. "license": "BSD-3-Clause",
  58. "dependencies": {
  59. "amdefine": ">=0.0.4"
  60. },
  61. "devDependencies": {
  62. "dryice": ">=0.4.8"
  63. },
  64. "scripts": {
  65. "test": "node test/run-tests.js",
  66. "build": "node Makefile.dryice.js"
  67. }
  68. }