2022-01-21 08:28:41 +00:00
{
2022-04-07 07:06:43 +00:00
"name" : "yamljs" ,
"version" : "0.3.0" ,
"description" : "Standalone JavaScript YAML 1.2 Parser & Encoder. Works under node.js and all major browsers. Also brings command line YAML/JSON conversion tools." ,
"keywords" : [
"yaml" ,
"json" ,
"yaml2json" ,
"json2yaml"
2022-02-23 16:41:13 +00:00
] ,
2022-04-07 07:06:43 +00:00
"author" : "Jeremy Faivre <contact@jeremyfa.com>" ,
"main" : "./lib/Yaml.js" ,
2022-01-21 08:28:41 +00:00
"dependencies" : {
"argparse" : "^1.0.7" ,
"glob" : "^7.0.5"
} ,
"devDependencies" : {
"benchmark" : "^2.1.0" ,
"coffeeify" : "^2.0.1" ,
"jasmine-node" : "^1.14.5"
} ,
2022-04-07 07:06:43 +00:00
"bin" : {
"yaml2json" : "./bin/yaml2json" ,
"json2yaml" : "./bin/json2yaml"
2022-02-23 16:41:13 +00:00
} ,
"scripts" : {
"test" : "cake build; cake test"
} ,
2022-04-07 07:06:43 +00:00
"license" : "MIT" ,
"repository" : {
"type" : "git" ,
"url" : "git://github.com/jeremyfa/yaml.js.git"
}
2022-01-21 08:28:41 +00:00
}