package.json 931 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "karma-source-map-support",
  3. "version": "1.4.0",
  4. "description": "Karma plugin for inline sourcemap support",
  5. "main": "lib/index.js",
  6. "dependencies": {
  7. "source-map-support": "^0.5.5"
  8. },
  9. "homepage": "https://github.com/tschaub/karma-source-map-support",
  10. "author": {
  11. "name": "Tim Schaub",
  12. "url": "http://tschaub.net/"
  13. },
  14. "keywords": [
  15. "karma-plugin",
  16. "karma-framework",
  17. "browserify",
  18. "inline",
  19. "sourcemap"
  20. ],
  21. "repository": {
  22. "type": "git",
  23. "url": "git://github.com/tschaub/karma-source-map-support.git"
  24. },
  25. "bugs": {
  26. "url": "https://github.com/tschaub/karma-source-map-support/issues"
  27. },
  28. "license": "MIT",
  29. "scripts": {
  30. "test": "eslint lib"
  31. },
  32. "eslintConfig": {
  33. "extends": "tschaub",
  34. "globals": {
  35. "sourceMapSupport": false
  36. }
  37. },
  38. "devDependencies": {
  39. "eslint": "^5.13.0",
  40. "eslint-config-tschaub": "^12.0.1"
  41. }
  42. }