{"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"keywords":["yaml","parser","serializer","pyyaml"],"dist-tags":{"latest":"3.9.1"},"author":{"name":"Vladimir Zapparov","email":"dervus.grim@gmail.com"},"description":"YAML 1.2 parser and serializer","readme":"JS-YAML - YAML 1.2 parser / writer for JavaScript\n=================================================\n\n[![Build Status](https://travis-ci.org/nodeca/js-yaml.svg?branch=master)](https://travis-ci.org/nodeca/js-yaml)\n[![NPM version](https://img.shields.io/npm/v/js-yaml.svg)](https://www.npmjs.org/package/js-yaml)\n\n__[Online Demo](http://nodeca.github.com/js-yaml/)__\n\n\nThis is an implementation of [YAML](http://yaml.org/), a human-friendly data\nserialization language. Started as [PyYAML](http://pyyaml.org/) port, it was\ncompletely rewritten from scratch. Now it's very fast, and supports 1.2 spec.\n\n\nInstallation\n------------\n\n### YAML module for node.js\n\n```\nnpm install js-yaml\n```\n\n\n### CLI executable\n\nIf you want to inspect your YAML files from CLI, install js-yaml globally:\n\n```\nnpm install -g js-yaml\n```\n\n#### Usage\n\n```\nusage: js-yaml [-h] [-v] [-c] [-t] file\n\nPositional arguments:\n  file           File with YAML document(s)\n\nOptional arguments:\n  -h, --help     Show this help message and exit.\n  -v, --version  Show program's version number and exit.\n  -c, --compact  Display errors in compact mode\n  -t, --trace    Show stack trace on error\n```\n\n\n### Bundled YAML library for browsers\n\n``` html\n<!-- esprima required only for !!js/function -->\n<script src=\"esprima.js\"></script>\n<script src=\"js-yaml.min.js\"></script>\n<script type=\"text/javascript\">\nvar doc = jsyaml.load('greeting: hello\\nname: world');\n</script>\n```\n\nBrowser support was done mostly for the online demo. If you find any errors - feel\nfree to send pull requests with fixes. Also note, that IE and other old browsers\nneeds [es5-shims](https://github.com/kriskowal/es5-shim) to operate.\n\nNotes:\n\n1. We have no resources to support browserified version. Don't expect it to be\n   well tested. Don't expect fast fixes if something goes wrong there.\n2. `!!js/function` in browser bundle will not work by default. If you really need\n   it - load `esprima` parser first (via amd or directly).\n3. `!!bin` in browser will return `Array`, because browsers do not support\n   node.js `Buffer` and adding Buffer shims is completely useless on practice.\n\n\nAPI\n---\n\nHere we cover the most 'useful' methods. If you need advanced details (creating\nyour own tags), see [wiki](https://github.com/nodeca/js-yaml/wiki) and\n[examples](https://github.com/nodeca/js-yaml/tree/master/examples) for more\ninfo.\n\n``` javascript\nyaml = require('js-yaml');\nfs   = require('fs');\n\n// Get document, or throw exception on error\ntry {\n  var doc = yaml.safeLoad(fs.readFileSync('/home/ixti/example.yml', 'utf8'));\n  console.log(doc);\n} catch (e) {\n  console.log(e);\n}\n```\n\n\n### safeLoad (string [ , options ])\n\n**Recommended loading way.** Parses `string` as single YAML document. Returns a JavaScript\nobject or throws `YAMLException` on error. By default, does not support regexps,\nfunctions and undefined. This method is safe for untrusted data.\n\noptions:\n\n- `filename` _(default: null)_ - string to be used as a file path in\n  error/warning messages.\n- `onWarning` _(default: null)_ - function to call on warning messages.\n  Loader will throw on warnings if this function is not provided.\n- `schema` _(default: `DEFAULT_SAFE_SCHEMA`)_ - specifies a schema to use.\n  - `FAILSAFE_SCHEMA` - only strings, arrays and plain objects:\n    http://www.yaml.org/spec/1.2/spec.html#id2802346\n  - `JSON_SCHEMA` - all JSON-supported types:\n    http://www.yaml.org/spec/1.2/spec.html#id2803231\n  - `CORE_SCHEMA` - same as `JSON_SCHEMA`:\n    http://www.yaml.org/spec/1.2/spec.html#id2804923\n  - `DEFAULT_SAFE_SCHEMA` - all supported YAML types, without unsafe ones\n    (`!!js/undefined`, `!!js/regexp` and `!!js/function`):\n    http://yaml.org/type/\n  - `DEFAULT_FULL_SCHEMA` - all supported YAML types.\n- `json` _(default: false)_ - compatibility with JSON.parse behaviour. If true, then duplicate keys in a mapping will override values rather than throwing an error.\n\nNOTE: This function **does not** understand multi-document sources, it throws\nexception on those.\n\nNOTE: JS-YAML **does not** support schema-specific tag resolution restrictions.\nSo, the JSON schema is not as strictly defined in the YAML specification.\nIt allows numbers in any notation, use `Null` and `NULL` as `null`, etc.\nThe core schema also has no such restrictions. It allows binary notation for integers.\n\n\n### load (string [ , options ])\n\n**Use with care with untrusted sources**. The same as `safeLoad()` but uses\n`DEFAULT_FULL_SCHEMA` by default - adds some JavaScript-specific types:\n`!!js/function`, `!!js/regexp` and `!!js/undefined`. For untrusted sources, you\nmust additionally validate object structure to avoid injections:\n\n``` javascript\nvar untrusted_code = '\"toString\": !<tag:yaml.org,2002:js/function> \"function (){very_evil_thing();}\"';\n\n// I'm just converting that string, what could possibly go wrong?\nrequire('js-yaml').load(untrusted_code) + ''\n```\n\n\n### safeLoadAll (string [, iterator] [, options ])\n\nSame as `safeLoad()`, but understands multi-document sources. Applies\n`iterator` to each document if specified, or returns aray of documents.\n\n``` javascript\nvar yaml = require('js-yaml');\n\nyaml.safeLoadAll(data, function (doc) {\n  console.log(doc);\n});\n```\n\n\n### loadAll (string [, iterator] [ , options ])\n\nSame as `safeLoadAll()` but uses `DEFAULT_FULL_SCHEMA` by default.\n\n\n### safeDump (object [ , options ])\n\nSerializes `object` as a YAML document. Uses `DEFAULT_SAFE_SCHEMA`, so it will\nthrow an exception if you try to dump regexps or functions. However, you can\ndisable exceptions by setting the `skipInvalid` option to `true`.\n\noptions:\n\n- `indent` _(default: 2)_ - indentation width to use (in spaces).\n- `skipInvalid` _(default: false)_ - do not throw on invalid types (like function\n  in the safe schema) and skip pairs and single values with such types.\n- `flowLevel` (default: -1) - specifies level of nesting, when to switch from\n  block to flow style for collections. -1 means block style everwhere\n- `styles` - \"tag\" => \"style\" map. Each tag may have own set of styles.\n- `schema` _(default: `DEFAULT_SAFE_SCHEMA`)_ specifies a schema to use.\n- `sortKeys` _(default: `false`)_ - if `true`, sort keys when dumping YAML. If a\n  function, use the function to sort the keys.\n- `lineWidth` _(default: `80`)_ - set max line width.\n- `noRefs` _(default: `false`)_ - if `true`, don't convert duplicate objects into references\n- `noCompatMode` _(default: `false`)_ - if `true` don't try to be compatible with older\n  yaml versions. Currently: don't quote \"yes\", \"no\" and so on, as required for YAML 1.1\n- `condenseFlow` _(default: `false`)_ - if `true` flow sequences will be condensed, omitting the space between `key: value` or `a, b`. Eg. `'[a,b]'` or `{a:{b:c}}`. Can be useful when using yaml for pretty URL query params as spaces are %-encoded.\n\nThe following table show availlable styles (e.g. \"canonical\",\n\"binary\"...) available for each tag (.e.g. !!null, !!int ...). Yaml\nouput is shown on the right side after `=>` (default setting) or `->`:\n\n``` none\n!!null\n  \"canonical\"   -> \"~\"\n  \"lowercase\"   => \"null\"\n  \"uppercase\"   -> \"NULL\"\n  \"camelcase\"   -> \"Null\"\n\n!!int\n  \"binary\"      -> \"0b1\", \"0b101010\", \"0b1110001111010\"\n  \"octal\"       -> \"01\", \"052\", \"016172\"\n  \"decimal\"     => \"1\", \"42\", \"7290\"\n  \"hexadecimal\" -> \"0x1\", \"0x2A\", \"0x1C7A\"\n\n!!bool\n  \"lowercase\"   => \"true\", \"false\"\n  \"uppercase\"   -> \"TRUE\", \"FALSE\"\n  \"camelcase\"   -> \"True\", \"False\"\n\n!!float\n  \"lowercase\"   => \".nan\", '.inf'\n  \"uppercase\"   -> \".NAN\", '.INF'\n  \"camelcase\"   -> \".NaN\", '.Inf'\n```\n\nExample:\n\n``` javascript\nsafeDump (object, {\n  'styles': {\n    '!!null': 'canonical' // dump null as ~\n  },\n  'sortKeys': true        // sort object keys\n});\n```\n\n### dump (object [ , options ])\n\nSame as `safeDump()` but without limits (uses `DEFAULT_FULL_SCHEMA` by default).\n\n\nSupported YAML types\n--------------------\n\nThe list of standard YAML tags and corresponding JavaScipt types. See also\n[YAML tag discussion](http://pyyaml.org/wiki/YAMLTagDiscussion) and\n[YAML types repository](http://yaml.org/type/).\n\n```\n!!null ''                   # null\n!!bool 'yes'                # bool\n!!int '3...'                # number\n!!float '3.14...'           # number\n!!binary '...base64...'     # buffer\n!!timestamp 'YYYY-...'      # date\n!!omap [ ... ]              # array of key-value pairs\n!!pairs [ ... ]             # array or array pairs\n!!set { ... }               # array of objects with given keys and null values\n!!str '...'                 # string\n!!seq [ ... ]               # array\n!!map { ... }               # object\n```\n\n**JavaScript-specific tags**\n\n```\n!!js/regexp /pattern/gim            # RegExp\n!!js/undefined ''                   # Undefined\n!!js/function 'function () {...}'   # Function\n```\n\nCaveats\n-------\n\nNote, that you use arrays or objects as key in JS-YAML. JS does not allow objects\nor arrays as keys, and stringifies (by calling .toString method) them at the\nmoment of adding them.\n\n``` yaml\n---\n? [ foo, bar ]\n: - baz\n? { foo: bar }\n: - baz\n  - baz\n```\n\n``` javascript\n{ \"foo,bar\": [\"baz\"], \"[object Object]\": [\"baz\", \"baz\"] }\n```\n\nAlso, reading of properties on implicit block mapping keys is not supported yet.\nSo, the following YAML document cannot be loaded.\n\n``` yaml\n&anchor foo:\n  foo: bar\n  *anchor: duplicate key\n  baz: bat\n  *anchor: duplicate key\n```\n\n\nBreaking changes in 2.x.x -> 3.x.x\n----------------------------------\n\nIf you have not used __custom__ tags or loader classes and not loaded yaml\nfiles via `require()`, no changes are needed. Just upgrade the library.\n\nOtherwise, you should:\n\n1. Replace all occurences of `require('xxxx.yml')` by `fs.readFileSync()` +\n  `yaml.safeLoad()`.\n2. rewrite your custom tags constructors and custom loader\n  classes, to conform the new API. See\n  [examples](https://github.com/nodeca/js-yaml/tree/master/examples) and\n  [wiki](https://github.com/nodeca/js-yaml/wiki) for details.\n\n\nLicense\n-------\n\nView the [LICENSE](https://github.com/nodeca/js-yaml/blob/master/LICENSE) file\n(MIT).\n","repository":{"type":"git","url":"git+https://github.com/nodeca/js-yaml.git"},"users":{"pvorb":true,"matthiasg":true,"fgribreau":true,"sbruchmann":true,"adamrenny":true,"brianloveswords":true,"denisix":true,"asilvas":true,"gabeio":true,"goliatone":true,"lewisbrown":true,"japh":true,"alxe.master":true,"dewang-mistry":true,"alvint":true,"brentonhouse":true,"jelhaouchi":true,"jdhartley":true,"itonyyo":true,"loki2302":true,"buzuli":true,"gerst20051":true,"rdcl":true,"brentlintner":true,"denji":true,"rdesoky":true,"willpracht":true,"paroczi":true,"eviratec":true,"lvivier":true,"smartcoordination":true,"fdeneux":true,"monsterkodi":true,"evan2x":true,"octetstream":true,"mfellner":true,"bjmin":true,"leodutra":true,"ambdxtrch":true,"ajmckee":true,"coalesce":true,"pstoev":true,"illuminator":true,"shanewholloway":true,"wouter_vdb":true,"nigel0913":true,"fleischer":true,"monjer":true,"nukosuke":true,"captison":true,"cknowles":true,"talltotal":true,"leizongmin":true,"akarem":true,"mikestaub":true,"jakedetels":true,"hifaraz":true,"bensonho":true,"ajduke":true,"tteogi":true,"tmurngon":true,"gabriellopes":true,"penglu":true,"troygizzi":true,"gbas":true,"prometheas":true,"iori20091101":true,"skellertor":true,"rickyrattlesnake":true,"program247365":true,"leonzhao":true,"janez89":true,"tcrowe":true,"bsara":true,"kael":true,"holmes89":true,"quafoo":true,"lacodda":true,"crimeminister":true,"stone_breaker":true,"nikolay":true,"kontrax":true,"stanlous":true,"axelrindle":true,"modood":true,"bphanikumar":true,"lvpeng101":true,"yitzchak":true,"tsxuehu":true,"lholmquist":true,"felarof99":true,"elevenlui":true,"kakaman":true,"lgh06":true,"kekdude":true,"edwardxyt":true,"keenwon":true,"d7game":true,"geofftech":true,"hehaiyang":true,"rogeruiz":true,"muwum":true},"bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"license":"MIT","versions":{"0.2.0":{"name":"js-yaml","version":"0.2.0","description":"YAML 1.1 Parser","keywords":["yaml","parser","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net"},"bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"license":{"type":"MIT","url":"https://github.com/nodeca/js-yaml/blob/master/LICENSE"},"repository":{"type":"git","url":"git://github.com/nodeca/js-yaml.git"},"main":"./index.js","dependencies":{"jsclass":"3.0.4"},"engines":{"node":"> 0.4.11 < 0.7.0"},"_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"_id":"js-yaml@0.2.0","devDependencies":{},"_engineSupported":true,"_npmVersion":"1.0.103","_nodeVersion":"v0.4.12","_defaultsLoaded":true,"dist":{"shasum":"a2480a4db3c6896e4a5db16b99b504cb2768cc32","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-0.2.0.tgz"},"scripts":{},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"directories":{}},"0.2.1":{"name":"js-yaml","version":"0.2.1","description":"YAML 1.1 Parser","keywords":["yaml","parser","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net"},"bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"license":{"type":"MIT","url":"https://github.com/nodeca/js-yaml/blob/master/LICENSE"},"repository":{"type":"git","url":"git://github.com/nodeca/js-yaml.git"},"main":"./index.js","dependencies":{"jsclass":"3.0.4"},"engines":{"node":"> 0.4.11 < 0.7.0"},"_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"_id":"js-yaml@0.2.1","devDependencies":{},"_engineSupported":true,"_npmVersion":"1.0.103","_nodeVersion":"v0.5.9","_defaultsLoaded":true,"dist":{"shasum":"f42ad812a3c3a72740d571f4fb016e31f4bb9344","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-0.2.1.tgz"},"scripts":{},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"directories":{}},"0.2.2":{"name":"js-yaml","version":"0.2.2","description":"YAML 1.1 Parser","keywords":["yaml","parser","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},"bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"license":{"type":"MIT","url":"https://github.com/nodeca/js-yaml/blob/master/LICENSE"},"repository":{"type":"git","url":"git://github.com/nodeca/js-yaml.git"},"main":"./index.js","dependencies":{"jsclass":"3.0.4"},"engines":{"node":"> 0.4.11 < 0.7.0"},"_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"_id":"js-yaml@0.2.2","devDependencies":{},"_engineSupported":true,"_npmVersion":"1.0.103","_nodeVersion":"v0.5.9","_defaultsLoaded":true,"dist":{"shasum":"79650583b962457ef4eba143fcbd8b57f0972c07","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-0.2.2.tgz"},"scripts":{},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"directories":{}},"0.3.0":{"name":"js-yaml","version":"0.3.0","description":"YAML 1.1 Parser","keywords":["yaml","parser","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},"bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"license":{"type":"MIT","url":"https://github.com/nodeca/js-yaml/blob/master/LICENSE"},"repository":{"type":"git","url":"git://github.com/nodeca/js-yaml.git"},"main":"./index.js","engines":{"node":"> 0.4.11 < 0.7.0"},"_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"_id":"js-yaml@0.3.0","dependencies":{},"devDependencies":{},"_engineSupported":true,"_npmVersion":"1.0.103","_nodeVersion":"v0.5.9","_defaultsLoaded":true,"dist":{"shasum":"ed2aecd85e9f474c6c766bde89b3e27a88754f97","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-0.3.0.tgz"},"scripts":{},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"directories":{}},"0.3.1":{"name":"js-yaml","version":"0.3.1","description":"YAML 1.1 Parser","keywords":["yaml","parser","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},"bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"license":{"type":"MIT","url":"https://github.com/nodeca/js-yaml/blob/master/LICENSE"},"repository":{"type":"git","url":"git://github.com/nodeca/js-yaml.git"},"main":"./index.js","engines":{"node":"> 0.4.11 < 0.7.0"},"_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"_id":"js-yaml@0.3.1","dependencies":{},"devDependencies":{},"_engineSupported":true,"_npmVersion":"1.0.103","_nodeVersion":"v0.4.12","_defaultsLoaded":true,"dist":{"shasum":"221a8b84dcddd5ee463311b10366574a091c42dd","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-0.3.1.tgz"},"scripts":{},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"directories":{}},"0.3.2":{"name":"js-yaml","version":"0.3.2","description":"YAML 1.1 Parser","keywords":["yaml","parser","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},"bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"license":{"type":"MIT","url":"https://github.com/nodeca/js-yaml/blob/master/LICENSE"},"repository":{"type":"git","url":"git://github.com/nodeca/js-yaml.git"},"bin":{"jsyaml":"bin/js-yaml.js"},"main":"./index.js","scripts":{"test":"make test"},"devDependencies":{"jslint":"https://github.com/reid/node-jslint/tarball/6131ebf5713274871b89735105e3286131804771"},"engines":{"node":"> 0.4.11"},"_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"_id":"js-yaml@0.3.2","dependencies":{},"_engineSupported":true,"_npmVersion":"1.0.103","_nodeVersion":"v0.4.12","_defaultsLoaded":true,"dist":{"shasum":"7b007593429b52d0e91825648c9d8e9e44fe1c8e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-0.3.2.tgz"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"directories":{}},"0.3.3":{"name":"js-yaml","version":"0.3.3","description":"YAML 1.1 Parser","keywords":["yaml","parser","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},"bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"license":{"type":"MIT","url":"https://github.com/nodeca/js-yaml/blob/master/LICENSE"},"repository":{"type":"git","url":"git://github.com/nodeca/js-yaml.git"},"main":"./index.js","scripts":{"test":"make test"},"devDependencies":{"vows":"~ 0.6.0","jslint":"https://github.com/reid/node-jslint/tarball/6131ebf5713274871b89735105e3286131804771"},"engines":{"node":"> 0.4.11"},"_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"_id":"js-yaml@0.3.3","dependencies":{},"_engineSupported":true,"_npmVersion":"1.0.106","_nodeVersion":"v0.6.5","_defaultsLoaded":true,"dist":{"shasum":"258a966b44a92dfbde4750c049a0fb5ff16d49ce","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-0.3.3.tgz"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"directories":{}},"0.3.4":{"name":"js-yaml","version":"0.3.4","description":"YAML 1.1 Parser","keywords":["yaml","parser","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},"contributors":[{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"license":{"type":"MIT","url":"https://github.com/nodeca/js-yaml/blob/master/LICENSE"},"repository":{"type":"git","url":"git://github.com/nodeca/js-yaml.git"},"main":"./index.js","scripts":{"test":"make test"},"devDependencies":{"vows":"~ 0.6.0","jslint":"https://github.com/reid/node-jslint/tarball/6131ebf5713274871b89735105e3286131804771"},"engines":{"node":"> 0.4.11"},"_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"_id":"js-yaml@0.3.4","dependencies":{},"_engineSupported":true,"_npmVersion":"1.0.106","_nodeVersion":"v0.6.5","_defaultsLoaded":true,"dist":{"shasum":"361a88e93e6a2cb5fe6222ed917906f0402fe4d3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-0.3.4.tgz"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"directories":{}},"0.3.5":{"name":"js-yaml","version":"0.3.5","description":"YAML 1.1 Parser","keywords":["yaml","parser","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},"contributors":[{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"license":{"type":"MIT","url":"https://github.com/nodeca/js-yaml/blob/master/LICENSE"},"repository":{"type":"git","url":"git://github.com/nodeca/js-yaml.git"},"main":"./index.js","scripts":{"test":"make test"},"devDependencies":{"vows":"~ 0.6.0","jslint":"https://github.com/reid/node-jslint/tarball/6131ebf5713274871b89735105e3286131804771"},"engines":{"node":"> 0.4.11"},"_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"_id":"js-yaml@0.3.5","dependencies":{},"_engineSupported":true,"_npmVersion":"1.0.106","_nodeVersion":"v0.6.5","_defaultsLoaded":true,"dist":{"shasum":"c41bac6f5332e22ae5962323e65cfc38487f2487","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-0.3.5.tgz"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"directories":{}},"0.3.6":{"name":"js-yaml","version":"0.3.6","description":"YAML 1.1 Parser","keywords":["yaml","parser","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},"contributors":[{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"license":{"type":"MIT","url":"https://github.com/nodeca/js-yaml/blob/master/LICENSE"},"repository":{"type":"git","url":"git://github.com/nodeca/js-yaml.git"},"main":"./index.js","scripts":{"test":"make test"},"devDependencies":{"vows":"~ 0.6.0","jslint":"https://github.com/reid/node-jslint/tarball/6131ebf5713274871b89735105e3286131804771"},"engines":{"node":"> 0.4.11"},"_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"_id":"js-yaml@0.3.6","dependencies":{},"optionalDependencies":{},"_engineSupported":true,"_npmVersion":"1.1.1","_nodeVersion":"v0.6.10","_defaultsLoaded":true,"dist":{"shasum":"6134b2ffde54ad070beae9f342750f0f7133d7a9","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-0.3.6.tgz"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"directories":{}},"0.3.7":{"name":"js-yaml","version":"0.3.7","description":"YAML 1.1 Parser","keywords":["yaml","parser","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},"contributors":[{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"license":{"type":"MIT","url":"https://github.com/nodeca/js-yaml/blob/master/LICENSE"},"repository":{"type":"git","url":"git://github.com/nodeca/js-yaml.git"},"main":"./index.js","scripts":{"test":"make test"},"devDependencies":{"vows":"~ 0.6.0","jslint":"https://github.com/reid/node-jslint/tarball/6131ebf5713274871b89735105e3286131804771"},"engines":{"node":"> 0.4.11"},"_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"_id":"js-yaml@0.3.7","dependencies":{},"optionalDependencies":{},"_engineSupported":true,"_npmVersion":"1.1.1","_nodeVersion":"v0.6.10","_defaultsLoaded":true,"dist":{"shasum":"d739d8ee86461e54b354d6a7d7d1f2ad9a167f62","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-0.3.7.tgz"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"directories":{}},"1.0.0":{"name":"js-yaml","version":"1.0.0","description":"YAML 1.1 Parser","keywords":["yaml","parser","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},"contributors":[{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"license":{"type":"MIT","url":"https://github.com/nodeca/js-yaml/blob/master/LICENSE"},"repository":{"type":"git","url":"git://github.com/nodeca/js-yaml.git"},"main":"./index.js","bin":{"js-yaml":"bin/js-yaml.js"},"scripts":{"test":"make test"},"dependencies":{"argparse":"~ 0.1.3"},"devDependencies":{"vows":"~ 0.6.0"},"engines":{"node":">= 0.6.0"},"_id":"js-yaml@1.0.0","dist":{"shasum":"3e5b18955f343d042c1f7506810697ceadded873","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-1.0.0.tgz"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"directories":{}},"1.0.1":{"name":"js-yaml","version":"1.0.1","description":"YAML 1.1 Parser","keywords":["yaml","parser","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},"contributors":[{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"license":{"type":"MIT","url":"https://github.com/nodeca/js-yaml/blob/master/LICENSE"},"repository":{"type":"git","url":"git://github.com/nodeca/js-yaml.git"},"main":"./index.js","bin":{"js-yaml":"bin/js-yaml.js"},"scripts":{"test":"make test"},"dependencies":{"argparse":"~ 0.1.3"},"devDependencies":{"vows":"~ 0.6.0"},"engines":{"node":">= 0.6.0"},"_id":"js-yaml@1.0.1","dist":{"shasum":"189fdf5ddf523f4f25d4f9914712e30776246201","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-1.0.1.tgz"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"directories":{}},"1.0.2":{"name":"js-yaml","version":"1.0.2","description":"YAML 1.1 Parser","keywords":["yaml","parser","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},"contributors":[{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"license":{"type":"MIT","url":"https://github.com/nodeca/js-yaml/blob/master/LICENSE"},"repository":{"type":"git","url":"git://github.com/nodeca/js-yaml.git"},"main":"./index.js","bin":{"js-yaml":"bin/js-yaml.js"},"scripts":{"test":"make test"},"dependencies":{"argparse":"~ 0.1.3"},"devDependencies":{"vows":"~ 0.6.0"},"engines":{"node":">= 0.6.0"},"_id":"js-yaml@1.0.2","dist":{"shasum":"ee3f5cebdf1b62d721e573480879d12e919c80d0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-1.0.2.tgz"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"directories":{}},"1.0.3":{"name":"js-yaml","version":"1.0.3","description":"YAML 1.1 Parser","keywords":["yaml","parser","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},"contributors":[{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"license":{"type":"MIT","url":"https://github.com/nodeca/js-yaml/blob/master/LICENSE"},"repository":{"type":"git","url":"git://github.com/nodeca/js-yaml.git"},"main":"./index.js","bin":{"js-yaml":"bin/js-yaml.js"},"scripts":{"test":"make test"},"dependencies":{"argparse":"~ 0.1.3"},"devDependencies":{"vows":"~ 0.6.0"},"engines":{"node":">= 0.6.0"},"_id":"js-yaml@1.0.3","dist":{"shasum":"ec619760ffc8ae501c3d62673d874e2b9f07422a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-1.0.3.tgz"},"_npmVersion":"1.1.61","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"directories":{}},"2.0.0":{"name":"js-yaml","version":"2.0.0","description":"YAML 1.2 parser and serializer","keywords":["yaml","parser","serializer","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Dervus Grim","email":"dervus@lavabit.com"},"contributors":[{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"license":{"type":"MIT","url":"https://github.com/nodeca/js-yaml/blob/master/LICENSE"},"repository":{"type":"git","url":"git://github.com/nodeca/js-yaml.git"},"main":"./index.js","bin":{"js-yaml":"bin/js-yaml.js"},"scripts":{"test":"make test"},"dependencies":{"argparse":"~ 0.1.11"},"devDependencies":{"mocha":"*"},"engines":{"node":">= 0.6.0"},"_id":"js-yaml@2.0.0","dist":{"shasum":"49f50ea0d2264f68c2e16061e4c71bbebe1c5f93","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-2.0.0.tgz"},"_npmVersion":"1.1.66","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"directories":{}},"2.0.1":{"name":"js-yaml","version":"2.0.1","description":"YAML 1.2 parser and serializer","keywords":["yaml","parser","serializer","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Dervus Grim","email":"dervus@lavabit.com"},"contributors":[{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"license":{"type":"MIT","url":"https://github.com/nodeca/js-yaml/blob/master/LICENSE"},"repository":{"type":"git","url":"git://github.com/nodeca/js-yaml.git"},"main":"./index.js","bin":{"js-yaml":"bin/js-yaml.js"},"scripts":{"test":"make test"},"dependencies":{"argparse":"~ 0.1.11"},"devDependencies":{"mocha":"*"},"engines":{"node":">= 0.6.0"},"_id":"js-yaml@2.0.1","dist":{"shasum":"f686747a6be294acadaf48ca68e7c0a647f05109","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-2.0.1.tgz"},"_npmVersion":"1.1.66","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"directories":{}},"2.0.2":{"name":"js-yaml","version":"2.0.2","description":"YAML 1.2 parser and serializer","keywords":["yaml","parser","serializer","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Dervus Grim","email":"dervus@lavabit.com"},"contributors":[{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"license":{"type":"MIT","url":"https://github.com/nodeca/js-yaml/blob/master/LICENSE"},"repository":{"type":"git","url":"git://github.com/nodeca/js-yaml.git"},"main":"./index.js","bin":{"js-yaml":"bin/js-yaml.js"},"scripts":{"test":"make test"},"dependencies":{"argparse":"~ 0.1.11"},"devDependencies":{"mocha":"*"},"engines":{"node":">= 0.6.0"},"_id":"js-yaml@2.0.2","dist":{"shasum":"cbaad5a596cdebdb3c3b5e1a32a0662962961bd8","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-2.0.2.tgz"},"_npmVersion":"1.2.0","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"directories":{}},"2.0.3":{"name":"js-yaml","version":"2.0.3","description":"YAML 1.2 parser and serializer","keywords":["yaml","parser","serializer","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Dervus Grim","email":"dervus@lavabit.com"},"contributors":[{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"license":{"type":"MIT","url":"https://github.com/nodeca/js-yaml/blob/master/LICENSE"},"repository":{"type":"git","url":"git://github.com/nodeca/js-yaml.git"},"main":"./index.js","bin":{"js-yaml":"bin/js-yaml.js"},"scripts":{"test":"make test"},"dependencies":{"argparse":"~ 0.1.11"},"devDependencies":{"mocha":"*"},"engines":{"node":">= 0.6.0"},"_id":"js-yaml@2.0.3","dist":{"shasum":"cf3d3372fd7bcc6d01b442d3dab408abf28c82e7","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-2.0.3.tgz"},"_from":"https://github.com/nodeca/js-yaml/tarball/2.0.3","_resolved":"https://github.com/nodeca/js-yaml/tarball/2.0.3","_npmVersion":"1.2.11","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"directories":{}},"2.0.4":{"name":"js-yaml","version":"2.0.4","description":"YAML 1.2 parser and serializer","keywords":["yaml","parser","serializer","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Dervus Grim","email":"dervus@lavabit.com"},"contributors":[{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"license":{"type":"MIT","url":"https://github.com/nodeca/js-yaml/blob/master/LICENSE"},"repository":{"type":"git","url":"git://github.com/nodeca/js-yaml.git"},"main":"./index.js","bin":{"js-yaml":"bin/js-yaml.js"},"scripts":{"test":"make test"},"dependencies":{"argparse":"~ 0.1.11"},"devDependencies":{"mocha":"*"},"engines":{"node":">= 0.6.0"},"_id":"js-yaml@2.0.4","dist":{"shasum":"e6b25fceaa2fe9ce062a4d6150079d110786153c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-2.0.4.tgz"},"_from":"https://github.com/nodeca/js-yaml/tarball/2.0.4","_resolved":"https://github.com/nodeca/js-yaml/tarball/2.0.4","_npmVersion":"1.2.14","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"directories":{}},"2.0.5":{"name":"js-yaml","version":"2.0.5","description":"YAML 1.2 parser and serializer","keywords":["yaml","parser","serializer","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Dervus Grim","email":"dervus@lavabit.com"},"contributors":[{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"license":{"type":"MIT","url":"https://github.com/nodeca/js-yaml/blob/master/LICENSE"},"repository":{"type":"git","url":"git://github.com/nodeca/js-yaml.git"},"main":"./index.js","bin":{"js-yaml":"bin/js-yaml.js"},"scripts":{"test":"make test"},"dependencies":{"argparse":"~ 0.1.11","esprima":"~ 1.0.2"},"devDependencies":{"mocha":"*"},"engines":{"node":">= 0.6.0"},"_id":"js-yaml@2.0.5","dist":{"shasum":"a25ae6509999e97df278c6719da11bd0687743a8","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-2.0.5.tgz"},"_from":"https://github.com/nodeca/js-yaml/tarball/2.0.5","_resolved":"https://github.com/nodeca/js-yaml/tarball/2.0.5","_npmVersion":"1.2.14","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"directories":{}},"2.1.0":{"name":"js-yaml","version":"2.1.0","description":"YAML 1.2 parser and serializer","keywords":["yaml","parser","serializer","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Dervus Grim","email":"dervus@lavabit.com"},"contributors":[{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"license":{"type":"MIT","url":"https://github.com/nodeca/js-yaml/blob/master/LICENSE"},"repository":{"type":"git","url":"git://github.com/nodeca/js-yaml.git"},"main":"./index.js","bin":{"js-yaml":"bin/js-yaml.js"},"scripts":{"test":"make test"},"dependencies":{"argparse":"~ 0.1.11","esprima":"~ 1.0.2"},"devDependencies":{"mocha":"*"},"engines":{"node":">= 0.6.0"},"_id":"js-yaml@2.1.0","dist":{"shasum":"a55a6e4706b01d06326259a6f4bfc42e6ae38b1f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-2.1.0.tgz"},"_from":"https://github.com/nodeca/js-yaml/tarball/2.1.0","_resolved":"https://github.com/nodeca/js-yaml/tarball/2.1.0","_npmVersion":"1.2.18","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"directories":{}},"2.1.1":{"name":"js-yaml","version":"2.1.1","description":"YAML 1.2 parser and serializer","keywords":["yaml","parser","serializer","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Dervus Grim","email":"dervus@lavabit.com"},"contributors":[{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"license":{"type":"MIT","url":"https://github.com/nodeca/js-yaml/blob/master/LICENSE"},"repository":{"type":"git","url":"git://github.com/nodeca/js-yaml.git"},"main":"./index.js","bin":{"js-yaml":"bin/js-yaml.js"},"scripts":{"test":"make test"},"dependencies":{"argparse":"~ 0.1.11","esprima":"~ 1.0.2"},"devDependencies":{"mocha":"*"},"engines":{"node":">= 0.6.0"},"_id":"js-yaml@2.1.1","dist":{"shasum":"574095ef2253694313a6c2b261c7b6929a9603b7","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-2.1.1.tgz"},"_from":"https://github.com/nodeca/js-yaml/tarball/2.1.1","_resolved":"https://github.com/nodeca/js-yaml/tarball/2.1.1","_npmVersion":"1.2.32","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"directories":{}},"2.1.2":{"name":"js-yaml","version":"2.1.2","description":"YAML 1.2 parser and serializer","keywords":["yaml","parser","serializer","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Dervus Grim","email":"dervus@lavabit.com"},"contributors":[{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"license":{"type":"MIT","url":"https://github.com/nodeca/js-yaml/blob/master/LICENSE"},"repository":{"type":"git","url":"git://github.com/nodeca/js-yaml.git"},"main":"./index.js","bin":{"js-yaml":"bin/js-yaml.js"},"scripts":{"test":"make test"},"dependencies":{"argparse":"~ 0.1.11","esprima":"~ 1.0.2"},"devDependencies":{"mocha":"*"},"engines":{"node":">= 0.6.0"},"_id":"js-yaml@2.1.2","dist":{"shasum":"5404d58972f70112763e0b7e97ced20c39138bbd","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-2.1.2.tgz"},"_from":"https://github.com/nodeca/js-yaml/tarball/2.1.2","_resolved":"https://github.com/nodeca/js-yaml/tarball/2.1.2","_npmVersion":"1.3.8","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"directories":{}},"2.1.3":{"name":"js-yaml","version":"2.1.3","description":"YAML 1.2 parser and serializer","keywords":["yaml","parser","serializer","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Dervus Grim","email":"dervus.grim@gmail.com"},"contributors":[{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"license":{"type":"MIT","url":"https://github.com/nodeca/js-yaml/blob/master/LICENSE"},"repository":{"type":"git","url":"git://github.com/nodeca/js-yaml.git"},"main":"./index.js","bin":{"js-yaml":"bin/js-yaml.js"},"scripts":{"test":"make test"},"dependencies":{"argparse":"~ 0.1.11","esprima":"~ 1.0.2"},"devDependencies":{"mocha":"*"},"engines":{"node":">= 0.6.0"},"_id":"js-yaml@2.1.3","dist":{"shasum":"0ffb5617be55525878063d7a16aee7fdd282e84c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-2.1.3.tgz"},"_from":"https://github.com/nodeca/js-yaml/tarball/2.1.3","_resolved":"https://github.com/nodeca/js-yaml/tarball/2.1.3","_npmVersion":"1.3.8","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"directories":{}},"3.0.0":{"name":"js-yaml","version":"3.0.0","description":"YAML 1.2 parser and serializer","keywords":["yaml","parser","serializer","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Dervus Grim","email":"dervus.grim@gmail.com"},"contributors":[{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"license":{"type":"MIT","url":"https://github.com/nodeca/js-yaml/blob/master/LICENSE"},"repository":{"type":"git","url":"git://github.com/nodeca/js-yaml.git"},"main":"./index.js","bin":{"js-yaml":"bin/js-yaml.js"},"scripts":{"test":"make test"},"dependencies":{"argparse":"~ 0.1.11","esprima":"~ 1.0.2"},"devDependencies":{"mocha":"*"},"engines":{"node":">= 0.6.0"},"_id":"js-yaml@3.0.0","dist":{"shasum":"46a8ac74fcc6e35f2d42e08c36e2961adc76bf2d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-3.0.0.tgz"},"_from":"https://github.com/nodeca/js-yaml/tarball/3.0.0","_resolved":"https://github.com/nodeca/js-yaml/tarball/3.0.0","_npmVersion":"1.3.17","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"directories":{}},"3.0.1":{"name":"js-yaml","version":"3.0.1","description":"YAML 1.2 parser and serializer","keywords":["yaml","parser","serializer","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Dervus Grim","email":"dervus.grim@gmail.com"},"contributors":[{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"license":{"type":"MIT","url":"https://github.com/nodeca/js-yaml/blob/master/LICENSE"},"repository":{"type":"git","url":"git://github.com/nodeca/js-yaml.git"},"main":"./index.js","bin":{"js-yaml":"bin/js-yaml.js"},"scripts":{"test":"make test"},"dependencies":{"argparse":"~ 0.1.11","esprima":"~ 1.0.2"},"devDependencies":{"mocha":"*"},"engines":{"node":">= 0.6.0"},"_id":"js-yaml@3.0.1","dist":{"shasum":"76405fea5bce30fc8f405d48c6dca7f0a32c6afe","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-3.0.1.tgz"},"_from":"https://github.com/nodeca/js-yaml/tarball/3.0.1","_resolved":"https://github.com/nodeca/js-yaml/tarball/3.0.1","_npmVersion":"1.3.14","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"directories":{}},"3.0.2":{"name":"js-yaml","version":"3.0.2","description":"YAML 1.2 parser and serializer","keywords":["yaml","parser","serializer","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Dervus Grim","email":"dervus.grim@gmail.com"},"contributors":[{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},{"name":"Vitaly Puzrin","email":"vitaly@rcdesign.ru","url":"https://github.com/puzrin"},{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"license":{"type":"MIT","url":"https://github.com/nodeca/js-yaml/blob/master/LICENSE"},"repository":{"type":"git","url":"git://github.com/nodeca/js-yaml.git"},"main":"./index.js","bin":{"js-yaml":"bin/js-yaml.js"},"dependencies":{"argparse":"~ 0.1.11","esprima":"~ 1.0.2"},"devDependencies":{"mocha":"*"},"browser":{"./index.js":"./index_browser.js","buffer":false},"_id":"js-yaml@3.0.2","dist":{"shasum":"9937865f8e897a5e894e73c2c5cf2e89b32eb771","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-3.0.2.tgz"},"_from":"https://github.com/nodeca/js-yaml/tarball/3.0.2","_resolved":"https://github.com/nodeca/js-yaml/tarball/3.0.2","scripts":{},"_npmVersion":"1.4.3","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"directories":{}},"3.1.0":{"name":"js-yaml","version":"3.1.0","description":"YAML 1.2 parser and serializer","keywords":["yaml","parser","serializer","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Dervus Grim","email":"dervus.grim@gmail.com"},"contributors":[{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},{"name":"Vitaly Puzrin","email":"vitaly@rcdesign.ru","url":"https://github.com/puzrin"},{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"license":{"type":"MIT","url":"https://github.com/nodeca/js-yaml/blob/master/LICENSE"},"repository":{"type":"git","url":"git://github.com/nodeca/js-yaml.git"},"main":"./index.js","bin":{"js-yaml":"bin/js-yaml.js"},"dependencies":{"argparse":"~ 0.1.11","esprima":"~ 1.0.2"},"devDependencies":{"ansi":"*","benchmark":"*","mocha":"*"},"browser":{"buffer":false},"_id":"js-yaml@3.1.0","_shasum":"36ba02e618c50748e772dd352428904cbbadcf44","_from":"https://github.com/nodeca/js-yaml/tarball/3.1.0","_resolved":"https://github.com/nodeca/js-yaml/tarball/3.1.0","scripts":{},"_npmVersion":"1.4.9","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"dist":{"shasum":"36ba02e618c50748e772dd352428904cbbadcf44","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-3.1.0.tgz"},"directories":{}},"3.2.1":{"name":"js-yaml","version":"3.2.1","description":"YAML 1.2 parser and serializer","keywords":["yaml","parser","serializer","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Dervus Grim","email":"dervus.grim@gmail.com"},"contributors":[{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},{"name":"Vitaly Puzrin","email":"vitaly@rcdesign.ru","url":"https://github.com/puzrin"},{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"license":{"type":"MIT","url":"https://github.com/nodeca/js-yaml/blob/master/LICENSE"},"repository":{"type":"git","url":"git://github.com/nodeca/js-yaml.git"},"main":"./index.js","bin":{"js-yaml":"bin/js-yaml.js"},"dependencies":{"argparse":"~ 0.1.11","esprima":"~ 1.0.2"},"devDependencies":{"ansi":"*","benchmark":"*","mocha":"*"},"browser":{"buffer":false},"_id":"js-yaml@3.2.1","_shasum":"bcec9a6c5c7f4e4e195f3cefc867eec3f83ce79d","_from":"https://github.com/nodeca/js-yaml/tarball/3.2.1","_resolved":"https://github.com/nodeca/js-yaml/tarball/3.2.1","scripts":{},"_npmVersion":"1.4.23","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"dist":{"shasum":"bcec9a6c5c7f4e4e195f3cefc867eec3f83ce79d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-3.2.1.tgz"},"directories":{}},"3.2.2":{"name":"js-yaml","version":"3.2.2","description":"YAML 1.2 parser and serializer","keywords":["yaml","parser","serializer","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Dervus Grim","email":"dervus.grim@gmail.com"},"contributors":[{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},{"name":"Vitaly Puzrin","email":"vitaly@rcdesign.ru","url":"https://github.com/puzrin"},{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"license":{"type":"MIT","url":"https://github.com/nodeca/js-yaml/blob/master/LICENSE"},"repository":{"type":"git","url":"git://github.com/nodeca/js-yaml.git"},"main":"./index.js","bin":{"js-yaml":"bin/js-yaml.js"},"dependencies":{"argparse":"~ 0.1.11","esprima":"~ 1.0.2"},"devDependencies":{"ansi":"*","benchmark":"*","mocha":"*"},"browser":{"buffer":false},"_id":"js-yaml@3.2.2","_shasum":"a34e77fe8d5e10270e225d21d07790fa17fd2927","_from":"https://github.com/nodeca/js-yaml/tarball/3.2.2","_resolved":"https://github.com/nodeca/js-yaml/tarball/3.2.2","scripts":{},"_npmVersion":"1.4.9","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"dist":{"shasum":"a34e77fe8d5e10270e225d21d07790fa17fd2927","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-3.2.2.tgz"},"directories":{}},"3.2.3":{"name":"js-yaml","version":"3.2.3","description":"YAML 1.2 parser and serializer","keywords":["yaml","parser","serializer","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Dervus Grim","email":"dervus.grim@gmail.com"},"contributors":[{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},{"name":"Vitaly Puzrin","email":"vitaly@rcdesign.ru","url":"https://github.com/puzrin"},{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"license":{"type":"MIT","url":"https://github.com/nodeca/js-yaml/blob/master/LICENSE"},"repository":{"type":"git","url":"git://github.com/nodeca/js-yaml.git"},"main":"./index.js","bin":{"js-yaml":"bin/js-yaml.js"},"dependencies":{"argparse":"~ 0.1.11","esprima":"~ 1.0.2"},"devDependencies":{"ansi":"*","benchmark":"*","mocha":"*"},"browser":{"buffer":false},"gitHead":"a6cd5657603496c7128d3b9fa621ce9274283194","_id":"js-yaml@3.2.3","scripts":{},"_shasum":"a3af632d13df5bfa95f3b8f3c4b61efe212cd750","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"dist":{"shasum":"a3af632d13df5bfa95f3b8f3c4b61efe212cd750","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-3.2.3.tgz"},"directories":{}},"3.2.4":{"name":"js-yaml","version":"3.2.4","description":"YAML 1.2 parser and serializer","keywords":["yaml","parser","serializer","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Dervus Grim","email":"dervus.grim@gmail.com"},"contributors":[{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},{"name":"Vitaly Puzrin","email":"vitaly@rcdesign.ru","url":"https://github.com/puzrin"},{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"license":{"type":"MIT","url":"https://github.com/nodeca/js-yaml/blob/master/LICENSE"},"repository":{"type":"git","url":"git://github.com/nodeca/js-yaml.git"},"main":"./index.js","bin":{"js-yaml":"bin/js-yaml.js"},"dependencies":{"argparse":"~ 0.1.11","esprima":"~ 1.0.2"},"devDependencies":{"ansi":"*","benchmark":"*","mocha":"*"},"browser":{"buffer":false},"gitHead":"19bac7893be01d1f9c3e1263f43bd6c8a47abf90","_id":"js-yaml@3.2.4","scripts":{},"_shasum":"f2cfb5f5e1d251ff438f41d63139750001021083","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"dist":{"shasum":"f2cfb5f5e1d251ff438f41d63139750001021083","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-3.2.4.tgz"},"directories":{}},"3.2.5":{"name":"js-yaml","version":"3.2.5","description":"YAML 1.2 parser and serializer","keywords":["yaml","parser","serializer","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Dervus Grim","email":"dervus.grim@gmail.com"},"contributors":[{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},{"name":"Vitaly Puzrin","email":"vitaly@rcdesign.ru","url":"https://github.com/puzrin"},{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"license":{"type":"MIT","url":"https://github.com/nodeca/js-yaml/blob/master/LICENSE"},"repository":{"type":"git","url":"git://github.com/nodeca/js-yaml.git"},"main":"./index.js","bin":{"js-yaml":"bin/js-yaml.js"},"dependencies":{"argparse":"~ 0.1.11","esprima":"~ 1.0.2"},"devDependencies":{"ansi":"*","benchmark":"*","mocha":"*"},"browser":{"buffer":false},"gitHead":"8a73181030e075b208c8f4065a4888a786365ae2","_id":"js-yaml@3.2.5","scripts":{},"_shasum":"c29ee9a9e503e7ab83f071ccacdd0dac25ff9e22","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"dist":{"shasum":"c29ee9a9e503e7ab83f071ccacdd0dac25ff9e22","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-3.2.5.tgz"},"directories":{}},"3.2.6":{"name":"js-yaml","version":"3.2.6","description":"YAML 1.2 parser and serializer","keywords":["yaml","parser","serializer","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Dervus Grim","email":"dervus.grim@gmail.com"},"contributors":[{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},{"name":"Vitaly Puzrin","email":"vitaly@rcdesign.ru","url":"https://github.com/puzrin"},{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"license":{"type":"MIT","url":"https://github.com/nodeca/js-yaml/blob/master/LICENSE"},"repository":{"type":"git","url":"git://github.com/nodeca/js-yaml.git"},"main":"./index.js","bin":{"js-yaml":"bin/js-yaml.js"},"dependencies":{"argparse":"~ 0.1.11","esprima":"~ 1.0.2"},"devDependencies":{"ansi":"*","benchmark":"*","mocha":"*"},"browser":{"buffer":false},"gitHead":"9a7ae34da906df48e07e9eeb956f53d6aaab0b0b","_id":"js-yaml@3.2.6","scripts":{},"_shasum":"dde1ffbe2726e3fff97efb65fd02dbd6647b8309","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"dist":{"shasum":"dde1ffbe2726e3fff97efb65fd02dbd6647b8309","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-3.2.6.tgz"},"directories":{}},"3.2.7":{"name":"js-yaml","version":"3.2.7","description":"YAML 1.2 parser and serializer","keywords":["yaml","parser","serializer","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Dervus Grim","email":"dervus.grim@gmail.com"},"contributors":[{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},{"name":"Vitaly Puzrin","email":"vitaly@rcdesign.ru","url":"https://github.com/puzrin"},{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"license":{"type":"MIT","url":"https://github.com/nodeca/js-yaml/blob/master/LICENSE"},"repository":{"type":"git","url":"git://github.com/nodeca/js-yaml.git"},"main":"./index.js","bin":{"js-yaml":"bin/js-yaml.js"},"dependencies":{"argparse":"~ 1.0.0","esprima":"~ 2.0.0"},"devDependencies":{"ansi":"*","benchmark":"*","mocha":"*"},"browser":{"buffer":false},"gitHead":"2321c0b9d1e25f9b8e6202744bc601a4998fe27f","_id":"js-yaml@3.2.7","scripts":{},"_shasum":"102790f265d986fe95a4d0f2a792e7a7bd886eec","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"dist":{"shasum":"102790f265d986fe95a4d0f2a792e7a7bd886eec","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-3.2.7.tgz"},"directories":{}},"3.3.0":{"name":"js-yaml","version":"3.3.0","description":"YAML 1.2 parser and serializer","keywords":["yaml","parser","serializer","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Dervus Grim","email":"dervus.grim@gmail.com"},"contributors":[{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},{"name":"Vitaly Puzrin","email":"vitaly@rcdesign.ru","url":"https://github.com/puzrin"},{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"license":"MIT","repository":{"type":"git","url":"git://github.com/nodeca/js-yaml.git"},"bin":{"js-yaml":"bin/js-yaml.js"},"dependencies":{"argparse":"~1.0.2","esprima":"~2.2.0"},"devDependencies":{"ansi":"*","benchmark":"*","eslint":"0.18.0","eslint-plugin-nodeca":"^1.0.3","istanbul":"*","mocha":"*"},"browser":{"buffer":false},"scripts":{"test":"make test"},"gitHead":"9cc570a50a767b08c3b0fcd0e61efec880aa7c11","bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"_id":"js-yaml@3.3.0","_shasum":"cb6422d39168dbde419fecb7fd06fbe27ad56210","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"dist":{"shasum":"cb6422d39168dbde419fecb7fd06fbe27ad56210","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-3.3.0.tgz"},"directories":{}},"3.3.1":{"name":"js-yaml","version":"3.3.1","description":"YAML 1.2 parser and serializer","keywords":["yaml","parser","serializer","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Dervus Grim","email":"dervus.grim@gmail.com"},"contributors":[{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},{"name":"Vitaly Puzrin","email":"vitaly@rcdesign.ru","url":"https://github.com/puzrin"},{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"license":"MIT","repository":{"type":"git","url":"git://github.com/nodeca/js-yaml.git"},"bin":{"js-yaml":"bin/js-yaml.js"},"dependencies":{"argparse":"~1.0.2","esprima":"~2.2.0"},"devDependencies":{"ansi":"*","benchmark":"*","eslint":"0.18.0","eslint-plugin-nodeca":"^1.0.3","istanbul":"*","mocha":"*"},"browser":{"buffer":false},"scripts":{"test":"make test"},"gitHead":"c50f9936bd1e99d64a54d30400e377f4fda401c5","bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"_id":"js-yaml@3.3.1","_shasum":"ca1acd3423ec275d12140a7bab51db015ba0b3c0","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"dist":{"shasum":"ca1acd3423ec275d12140a7bab51db015ba0b3c0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-3.3.1.tgz"},"directories":{}},"3.4.0":{"name":"js-yaml","version":"3.4.0","description":"YAML 1.2 parser and serializer","keywords":["yaml","parser","serializer","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Dervus Grim","email":"dervus.grim@gmail.com"},"contributors":[{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},{"name":"Vitaly Puzrin","email":"vitaly@rcdesign.ru","url":"https://github.com/puzrin"},{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"license":"MIT","repository":{"type":"git","url":"git://github.com/nodeca/js-yaml.git"},"files":["index.js","lib/","bin/","dist/"],"bin":{"js-yaml":"bin/js-yaml.js"},"dependencies":{"argparse":"~1.0.2","esprima":"~2.2.0"},"devDependencies":{"ansi":"*","benchmark":"*","eslint":"0.24.1","eslint-plugin-nodeca":"^1.0.3","istanbul":"*","mocha":"*"},"browser":{"buffer":false},"scripts":{"test":"make test"},"gitHead":"da3d1fa05a1e8087ecad25d53f91a8419cf041d1","bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"_id":"js-yaml@3.4.0","_shasum":"63498041a26425d31c3d662ec6f5d0a25c1c7d9b","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"dist":{"shasum":"63498041a26425d31c3d662ec6f5d0a25c1c7d9b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-3.4.0.tgz"},"directories":{}},"3.4.1":{"name":"js-yaml","version":"3.4.1","description":"YAML 1.2 parser and serializer","keywords":["yaml","parser","serializer","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Dervus Grim","email":"dervus.grim@gmail.com"},"contributors":[{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},{"name":"Vitaly Puzrin","email":"vitaly@rcdesign.ru","url":"https://github.com/puzrin"},{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"license":"MIT","repository":{"type":"git","url":"git://github.com/nodeca/js-yaml.git"},"files":["index.js","lib/","bin/","dist/"],"bin":{"js-yaml":"bin/js-yaml.js"},"dependencies":{"argparse":"~1.0.2","esprima":"~2.2.0"},"devDependencies":{"ansi":"*","benchmark":"*","eslint":"0.24.1","eslint-plugin-nodeca":"^1.0.3","istanbul":"*","mocha":"*"},"browser":{"buffer":false},"scripts":{"test":"make test"},"gitHead":"0215138ec880c1e0ebc93f5a8c94bb753f5a5456","bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"_id":"js-yaml@3.4.1","_shasum":"7183990c62f646369eaa04675b2d5f1e71d62b8b","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"dist":{"shasum":"7183990c62f646369eaa04675b2d5f1e71d62b8b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-3.4.1.tgz"},"directories":{}},"3.4.2":{"name":"js-yaml","version":"3.4.2","description":"YAML 1.2 parser and serializer","keywords":["yaml","parser","serializer","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Dervus Grim","email":"dervus.grim@gmail.com"},"contributors":[{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},{"name":"Vitaly Puzrin","email":"vitaly@rcdesign.ru","url":"https://github.com/puzrin"},{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"license":"MIT","repository":{"type":"git","url":"git://github.com/nodeca/js-yaml.git"},"files":["index.js","lib/","bin/","dist/"],"bin":{"js-yaml":"bin/js-yaml.js"},"dependencies":{"argparse":"~1.0.2","esprima":"~2.2.0"},"devDependencies":{"ansi":"*","benchmark":"*","eslint":"0.24.1","eslint-plugin-nodeca":"^1.0.3","istanbul":"*","mocha":"*"},"browser":{"buffer":false},"scripts":{"test":"make test"},"gitHead":"cab39bb1065959e44f8fd48ad9ff637d1baf72c1","bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"_id":"js-yaml@3.4.2","_shasum":"10942383ee4b9c2c20ede2388c1b0f3878a2b0ce","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"dist":{"shasum":"10942383ee4b9c2c20ede2388c1b0f3878a2b0ce","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-3.4.2.tgz"},"directories":{}},"3.4.3":{"name":"js-yaml","version":"3.4.3","description":"YAML 1.2 parser and serializer","keywords":["yaml","parser","serializer","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Dervus Grim","email":"dervus.grim@gmail.com"},"contributors":[{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},{"name":"Vitaly Puzrin","email":"vitaly@rcdesign.ru","url":"https://github.com/puzrin"},{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"license":"MIT","repository":{"type":"git","url":"git://github.com/nodeca/js-yaml.git"},"files":["index.js","lib/","bin/","dist/"],"bin":{"js-yaml":"bin/js-yaml.js"},"dependencies":{"argparse":"^1.0.2","esprima":"^2.6.0"},"devDependencies":{"ansi":"*","benchmark":"*","eslint":"0.24.1","eslint-plugin-nodeca":"^1.0.3","istanbul":"*","mocha":"*"},"browser":{"buffer":false},"scripts":{"test":"make test"},"gitHead":"13e619cb93e100b9edd1d87f9a2cb1e805a3b2c7","bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"_id":"js-yaml@3.4.3","_shasum":"98c3a3f06bdac9dfc270fd91cec9d943e364cecd","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"dist":{"shasum":"98c3a3f06bdac9dfc270fd91cec9d943e364cecd","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-3.4.3.tgz"},"directories":{}},"3.4.4":{"name":"js-yaml","version":"3.4.4","description":"YAML 1.2 parser and serializer","keywords":["yaml","parser","serializer","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Vladimir Zapparov","email":"dervus.grim@gmail.com"},"contributors":[{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},{"name":"Vitaly Puzrin","email":"vitaly@rcdesign.ru","url":"https://github.com/puzrin"},{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/nodeca/js-yaml.git"},"files":["index.js","lib/","bin/","dist/"],"bin":{"js-yaml":"bin/js-yaml.js"},"dependencies":{"argparse":"^1.0.2","esprima":"^2.6.0"},"devDependencies":{"ansi":"*","benchmark":"*","eslint":"0.24.1","eslint-plugin-nodeca":"^1.0.3","istanbul":"*","mocha":"*"},"browser":{"buffer":false},"scripts":{"test":"make test"},"gitHead":"54e4dc30cc5fbfc21f291cace630a2f32d3114d9","bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"_id":"js-yaml@3.4.4","_shasum":"33ac457edeb78040fc1490f57eb3e7e9fe57cee5","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"dist":{"shasum":"33ac457edeb78040fc1490f57eb3e7e9fe57cee5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-3.4.4.tgz"},"directories":{}},"3.4.5":{"name":"js-yaml","version":"3.4.5","description":"YAML 1.2 parser and serializer","keywords":["yaml","parser","serializer","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Vladimir Zapparov","email":"dervus.grim@gmail.com"},"contributors":[{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},{"name":"Vitaly Puzrin","email":"vitaly@rcdesign.ru","url":"https://github.com/puzrin"},{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/nodeca/js-yaml.git"},"files":["index.js","lib/","bin/","dist/"],"bin":{"js-yaml":"bin/js-yaml.js"},"dependencies":{"argparse":"^1.0.2","esprima":"^2.6.0"},"devDependencies":{"ansi":"*","benchmark":"*","eslint":"0.24.1","eslint-plugin-nodeca":"^1.0.3","istanbul":"*","mocha":"*"},"browser":{"buffer":false},"scripts":{"test":"make test"},"gitHead":"66035322ee0906f0bcb24700bd7332ce66726c32","bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"_id":"js-yaml@3.4.5","_shasum":"c3403797df12b91866574f2de23646fe8cafb44d","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"dist":{"shasum":"c3403797df12b91866574f2de23646fe8cafb44d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-3.4.5.tgz"},"directories":{}},"3.4.6":{"name":"js-yaml","version":"3.4.6","description":"YAML 1.2 parser and serializer","keywords":["yaml","parser","serializer","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Vladimir Zapparov","email":"dervus.grim@gmail.com"},"contributors":[{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},{"name":"Vitaly Puzrin","email":"vitaly@rcdesign.ru","url":"https://github.com/puzrin"},{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/nodeca/js-yaml.git"},"files":["index.js","lib/","bin/","dist/"],"bin":{"js-yaml":"bin/js-yaml.js"},"dependencies":{"argparse":"^1.0.2","esprima":"^2.6.0","inherit":"^2.2.2"},"devDependencies":{"ansi":"*","benchmark":"*","eslint":"0.24.1","eslint-plugin-nodeca":"^1.0.3","istanbul":"*","mocha":"*"},"browser":{"buffer":false},"scripts":{"test":"make test"},"gitHead":"38f9b2e82e80a9a540a264ab8920344165a2018b","bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"_id":"js-yaml@3.4.6","_shasum":"6be1b23f6249f53d293370fd4d1aaa63ce1b4eb0","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"dist":{"shasum":"6be1b23f6249f53d293370fd4d1aaa63ce1b4eb0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-3.4.6.tgz"},"directories":{}},"3.5.0":{"name":"js-yaml","version":"3.5.0","description":"YAML 1.2 parser and serializer","keywords":["yaml","parser","serializer","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Vladimir Zapparov","email":"dervus.grim@gmail.com"},"contributors":[{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},{"name":"Vitaly Puzrin","email":"vitaly@rcdesign.ru","url":"https://github.com/puzrin"},{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/nodeca/js-yaml.git"},"files":["index.js","lib/","bin/","dist/"],"bin":{"js-yaml":"bin/js-yaml.js"},"dependencies":{"argparse":"^1.0.2","esprima":"^2.6.0","inherit":"^2.2.2"},"devDependencies":{"ansi":"*","benchmark":"*","browserify":"^13.0.0","eslint":"0.24.1","eslint-plugin-nodeca":"^1.0.3","istanbul":"*","mocha":"*","uglify-js":"^2.6.1"},"browser":{"buffer":false,"esprima":false},"scripts":{"test":"make test"},"gitHead":"4ad1e777f354e108d320afe85aea554bf3309e1e","bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"_id":"js-yaml@3.5.0","_shasum":"617f504af336e98c219a8a6eb7d67ab1b7072fcc","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.4","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"dist":{"shasum":"617f504af336e98c219a8a6eb7d67ab1b7072fcc","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-3.5.0.tgz"},"directories":{}},"3.5.1":{"name":"js-yaml","version":"3.5.1","description":"YAML 1.2 parser and serializer","keywords":["yaml","parser","serializer","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Vladimir Zapparov","email":"dervus.grim@gmail.com"},"contributors":[{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},{"name":"Vitaly Puzrin","email":"vitaly@rcdesign.ru","url":"https://github.com/puzrin"},{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/nodeca/js-yaml.git"},"files":["index.js","lib/","bin/","dist/"],"bin":{"js-yaml":"bin/js-yaml.js"},"dependencies":{"argparse":"^1.0.2","esprima":"^2.6.0"},"devDependencies":{"ansi":"*","benchmark":"*","browserify":"^13.0.0","codemirror":"^5.10.0","eslint":"0.24.1","eslint-plugin-nodeca":"^1.0.3","istanbul":"*","mocha":"*","uglify-js":"^2.6.1"},"browser":{"buffer":false},"scripts":{"test":"make test"},"gitHead":"8f787fac082198450db5f79e4e92714423cc8478","bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"_id":"js-yaml@3.5.1","_shasum":"dadd0939be1956726051085d259973f301fcdb31","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.4","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"dist":{"shasum":"dadd0939be1956726051085d259973f301fcdb31","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-3.5.1.tgz"},"directories":{}},"3.5.2":{"name":"js-yaml","version":"3.5.2","description":"YAML 1.2 parser and serializer","keywords":["yaml","parser","serializer","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Vladimir Zapparov","email":"dervus.grim@gmail.com"},"contributors":[{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},{"name":"Vitaly Puzrin","email":"vitaly@rcdesign.ru","url":"https://github.com/puzrin"},{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/nodeca/js-yaml.git"},"files":["index.js","lib/","bin/","dist/"],"bin":{"js-yaml":"bin/js-yaml.js"},"dependencies":{"argparse":"^1.0.2","esprima":"^2.6.0"},"devDependencies":{"ansi":"*","benchmark":"*","browserify":"^13.0.0","codemirror":"^5.10.0","eslint":"0.24.1","eslint-plugin-nodeca":"^1.0.3","istanbul":"*","mocha":"*","uglify-js":"^2.6.1"},"browser":{"buffer":false},"scripts":{"test":"make test"},"gitHead":"4e7b17612d3dd9e20880a8e959b4ae7c2d68209a","bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"_id":"js-yaml@3.5.2","_shasum":"46a76fefeec9ec66cb4e71faef07118c6bf246e9","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.4","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"dist":{"shasum":"46a76fefeec9ec66cb4e71faef07118c6bf246e9","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-3.5.2.tgz"},"directories":{}},"3.5.3":{"name":"js-yaml","version":"3.5.3","description":"YAML 1.2 parser and serializer","keywords":["yaml","parser","serializer","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Vladimir Zapparov","email":"dervus.grim@gmail.com"},"contributors":[{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},{"name":"Vitaly Puzrin","email":"vitaly@rcdesign.ru","url":"https://github.com/puzrin"},{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/nodeca/js-yaml.git"},"files":["index.js","lib/","bin/","dist/"],"bin":{"js-yaml":"bin/js-yaml.js"},"dependencies":{"argparse":"^1.0.2","esprima":"^2.6.0"},"devDependencies":{"ansi":"*","benchmark":"*","browserify":"^13.0.0","codemirror":"^5.10.0","eslint":"^2.0.0-rc.1","istanbul":"*","mocha":"*","uglify-js":"^2.6.1"},"browser":{"buffer":false},"scripts":{"test":"make test"},"gitHead":"4a9e0a258586cff292cab63e0b76044fc1f4cb63","bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"_id":"js-yaml@3.5.3","_shasum":"e9ee6082b0657770e4346dfaf2a58c5992251f76","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.3.0","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"dist":{"shasum":"e9ee6082b0657770e4346dfaf2a58c5992251f76","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-3.5.3.tgz"},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/js-yaml-3.5.3.tgz_1455175645225_0.033302413299679756"},"directories":{}},"3.5.4":{"name":"js-yaml","version":"3.5.4","description":"YAML 1.2 parser and serializer","keywords":["yaml","parser","serializer","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Vladimir Zapparov","email":"dervus.grim@gmail.com"},"contributors":[{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},{"name":"Vitaly Puzrin","email":"vitaly@rcdesign.ru","url":"https://github.com/puzrin"},{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/nodeca/js-yaml.git"},"files":["index.js","lib/","bin/","dist/"],"bin":{"js-yaml":"bin/js-yaml.js"},"dependencies":{"argparse":"^1.0.2","esprima":"^2.6.0"},"devDependencies":{"ansi":"*","benchmark":"*","browserify":"^13.0.0","codemirror":"^5.10.0","eslint":"^2.0.0-rc.1","istanbul":"*","mocha":"*","uglify-js":"^2.6.1"},"browser":{"buffer":false},"scripts":{"test":"make test"},"gitHead":"5f058c3a78fd1a1bd36fd2cdc2c3a8c45ab53fd1","bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"_id":"js-yaml@3.5.4","_shasum":"f64f16dcd78beb9ce8361068e733ebe47b079179","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.3.0","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"dist":{"shasum":"f64f16dcd78beb9ce8361068e733ebe47b079179","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-3.5.4.tgz"},"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/js-yaml-3.5.4.tgz_1457547930676_0.2546668383292854"},"directories":{}},"3.5.5":{"name":"js-yaml","version":"3.5.5","description":"YAML 1.2 parser and serializer","keywords":["yaml","parser","serializer","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Vladimir Zapparov","email":"dervus.grim@gmail.com"},"contributors":[{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},{"name":"Vitaly Puzrin","email":"vitaly@rcdesign.ru","url":"https://github.com/puzrin"},{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/nodeca/js-yaml.git"},"files":["index.js","lib/","bin/","dist/"],"bin":{"js-yaml":"bin/js-yaml.js"},"dependencies":{"argparse":"^1.0.2","esprima":"^2.6.0"},"devDependencies":{"ansi":"*","benchmark":"*","browserify":"^13.0.0","codemirror":"^5.10.0","eslint":"^2.0.0-rc.1","istanbul":"*","mocha":"*","uglify-js":"^2.6.1"},"browser":{"buffer":false},"scripts":{"test":"make test"},"gitHead":"fdd205e5a1175a62868c0efb28a77493e5e34e3f","bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"_id":"js-yaml@3.5.5","_shasum":"0377c38017cabc7322b0d1fbcd25a491641f2fbe","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.3.0","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"dist":{"shasum":"0377c38017cabc7322b0d1fbcd25a491641f2fbe","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-3.5.5.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/js-yaml-3.5.5.tgz_1458226126775_0.5821511475369334"},"directories":{}},"3.6.0":{"name":"js-yaml","version":"3.6.0","description":"YAML 1.2 parser and serializer","keywords":["yaml","parser","serializer","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Vladimir Zapparov","email":"dervus.grim@gmail.com"},"contributors":[{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},{"name":"Vitaly Puzrin","email":"vitaly@rcdesign.ru","url":"https://github.com/puzrin"},{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/nodeca/js-yaml.git"},"files":["index.js","lib/","bin/","dist/"],"bin":{"js-yaml":"bin/js-yaml.js"},"dependencies":{"argparse":"^1.0.7","esprima":"^2.6.0"},"devDependencies":{"ansi":"*","benchmark":"*","browserify":"^13.0.0","codemirror":"^5.13.4","eslint":"^2.8.0","istanbul":"*","mocha":"*","uglify-js":"^2.6.1"},"scripts":{"test":"make test"},"gitHead":"87e4cdc21deec3dda9b811366fb3a3af16c08f0d","bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"_id":"js-yaml@3.6.0","_shasum":"3b7bf3256dd598f60f8b6f8ea75514a585a24dc6","_from":".","_npmVersion":"2.14.20","_nodeVersion":"4.4.1","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"dist":{"shasum":"3b7bf3256dd598f60f8b6f8ea75514a585a24dc6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-3.6.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/js-yaml-3.6.0.tgz_1460755132000_0.1514641239773482"},"directories":{}},"3.6.1":{"name":"js-yaml","version":"3.6.1","description":"YAML 1.2 parser and serializer","keywords":["yaml","parser","serializer","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Vladimir Zapparov","email":"dervus.grim@gmail.com"},"contributors":[{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},{"name":"Vitaly Puzrin","email":"vitaly@rcdesign.ru","url":"https://github.com/puzrin"},{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/nodeca/js-yaml.git"},"files":["index.js","lib/","bin/","dist/"],"bin":{"js-yaml":"bin/js-yaml.js"},"dependencies":{"argparse":"^1.0.7","esprima":"^2.6.0"},"devDependencies":{"ansi":"*","benchmark":"*","browserify":"^13.0.0","codemirror":"^5.13.4","eslint":"^2.8.0","istanbul":"*","mocha":"*","uglify-js":"^2.6.1"},"scripts":{"test":"make test"},"gitHead":"c76b837cacc69de6b86a0781db31a9bb7a193875","bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"_id":"js-yaml@3.6.1","_shasum":"6e5fe67d8b205ce4d22fad05b7781e8dadcc4b30","_from":".","_npmVersion":"2.15.1","_nodeVersion":"4.4.3","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"dist":{"shasum":"6e5fe67d8b205ce4d22fad05b7781e8dadcc4b30","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-3.6.1.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/js-yaml-3.6.1.tgz_1462995636349_0.2209061929024756"},"directories":{}},"3.7.0":{"name":"js-yaml","version":"3.7.0","description":"YAML 1.2 parser and serializer","keywords":["yaml","parser","serializer","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Vladimir Zapparov","email":"dervus.grim@gmail.com"},"contributors":[{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},{"name":"Vitaly Puzrin","email":"vitaly@rcdesign.ru","url":"https://github.com/puzrin"},{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/nodeca/js-yaml.git"},"files":["index.js","lib/","bin/","dist/"],"bin":{"js-yaml":"bin/js-yaml.js"},"dependencies":{"argparse":"^1.0.7","esprima":"^2.6.0"},"devDependencies":{"ansi":"*","benchmark":"*","browserify":"^13.0.0","codemirror":"^5.13.4","eslint":"^2.8.0","istanbul":"*","mocha":"*","uglify-js":"^2.6.1"},"scripts":{"test":"make test"},"gitHead":"279655fa5ad46d17117f60680fa3b46a0b5391c5","bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"_id":"js-yaml@3.7.0","_shasum":"5c967ddd837a9bfdca5f2de84253abe8a1c03b80","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.8.1","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"dist":{"shasum":"5c967ddd837a9bfdca5f2de84253abe8a1c03b80","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-3.7.0.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/js-yaml-3.7.0.tgz_1478914323559_0.38230896391905844"},"directories":{}},"3.8.0":{"name":"js-yaml","version":"3.8.0","description":"YAML 1.2 parser and serializer","keywords":["yaml","parser","serializer","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Vladimir Zapparov","email":"dervus.grim@gmail.com"},"contributors":[{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},{"name":"Vitaly Puzrin","email":"vitaly@rcdesign.ru","url":"https://github.com/puzrin"},{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/nodeca/js-yaml.git"},"files":["index.js","lib/","bin/","dist/"],"bin":{"js-yaml":"bin/js-yaml.js"},"dependencies":{"argparse":"^1.0.7","esprima":"^3.1.1"},"devDependencies":{"ansi":"*","benchmark":"*","browserify":"^13.0.0","codemirror":"^5.13.4","eslint":"^3.10.0","istanbul":"*","mocha":"*","uglify-js":"^2.6.1"},"scripts":{"test":"make test"},"gitHead":"dddcb5f15fa77a8f9a4d50ccbeb969297e980aa4","bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"_id":"js-yaml@3.8.0","_shasum":"f63620d2ee6763dcf95078bf7bdbaa01d8db4e73","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.4","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"dist":{"shasum":"f63620d2ee6763dcf95078bf7bdbaa01d8db4e73","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-3.8.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/js-yaml-3.8.0.tgz_1486427493008_0.31876423419453204"},"directories":{}},"3.8.1":{"name":"js-yaml","version":"3.8.1","description":"YAML 1.2 parser and serializer","keywords":["yaml","parser","serializer","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Vladimir Zapparov","email":"dervus.grim@gmail.com"},"contributors":[{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},{"name":"Vitaly Puzrin","email":"vitaly@rcdesign.ru","url":"https://github.com/puzrin"},{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/nodeca/js-yaml.git"},"files":["index.js","lib/","bin/","dist/"],"bin":{"js-yaml":"bin/js-yaml.js"},"dependencies":{"argparse":"^1.0.7","esprima":"^3.1.1"},"devDependencies":{"ansi":"*","benchmark":"*","browserify":"^13.0.0","codemirror":"^5.13.4","eslint":"^3.10.0","istanbul":"*","mocha":"*","uglify-js":"^2.6.1"},"scripts":{"test":"make test"},"gitHead":"9c1894e2c4e2a14efaa0ba4afe71804bebfb77d6","bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"_id":"js-yaml@3.8.1","_shasum":"782ba50200be7b9e5a8537001b7804db3ad02628","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.4","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"dist":{"shasum":"782ba50200be7b9e5a8537001b7804db3ad02628","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-3.8.1.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/js-yaml-3.8.1.tgz_1486427973137_0.02093760436400771"},"directories":{}},"3.8.2":{"name":"js-yaml","version":"3.8.2","description":"YAML 1.2 parser and serializer","keywords":["yaml","parser","serializer","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Vladimir Zapparov","email":"dervus.grim@gmail.com"},"contributors":[{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},{"name":"Vitaly Puzrin","email":"vitaly@rcdesign.ru","url":"https://github.com/puzrin"},{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/nodeca/js-yaml.git"},"files":["index.js","lib/","bin/","dist/"],"bin":{"js-yaml":"bin/js-yaml.js"},"dependencies":{"argparse":"^1.0.7","esprima":"^3.1.1"},"devDependencies":{"ansi":"*","benchmark":"*","browserify":"^13.0.0","codemirror":"^5.13.4","eslint":"^3.10.0","istanbul":"*","mocha":"*","uglify-js":"^2.6.1"},"scripts":{"test":"make test"},"gitHead":"7dd7254139804a0cd15683fd9e61ad949bd5ce14","bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"_id":"js-yaml@3.8.2","_shasum":"02d3e2c0f6beab20248d412c352203827d786721","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.4","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"dist":{"shasum":"02d3e2c0f6beab20248d412c352203827d786721","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-3.8.2.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/js-yaml-3.8.2.tgz_1488473380123_0.05922025511972606"},"directories":{}},"3.8.3":{"name":"js-yaml","version":"3.8.3","description":"YAML 1.2 parser and serializer","keywords":["yaml","parser","serializer","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Vladimir Zapparov","email":"dervus.grim@gmail.com"},"contributors":[{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},{"name":"Vitaly Puzrin","email":"vitaly@rcdesign.ru","url":"https://github.com/puzrin"},{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/nodeca/js-yaml.git"},"files":["index.js","lib/","bin/","dist/"],"bin":{"js-yaml":"bin/js-yaml.js"},"dependencies":{"argparse":"^1.0.7","esprima":"^3.1.1"},"devDependencies":{"ansi":"*","benchmark":"*","browserify":"^13.0.0","codemirror":"^5.13.4","eslint":"^3.10.0","istanbul":"*","mocha":"*","uglify-js":"^2.6.1"},"scripts":{"test":"make test"},"gitHead":"db20313c9c432766d0606aa1d9659b4f96b9bf5b","bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"_id":"js-yaml@3.8.3","_shasum":"33a05ec481c850c8875929166fe1beb61c728766","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.8.0","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"dist":{"shasum":"33a05ec481c850c8875929166fe1beb61c728766","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-3.8.3.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/js-yaml-3.8.3.tgz_1491396461695_0.8139190883375704"},"directories":{}},"3.8.4":{"name":"js-yaml","version":"3.8.4","description":"YAML 1.2 parser and serializer","keywords":["yaml","parser","serializer","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Vladimir Zapparov","email":"dervus.grim@gmail.com"},"contributors":[{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},{"name":"Vitaly Puzrin","email":"vitaly@rcdesign.ru","url":"https://github.com/puzrin"},{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/nodeca/js-yaml.git"},"files":["index.js","lib/","bin/","dist/"],"bin":{"js-yaml":"bin/js-yaml.js"},"dependencies":{"argparse":"^1.0.7","esprima":"^3.1.1"},"devDependencies":{"ansi":"^0.3.1","benchmark":"^2.1.4","browserify":"^14.3.0","codemirror":"^5.13.4","eslint":"^3.10.0","istanbul":"^0.4.5","mocha":"^3.3.0","uglify-js":"^3.0.1"},"scripts":{"test":"make test"},"gitHead":"3de650d4d6fd9e24052ffa7ae53439e36eb70cbb","bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"_id":"js-yaml@3.8.4","_shasum":"520b4564f86573ba96662af85a8cafa7b4b5a6f6","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.8.0","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"dist":{"shasum":"520b4564f86573ba96662af85a8cafa7b4b5a6f6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-3.8.4.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/js-yaml-3.8.4.tgz_1494256586834_0.47078769421204925"},"directories":{}},"3.9.0":{"name":"js-yaml","version":"3.9.0","description":"YAML 1.2 parser and serializer","keywords":["yaml","parser","serializer","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Vladimir Zapparov","email":"dervus.grim@gmail.com"},"contributors":[{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},{"name":"Vitaly Puzrin","email":"vitaly@rcdesign.ru","url":"https://github.com/puzrin"},{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/nodeca/js-yaml.git"},"files":["index.js","lib/","bin/","dist/"],"bin":{"js-yaml":"bin/js-yaml.js"},"dependencies":{"argparse":"^1.0.7","esprima":"^4.0.0"},"devDependencies":{"ansi":"^0.3.1","benchmark":"^2.1.4","browserify":"^14.3.0","codemirror":"^5.13.4","eslint":"^4.1.1","istanbul":"^0.4.5","mocha":"^3.3.0","uglify-js":"^3.0.1"},"scripts":{"test":"make test"},"gitHead":"d411eddbb7a340c89dd0557e277ce31463515c04","bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"_id":"js-yaml@3.9.0","_npmVersion":"5.0.3","_nodeVersion":"8.1.3","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"dist":{"integrity":"sha512-0LoUNELX4S+iofCT8f4uEHIiRBR+c2AINyC8qRWfC6QNruLtxVZRJaPcu/xwMgFIgDxF25tGHaDjvxzJCNE9yw==","shasum":"4ffbbf25c2ac963b8299dc74da7e3740de1c18ce","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-3.9.0.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/js-yaml-3.9.0.tgz_1499503855491_0.8773747310042381"},"directories":{}},"3.9.1":{"name":"js-yaml","version":"3.9.1","description":"YAML 1.2 parser and serializer","keywords":["yaml","parser","serializer","pyyaml"],"homepage":"https://github.com/nodeca/js-yaml","author":{"name":"Vladimir Zapparov","email":"dervus.grim@gmail.com"},"contributors":[{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},{"name":"Vitaly Puzrin","email":"vitaly@rcdesign.ru","url":"https://github.com/puzrin"},{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/nodeca/js-yaml.git"},"files":["index.js","lib/","bin/","dist/"],"bin":{"js-yaml":"bin/js-yaml.js"},"dependencies":{"argparse":"^1.0.7","esprima":"^4.0.0"},"devDependencies":{"ansi":"^0.3.1","benchmark":"^2.1.4","browserify":"^14.3.0","codemirror":"^5.13.4","eslint":"^4.1.1","istanbul":"^0.4.5","mocha":"^3.3.0","uglify-js":"^3.0.1"},"scripts":{"test":"make test"},"gitHead":"82945a758526197ba023ed299d5b537823231002","bugs":{"url":"https://github.com/nodeca/js-yaml/issues"},"_id":"js-yaml@3.9.1","_npmVersion":"5.0.3","_nodeVersion":"8.1.4","_npmUser":{"name":"vitaly","email":"vitaly@rcdesign.ru"},"maintainers":[{"name":"vitaly","email":"vitaly@rcdesign.ru"}],"dist":{"integrity":"sha512-CbcG379L1e+mWBnLvHWWeLs8GyV/EMw862uLI3c+GxVyDHWZcjZinwuBd3iW2pgxgIlksW/1vNJa4to+RvDOww==","shasum":"08775cebdfdd359209f0d2acd383c8f86a6904a0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/js-yaml/-/js-yaml-3.9.1.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/js-yaml-3.9.1.tgz_1501400037979_0.9373135957866907"},"directories":{}}},"name":"js-yaml","contributors":[{"name":"Aleksey V Zapparov","email":"ixti@member.fsf.org","url":"http://www.ixti.net/"},{"name":"Vitaly Puzrin","email":"vitaly@rcdesign.ru","url":"https://github.com/puzrin"},{"name":"Martin Grenfell","email":"martin.grenfell@gmail.com","url":"http://got-ravings.blogspot.com"}],"time":{"modified":"2017-08-01T15:10:05.685Z","created":"2011-11-02T01:56:02.870Z","0.2.0":"2011-11-02T01:56:04.988Z","0.2.1":"2011-11-02T15:44:59.476Z","0.2.2":"2011-11-06T19:36:46.376Z","0.3.0":"2011-11-09T11:50:52.572Z","0.3.1":"2011-11-18T04:40:26.297Z","0.3.2":"2011-12-16T03:11:23.796Z","0.3.3":"2011-12-20T00:33:34.021Z","0.3.4":"2011-12-24T12:11:57.618Z","0.3.5":"2012-01-10T12:03:28.241Z","0.3.6":"2012-02-22T04:58:30.034Z","0.3.7":"2012-02-28T16:06:34.722Z","1.0.0":"2012-07-01T15:02:00.004Z","1.0.1":"2012-07-07T09:42:56.820Z","1.0.2":"2012-08-02T08:44:43.484Z","1.0.3":"2012-11-05T01:57:23.010Z","2.0.0":"2013-02-09T07:34:25.954Z","2.0.1":"2013-02-09T15:41:35.905Z","2.0.2":"2013-02-15T11:22:57.482Z","2.0.3":"2013-02-26T03:14:59.871Z","2.0.4":"2013-04-08T11:45:36.838Z","2.0.5":"2013-04-26T14:40:59.621Z","2.1.0":"2013-06-05T14:44:09.636Z","2.1.1":"2013-10-01T20:08:34.063Z","2.1.2":"2013-10-06T21:35:32.358Z","2.1.3":"2013-10-15T21:30:17.137Z","3.0.0":"2013-12-16T08:35:24.383Z","3.0.1":"2013-12-22T18:44:21.114Z","3.0.2":"2014-02-27T03:20:28.502Z","3.1.0":"2014-07-07T09:31:00.559Z","3.2.0":"2014-08-24T07:50:32.612Z","3.2.1":"2014-08-24T08:05:01.740Z","3.2.2":"2014-09-06T20:33:29.831Z","3.2.3":"2014-11-08T05:12:03.094Z","3.2.4":"2014-12-19T13:13:57.457Z","3.2.5":"2014-12-27T22:20:55.637Z","3.2.6":"2015-02-07T03:02:33.322Z","3.2.7":"2015-02-19T10:09:14.968Z","3.3.0":"2015-04-26T05:56:35.340Z","3.3.1":"2015-05-13T13:37:54.734Z","3.4.0":"2015-08-22T22:35:19.729Z","3.4.1":"2015-09-04T23:36:30.962Z","3.4.2":"2015-09-09T10:06:07.503Z","3.4.3":"2015-10-10T19:41:24.397Z","3.4.4":"2015-11-21T20:20:51.107Z","3.4.5":"2015-11-23T04:26:14.849Z","3.4.6":"2015-11-26T13:53:40.452Z","3.5.0":"2016-01-10T19:09:01.309Z","3.5.1":"2016-01-11T01:28:37.047Z","3.5.2":"2016-01-11T11:03:18.527Z","3.5.3":"2016-02-11T07:27:27.075Z","3.5.4":"2016-03-09T18:25:33.192Z","3.5.5":"2016-03-17T14:48:49.376Z","3.6.0":"2016-04-15T21:18:53.001Z","3.6.1":"2016-05-11T19:40:39.230Z","3.7.0":"2016-11-12T01:32:04.258Z","3.8.0":"2017-02-07T00:31:34.951Z","3.8.1":"2017-02-07T00:39:35.390Z","3.8.2":"2017-03-02T16:49:42.243Z","3.8.3":"2017-04-05T12:47:42.580Z","3.8.4":"2017-05-08T15:16:29.219Z","3.9.0":"2017-07-08T08:50:56.677Z","3.9.1":"2017-07-30T07:33:59.643Z"},"readmeFilename":"README.md","homepage":"https://github.com/nodeca/js-yaml"}