package.json 808 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "yamljs",
  3. "version": "0.3.0",
  4. "description": "Standalone JavaScript YAML 1.2 Parser & Encoder. Works under node.js and all major browsers. Also brings command line YAML/JSON conversion tools.",
  5. "keywords": [
  6. "yaml",
  7. "json",
  8. "yaml2json",
  9. "json2yaml"
  10. ],
  11. "author": "Jeremy Faivre <contact@jeremyfa.com>",
  12. "main": "./lib/Yaml.js",
  13. "dependencies": {
  14. "argparse": "^1.0.7",
  15. "glob": "^7.0.5"
  16. },
  17. "devDependencies": {
  18. "benchmark": "^2.1.0",
  19. "coffeeify": "^2.0.1",
  20. "jasmine-node": "^1.14.5"
  21. },
  22. "bin": {
  23. "yaml2json": "./bin/yaml2json",
  24. "json2yaml": "./bin/json2yaml"
  25. },
  26. "scripts": {
  27. "test": "cake build; cake test"
  28. },
  29. "license": "MIT",
  30. "repository": {
  31. "type": "git",
  32. "url": "git://github.com/jeremyfa/yaml.js.git"
  33. }
  34. }