package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "get-source",
  3. "version": "2.0.12",
  4. "description": "Fetch source-mapped sources. Peek by file, line, column. Node & browsers. Sync & async.",
  5. "main": "get-source",
  6. "types": "./get-source.d.ts",
  7. "scripts": {
  8. "test-browser": "mocha test/test.browser --reporter spec",
  9. "test-node": "mocha test/test.node --reporter spec",
  10. "test-path": "mocha test/test.path --reporter spec",
  11. "test": "nyc --reporter=html --reporter=text mocha test/test.path test/test.node --reporter spec",
  12. "coveralls": "nyc report --reporter=text-lcov | coveralls"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "https://github.com/xpl/get-source.git"
  17. },
  18. "keywords": [
  19. "sources",
  20. "sourcemap",
  21. "read source",
  22. "cached sources"
  23. ],
  24. "author": "Vitaly Gordon <rocket.mind@gmail.com>",
  25. "license": "Unlicense",
  26. "bugs": {
  27. "url": "https://github.com/xpl/get-source/issues"
  28. },
  29. "homepage": "https://github.com/xpl/get-source",
  30. "devDependencies": {
  31. "chai": "^3.5.0",
  32. "coveralls": "^3.0.3",
  33. "istanbul": "^0.4.5",
  34. "memory-fs": "^0.3.0",
  35. "mocha": "^8.0.1",
  36. "nyc": "^15.1.0",
  37. "webpack": "^4.43.0"
  38. },
  39. "dependencies": {
  40. "data-uri-to-buffer": "^2.0.0",
  41. "source-map": "^0.6.1"
  42. }
  43. }