package.json 626 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "source-list-map",
  3. "version": "2.0.1",
  4. "description": "Fast line to line SourceMap generator.",
  5. "author": "Tobias Koppers @sokra",
  6. "main": "lib/index.js",
  7. "scripts": {
  8. "test": "mocha -R spec"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "https://github.com/webpack/source-list-map.git"
  13. },
  14. "keywords": [
  15. "source-map"
  16. ],
  17. "files": [
  18. "lib"
  19. ],
  20. "license": "MIT",
  21. "bugs": {
  22. "url": "https://github.com/webpack/source-list-map/issues"
  23. },
  24. "homepage": "https://github.com/webpack/source-list-map",
  25. "devDependencies": {
  26. "mocha": "^2.2.1",
  27. "should": "^5.2.0"
  28. }
  29. }