package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "istanbul-lib-source-maps",
  3. "version": "1.2.6",
  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. "pretest": "jshint index.js lib/ test/",
  13. "test": "mocha"
  14. },
  15. "dependencies": {
  16. "debug": "^3.1.0",
  17. "istanbul-lib-coverage": "^1.2.1",
  18. "mkdirp": "^0.5.1",
  19. "rimraf": "^2.6.1",
  20. "source-map": "^0.5.3"
  21. },
  22. "devDependencies": {
  23. "babel-core": "^6.2.1",
  24. "chai": "^3.4.1",
  25. "is-windows": "^1.0.0",
  26. "jshint": "^2.8.0",
  27. "mocha": "^3.2.0",
  28. "ts-node": "^2.0.0"
  29. },
  30. "license": "BSD-3-Clause",
  31. "bugs": {
  32. "url": "https://github.com/istanbuljs/istanbuljs/issues"
  33. },
  34. "homepage": "https://github.com/istanbuljs/istanbuljs#readme",
  35. "repository": {
  36. "type": "git",
  37. "url": "git+ssh://git@github.com/istanbuljs/istanbuljs.git"
  38. },
  39. "keywords": [
  40. "istanbul",
  41. "sourcemaps",
  42. "sourcemap",
  43. "source",
  44. "maps"
  45. ]
  46. }