package.json 980 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "istanbul-lib-source-maps",
  3. "version": "4.0.1",
  4. "description": "Source maps support for istanbul",
  5. "author": "Krishnan Anantheswaran <kananthmail-github@yahoo.com>",
  6. "main": "index.js",
  7. "files": [
  8. "lib",
  9. "index.js"
  10. ],
  11. "scripts": {
  12. "test": "nyc mocha"
  13. },
  14. "dependencies": {
  15. "debug": "^4.1.1",
  16. "istanbul-lib-coverage": "^3.0.0",
  17. "source-map": "^0.6.1"
  18. },
  19. "devDependencies": {
  20. "chai": "^4.2.0",
  21. "mocha": "^6.2.2",
  22. "nyc": "^15.0.0-beta.2",
  23. "ts-node": "^8.5.4"
  24. },
  25. "license": "BSD-3-Clause",
  26. "bugs": {
  27. "url": "https://github.com/istanbuljs/istanbuljs/issues"
  28. },
  29. "homepage": "https://istanbul.js.org/",
  30. "repository": {
  31. "type": "git",
  32. "url": "git+ssh://git@github.com/istanbuljs/istanbuljs.git",
  33. "directory": "packages/istanbul-lib-source-maps"
  34. },
  35. "keywords": [
  36. "istanbul",
  37. "sourcemaps",
  38. "sourcemap",
  39. "source",
  40. "maps"
  41. ],
  42. "engines": {
  43. "node": ">=10"
  44. }
  45. }