package.json 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name" : "js-yaml",
  3. "version" : "0.3.7",
  4. "description" : "YAML 1.1 Parser",
  5. "keywords" : ["yaml", "parser", "pyyaml"],
  6. "homepage" : "https://github.com/nodeca/js-yaml",
  7. "author" : "Aleksey V Zapparov <ixti@member.fsf.org> (http://www.ixti.net/)",
  8. "contributors" : [
  9. {
  10. "name" : "Martin Grenfell",
  11. "email" : "martin.grenfell@gmail.com>",
  12. "url" : "http://got-ravings.blogspot.com"
  13. }
  14. ],
  15. "bugs" : { "url": "https://github.com/nodeca/js-yaml/issues" },
  16. "license" : { "type": "MIT", "url": "https://github.com/nodeca/js-yaml/blob/master/LICENSE" },
  17. "repository" : { "type": "git", "url": "git://github.com/nodeca/js-yaml.git" },
  18. "main" : "./index.js",
  19. "scripts" : {
  20. "test" : "make test"
  21. },
  22. "devDependencies" : {
  23. "vows" : "~ 0.6.0",
  24. "jslint" : "https://github.com/reid/node-jslint/tarball/6131ebf5713274871b89735105e3286131804771"
  25. },
  26. "engines" : { "node": "> 0.4.11" }
  27. }