package.json 564 B

12345678910111213141516171819202122232425
  1. {
  2. "name": "yaml-loader",
  3. "version": "0.5.0",
  4. "description": "YAML loader for webpack (converts YAML to JSON)",
  5. "main": "index.js",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://github.com/okonet/yaml-loader.git"
  9. },
  10. "keywords": [
  11. "yaml",
  12. "webpack",
  13. "loader",
  14. "json"
  15. ],
  16. "author": "Andrey Okonetchnikov <andrey@okonet.ru>",
  17. "license": "MIT",
  18. "bugs": {
  19. "url": "https://github.com/okonet/yaml-loader/issues"
  20. },
  21. "homepage": "https://github.com/okonet/yaml-loader",
  22. "dependencies": {
  23. "js-yaml": "^3.5.2"
  24. }
  25. }