package.json 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. {
  2. "name": "source-map",
  3. "description": "Generates and consumes source maps",
  4. "version": "0.7.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. "djchie <djchie.dev@gmail.com>",
  42. "Gary Ye <garysye@gmail.com>",
  43. "Nicolas Lalevée <nicolas.lalevee@hibnet.org>"
  44. ],
  45. "repository": {
  46. "type": "git",
  47. "url": "http://github.com/mozilla/source-map.git"
  48. },
  49. "main": "./source-map.js",
  50. "types": "./source-map.d.ts",
  51. "files": [
  52. "source-map.js",
  53. "source-map.d.ts",
  54. "lib/",
  55. "dist/source-map.js"
  56. ],
  57. "engines": {
  58. "node": ">= 8"
  59. },
  60. "license": "BSD-3-Clause",
  61. "scripts": {
  62. "lint": "eslint *.js lib/ test/",
  63. "prebuild": "npm run lint",
  64. "build": "webpack --color",
  65. "pretest": "npm run build",
  66. "test": "node test/run-tests.js",
  67. "precoverage": "npm run build",
  68. "coverage": "nyc node test/run-tests.js",
  69. "setup": "mkdir -p coverage && cp -n .waiting.html coverage/index.html || true",
  70. "dev:live": "live-server --port=4103 --ignorePattern='(js|css|png)$' coverage",
  71. "dev:watch": "watch 'npm run coverage' lib/ test/",
  72. "predev": "npm run setup",
  73. "dev": "npm-run-all -p --silent dev:*",
  74. "clean": "rm -rf coverage .nyc_output",
  75. "toc": "doctoc --title '## Table of Contents' README.md && doctoc --title '## Table of Contents' CONTRIBUTING.md"
  76. },
  77. "devDependencies": {
  78. "doctoc": "^1.3.1",
  79. "eslint": "^4.19.1",
  80. "live-server": "^1.2.0",
  81. "npm-run-all": "^4.1.2",
  82. "nyc": "^11.7.1",
  83. "watch": "^1.0.2",
  84. "webpack": "^4.9.1",
  85. "webpack-cli": "^3.1"
  86. },
  87. "nyc": {
  88. "reporter": "html"
  89. },
  90. "typings": "source-map"
  91. }