package.json 663 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "file-loader",
  3. "version": "0.9.0",
  4. "author": "Tobias Koppers @sokra",
  5. "description": "file loader module for webpack",
  6. "files": [
  7. "index.js"
  8. ],
  9. "dependencies": {
  10. "loader-utils": "~0.2.5"
  11. },
  12. "devDependencies": {
  13. "should": "~4.0.4",
  14. "mocha": "~1.21.3"
  15. },
  16. "scripts": {
  17. "test": "mocha -R spec"
  18. },
  19. "repository": {
  20. "type": "git",
  21. "url": "https://github.com/webpack/file-loader.git"
  22. },
  23. "bugs": {
  24. "url": "https://github.com/webpack/file-loader/issues"
  25. },
  26. "homepage": "https://github.com/webpack/file-loader",
  27. "main": "index.js",
  28. "directories": {
  29. "test": "test"
  30. },
  31. "license": "MIT"
  32. }