{"_id":"yaml-ast-parser","_rev":"43-0b6fe55b4836dc69161e3d252125b464","name":"yaml-ast-parser","time":{"modified":"2022-06-29T06:47:16.063Z","created":"2016-03-21T02:39:24.582Z","0.0.6":"2016-03-21T02:39:24.582Z","0.0.8":"2016-03-21T23:03:10.435Z","0.0.9":"2016-03-21T23:18:04.503Z","0.0.10":"2016-03-21T23:29:27.876Z","0.0.11":"2016-03-21T23:32:03.508Z","0.0.12":"2016-03-21T23:32:47.774Z","0.0.13":"2016-03-21T23:33:13.344Z","0.0.14":"2016-03-21T23:37:03.015Z","0.0.15":"2016-03-21T23:41:01.409Z","0.0.16":"2016-03-21T23:43:44.379Z","0.0.18":"2016-03-21T23:55:39.445Z","0.0.19":"2016-03-21T23:57:18.316Z","0.0.20":"2016-04-04T23:53:03.881Z","0.0.21":"2016-04-06T02:36:08.216Z","0.0.22":"2016-04-07T12:43:08.864Z","0.0.23":"2016-04-13T03:07:36.205Z","0.0.24":"2016-04-18T19:30:23.438Z","0.0.25":"2016-04-20T05:46:32.092Z","0.0.26":"2016-04-21T10:02:34.787Z","0.0.27":"2016-06-06T22:59:24.163Z","0.0.28":"2016-06-14T05:17:29.828Z","0.0.29":"2016-09-02T01:36:44.142Z","0.0.30":"2016-10-11T02:52:03.391Z","0.0.31":"2016-12-13T22:05:48.376Z","0.0.32":"2017-05-03T01:41:24.055Z","0.0.33":"2017-05-29T20:19:04.369Z","0.0.34":"2017-07-13T19:28:00.636Z","0.0.35":"2017-09-25T18:56:26.425Z","0.0.36":"2017-10-04T06:26:30.180Z","0.0.37":"2017-10-18T20:24:23.444Z","0.0.38":"2017-10-24T03:29:12.205Z","0.0.39":"2017-11-14T16:47:33.739Z","0.0.40":"2017-12-04T08:58:02.737Z","0.0.41":"2018-08-28T11:53:49.443Z","0.0.42":"2018-11-15T13:51:22.229Z","0.0.43":"2018-11-15T13:53:21.202Z"},"maintainers":[{"name":"denis.denisenko","email":"denis@onpositive.com"},{"name":"petrochenko-pavel-a","email":"petrochenko.pavel.a@gmail.com"}],"dist-tags":{"latest":"0.0.43"},"description":"[![Build Status](https://travis-ci.org/mulesoft-labs/yaml-ast-parser.svg?branch=master)](https://travis-ci.org/mulesoft-labs/yaml-ast-parser)","readme":"# yaml-ast-parser\n\n[![Build Status](https://travis-ci.org/mulesoft-labs/yaml-ast-parser.svg?branch=master)](https://travis-ci.org/mulesoft-labs/yaml-ast-parser)\n\nThis is a fork of JS-YAML which supports parsing of YAML into AST.\n\nIn additional to parsing YAML to AST, it has following features:\n\n* restoration after the errors and reporting errors as a part of AST nodes.\n* built-in support for `!include` tag used in RAML\n\n## Usage\nThe type information below is relevant when using TypeScript, if using from JavaScript only the field/method information is relevant.\n\n`load` method can be used to load the tree and returns a `YAMLNode`.\n\n### YAMLNode\n`YAMLNode` class is an ancestor for all node kinds.\nIt's `kind` field determine node kind, one of `Kind` enum:\n  * `SCALAR`, `MAPPING`, `MAP`, `SEQ`, `ANCHOR_REF` or `INCLUDE_REF`.\n \nAfter node kind is determined, it can be cast to one of the `YAMLNode` descendants types:\n * `YAMLScalar`, `YAMLMapping`, `YamlMap`, `YAMLSequence` or `YAMLAnchorReference`.\n\n| class | important members |\n|-------|-------------------|\n| `YAMLNode` | `startPosition` and `endPosition` provide node range.|\n| `YAMLScalar` | `string` `value` field |\n| `YAMLMapping` |`YAMLScalar` `key` and `YAMLNode` `value` fields | \n| `YAMLSequence` | `YAMLNode[]` `items` field|\n| `YamlMap` | `YAMLMapping[]` `mappings` field|\n| `YAMLAnchorReference` | `string` `referencesAnchor` and `YAMLNode` `value`|\n\n### YAMLScalar\n\nScalars are [one of the three main node types defined by YAML](http://www.yaml.org/spec/1.2/spec.html#scalar//) and are effectively leaf nodes.\n\nThere are many factors that can influence the type of datum represent in scalar node (context, schema, tag, etc.).\n\nTo help inspection of a `YAMLScalar` to determine its datatype when a document uses the [Core Schema](http://www.yaml.org/spec/1.2/spec.html#id2804923), you can pass the `YAMLScalar` to the `determineScalarType` function.  It will return an enum value indicating `null`, `bool`, `int`, `float`, or `string`.\n\nOnce you know the type, there are also some helper functions to help read the value by passing them the string, `value`: `parseYamlBoolean`, `parseYamlFloat`, and `parseYamlInteger`.","versions":{"0.0.18":{"name":"yaml-ast-parser","version":"0.0.18","private":false,"main":"dist/index.js","scripts":{"test-cov":" ./node_modules/.bin/istanbul cover _mocha tests/*Tests.js","typings-for-idea":"node ./tools/createDeclarations","build":"rm -rf dist/ && ./node_modules/typescript/bin/tsc ","build-browser":"webpack --entry ./src/browser.js  --output-path ./browser --output-filename bundle.js --verbose --profile --display-modules "},"dependencies":{"underscore":"^1.8.3"},"typings":"dist/index.d.ts","repository":{"type":"git","url":"https://github.com/mulesoft-labs/yaml-ast-parser.git"},"keywords":["raml","ast","yaml"],"author":{"name":"Pavel Petrochenko","email":"petrochenko.pavel.a@gmail.com","url":"ru.linkedin.com/in/petrochenkopavel"},"files":["dist/","typings.json"],"homepage":"https://github.com/mulesoft-labs/yaml-ast-parser","license":"MIT","bugs":{"url":"https://github.com/mulesoft-labs/yaml-ast-parser/issues"},"devDependencies":{"chai":"^2.2.0","chai-as-promised":"^5.2.0","gulp":"^3.8.11","gulp-typedoc":"^1.2.1","istanbul":"^0.4.2","json-loader":"^0.5.1","mocha":"^2.2.1","typedoc":"^0.3.12","typescript":"1.8.7","typings":"^0.5.1","webpack":"^1.3.7"},"gitHead":"f7fd3dce3ad8fe3bce51fc41fcd68f1d58f4a7c2","description":"This is a fork of JS-YAML which supports parsing of YAML into AST.","_id":"yaml-ast-parser@0.0.18","_shasum":"ba654243ced32ff1ed10535bddb831e98448bace","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"petrochenko-pavel-a","email":"petrochenko.pavel.a@gmail.com"},"dist":{"shasum":"ba654243ced32ff1ed10535bddb831e98448bace","tarball":"https://registry.npmjs.org/yaml-ast-parser/-/yaml-ast-parser-0.0.18.tgz","integrity":"sha512-KYpqhYkcJYXZuBOvEWYxYPD3aaVwwpJJQ6USWfKVsFuYMw7pdqs4VMAfgjJRSpm6n+ty5Nxe9fv6uacORTeFpQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD1T2w6izhpcK5xDYjsLsorbF+94YSgIqUt0IsUK/wOXgIhALxZlRGgKXBuY5egYII7QtZzFpywDgUSFU3UMRSlbE+z"}]},"maintainers":[{"name":"petrochenko-pavel-a","email":"petrochenko.pavel.a@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/yaml-ast-parser-0.0.18.tgz_1458604536944_0.9678931755479425"},"directories":{}},"0.0.19":{"name":"yaml-ast-parser","version":"0.0.19","private":false,"main":"dist/index.js","scripts":{"test-cov":" ./node_modules/.bin/istanbul cover _mocha tests/*Tests.js","typings-for-idea":"node ./tools/createDeclarations","build":"rm -rf dist/ && ./node_modules/typescript/bin/tsc ","build-browser":"webpack --entry ./src/browser.js  --output-path ./browser --output-filename bundle.js --verbose --profile --display-modules "},"dependencies":{"underscore":"^1.8.3"},"typings":"dist/index.d.ts","repository":{"type":"git","url":"https://github.com/mulesoft-labs/yaml-ast-parser.git"},"keywords":["raml","ast","yaml"],"author":{"name":"Pavel Petrochenko","email":"petrochenko.pavel.a@gmail.com","url":"ru.linkedin.com/in/petrochenkopavel"},"files":["dist/","typings/","typings.json"],"homepage":"https://github.com/mulesoft-labs/yaml-ast-parser","license":"MIT","bugs":{"url":"https://github.com/mulesoft-labs/yaml-ast-parser/issues"},"devDependencies":{"chai":"^2.2.0","chai-as-promised":"^5.2.0","gulp":"^3.8.11","gulp-typedoc":"^1.2.1","istanbul":"^0.4.2","json-loader":"^0.5.1","mocha":"^2.2.1","typedoc":"^0.3.12","typescript":"1.8.7","typings":"^0.5.1","webpack":"^1.3.7"},"gitHead":"f7fd3dce3ad8fe3bce51fc41fcd68f1d58f4a7c2","description":"This is a fork of JS-YAML which supports parsing of YAML into AST.","_id":"yaml-ast-parser@0.0.19","_shasum":"90e93bfdc85f6cef860f66ffcaba19765aa3ef5f","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"petrochenko-pavel-a","email":"petrochenko.pavel.a@gmail.com"},"dist":{"shasum":"90e93bfdc85f6cef860f66ffcaba19765aa3ef5f","tarball":"https://registry.npmjs.org/yaml-ast-parser/-/yaml-ast-parser-0.0.19.tgz","integrity":"sha512-O4YUygcImlh5aBe9rMjxVQfbYBajx4GdP3uiyxkydAR11+pSlKeUvYnoj8b7o6SzNE4SNHIvszE6Glg6DYk54g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDYNyLCZw1QWNRL55XwU8u0p+QQznEuFl6viSRyGG6wRgIgSG2YzATFlYWFGL2EJDEpKcmqiyk97gi/P/2pByI6bCo="}]},"maintainers":[{"name":"petrochenko-pavel-a","email":"petrochenko.pavel.a@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/yaml-ast-parser-0.0.19.tgz_1458604635914_0.4087085253559053"},"directories":{}},"0.0.20":{"name":"yaml-ast-parser","version":"0.0.20","private":false,"main":"dist/index.js","scripts":{"test-cov":" ./node_modules/.bin/istanbul cover _mocha tests/*Tests.js","typings-for-idea":"node ./tools/createDeclarations","build":"rm -rf dist/ && ./node_modules/typescript/bin/tsc ","build-browser":"webpack --entry ./src/browser.js  --output-path ./browser --output-filename bundle.js --verbose --profile --display-modules "},"dependencies":{"underscore":"^1.8.3"},"typings":"dist/index.d.ts","repository":{"type":"git","url":"git+https://github.com/mulesoft-labs/yaml-ast-parser.git"},"keywords":["raml","ast","yaml"],"author":{"name":"Pavel Petrochenko","email":"petrochenko.pavel.a@gmail.com","url":"ru.linkedin.com/in/petrochenkopavel"},"files":["dist/","typings/","typings.json"],"homepage":"https://github.com/mulesoft-labs/yaml-ast-parser","license":"MIT","bugs":{"url":"https://github.com/mulesoft-labs/yaml-ast-parser/issues"},"devDependencies":{"chai":"^2.2.0","chai-as-promised":"^5.2.0","gulp":"^3.8.11","gulp-typedoc":"^1.2.1","istanbul":"^0.4.2","json-loader":"^0.5.1","mocha":"^2.2.1","typedoc":"^0.3.12","typescript":"1.8.7","typings":"^0.5.1","webpack":"^1.3.7"},"gitHead":"71dca42bb4b65e2fa4bcd1b86b89b95c81dbb864","description":"This is a fork of JS-YAML which supports parsing of YAML into AST.","_id":"yaml-ast-parser@0.0.20","_shasum":"7be98e87ca0db1bd3ce1024285f5c37f511c320d","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"denis.denisenko","email":"denis@onpositive.com"},"dist":{"shasum":"7be98e87ca0db1bd3ce1024285f5c37f511c320d","tarball":"https://registry.npmjs.org/yaml-ast-parser/-/yaml-ast-parser-0.0.20.tgz","integrity":"sha512-W+5Q1ed4DLmOFV9roeasAttM/MTkB+7AbXsqW6kJnMz4Tqy1l9rLgMr7U220UEF78hrX7lgxahvIerYw/finqg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCr+WMFpfyVpQ8TIcXsNkaoxnnQa/2n5+llGdd2WogzVQIgAa50hw2/zY6NWuhw2mq+WR+gsRuUs2Tz0OpNms0xlic="}]},"maintainers":[{"name":"denis.denisenko","email":"denis@onpositive.com"},{"name":"petrochenko-pavel-a","email":"petrochenko.pavel.a@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/yaml-ast-parser-0.0.20.tgz_1459813981395_0.3460197779349983"},"directories":{}},"0.0.21":{"name":"yaml-ast-parser","version":"0.0.21","private":false,"main":"dist/index.js","scripts":{"test-cov":" ./node_modules/.bin/istanbul cover _mocha tests/*Tests.js","typings-for-idea":"node ./tools/createDeclarations","build":"rm -rf dist/ && ./node_modules/typescript/bin/tsc ","build-browser":"webpack --entry ./src/browser.js  --output-path ./browser --output-filename bundle.js --verbose --profile --display-modules "},"dependencies":{"underscore":"^1.8.3"},"typings":"dist/index.d.ts","repository":{"type":"git","url":"git+https://github.com/mulesoft/yaml-ast-parser.git"},"keywords":["raml","ast","yaml"],"homepage":"https://github.com/mulesoft/yaml-ast-parser","license":"Apache-2.0","bugs":{"url":"https://github.com/mulesoft/yaml-ast-parser/issues"},"devDependencies":{"chai":"^2.2.0","chai-as-promised":"^5.2.0","gulp":"^3.8.11","gulp-typedoc":"^1.2.1","istanbul":"^0.4.2","json-loader":"^0.5.1","mocha":"^2.2.1","typedoc":"^0.3.12","typescript":"1.8.7","typings":"^0.5.1","webpack":"^1.3.7"},"gitHead":"4adaa8fa04341e26e24a4a7dc8cb00586f73649e","description":"This is a fork of JS-YAML which supports parsing of YAML into AST.","_id":"yaml-ast-parser@0.0.21","_shasum":"1e3241635e1ffbf2495eff89f84503e5ef2c23e6","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"denis.denisenko","email":"denis@onpositive.com"},"dist":{"shasum":"1e3241635e1ffbf2495eff89f84503e5ef2c23e6","tarball":"https://registry.npmjs.org/yaml-ast-parser/-/yaml-ast-parser-0.0.21.tgz","integrity":"sha512-nM42TA6nvM5leFMlOK8JTjDF/WU/JrdflPF6QUfgz1HajdeeNLmcs0QT4+3RIPZBjYYnniuIZJMvgD5hcVYPMA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDvE7DaOS+yGsn1tCpF04SJkHvR5hizD7e+3xNbc+2C2QIgRTTjFbQGmBMhzeR7rPUtGSO4H3V0pVvhzst/1YpfLuE="}]},"maintainers":[{"name":"denis.denisenko","email":"denis@onpositive.com"},{"name":"petrochenko-pavel-a","email":"petrochenko.pavel.a@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/yaml-ast-parser-0.0.21.tgz_1459910165721_0.39430369483307004"},"directories":{}},"0.0.22":{"name":"yaml-ast-parser","version":"0.0.22","main":"dist/index.js","scripts":{"build":"rm -rf dist/ && ./node_modules/typescript/bin/tsc"},"dependencies":{"underscore":"^1.8.3"},"typings":"dist/index.d.ts","repository":{"type":"git","url":"git+https://github.com/mulesoft-labs/yaml-ast-parser.git"},"keywords":["raml","ast","yaml"],"homepage":"https://github.com/mulesoft-labs/yaml-ast-parser","license":"Apache-2.0","bugs":{"url":"https://github.com/mulesoft-labs/yaml-ast-parser/issues"},"devDependencies":{"typescript":"1.8.7","typings":"^0.5.1"},"gitHead":"8a24a068a508842a32058bd64d48ede5488b72dd","description":"This is a fork of JS-YAML which supports parsing of YAML into AST.","_id":"yaml-ast-parser@0.0.22","_shasum":"edf2b1a8da6bd8c694db11742bb3302052436310","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"denis.denisenko","email":"denis@onpositive.com"},"dist":{"shasum":"edf2b1a8da6bd8c694db11742bb3302052436310","tarball":"https://registry.npmjs.org/yaml-ast-parser/-/yaml-ast-parser-0.0.22.tgz","integrity":"sha512-qnMLFBA7wiK84zk2zlUuco08wm/IvDpQA1v3H/f8S1r3nbJuDaRQ/QApO/8ujlhSyi+nukZ5YwVosiz11xbJ3g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDJVA04bc53GQu2xS1z/rORRRFNm4KISA7ypit2a4MaWAiEAv1zQz1gO/GptFlaWqmlXENbyv6wAal/CjRHxvy8uzzQ="}]},"maintainers":[{"name":"denis.denisenko","email":"denis@onpositive.com"},{"name":"petrochenko-pavel-a","email":"petrochenko.pavel.a@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/yaml-ast-parser-0.0.22.tgz_1460032985152_0.4852191866375506"},"directories":{}},"0.0.23":{"name":"yaml-ast-parser","version":"0.0.23","main":"dist/index.js","scripts":{"build":"rm -rf dist/ && ./node_modules/typescript/bin/tsc","pullall":"dev-env-installer pullall","buildall":"dev-env-installer buildall","testall":"dev-env-installer testall","devInstall":"dev-env-installer install"},"dependencies":{"underscore":"^1.8.3"},"typings":"dist/index.d.ts","repository":{"type":"git","url":"git+https://github.com/mulesoft-labs/yaml-ast-parser.git"},"keywords":["raml","ast","yaml"],"homepage":"https://github.com/mulesoft-labs/yaml-ast-parser","license":"Apache-2.0","bugs":{"url":"https://github.com/mulesoft-labs/yaml-ast-parser/issues"},"devDependencies":{"typescript":"1.8.7","typings":"^0.5.1","dev-env-installer":"^0.0.2"},"gitHead":"b43a83bb1ca26debdff8e81733929357734b095f","description":"This is a fork of JS-YAML which supports parsing of YAML into AST.","_id":"yaml-ast-parser@0.0.23","_shasum":"ab6d42061be47d5e2c83ea5569f7c77541201f3c","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"denis.denisenko","email":"denis@onpositive.com"},"dist":{"shasum":"ab6d42061be47d5e2c83ea5569f7c77541201f3c","tarball":"https://registry.npmjs.org/yaml-ast-parser/-/yaml-ast-parser-0.0.23.tgz","integrity":"sha512-KUpnu5FSHzUr2C+pdKoeXAmTVkfx0zKJY61gOMXbPgleyyVTyPJqjc9v9BSEKcZRIt+rW2Kf76Vj0t2K2i5KUA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCd4DgAYUv+iNtetH/zBr4YvedMwBh1R13H8znozIJ3YAIhAK/43mf1NaglaT+4K2//zAagchQfNZ43WxVSNC99gZO5"}]},"maintainers":[{"name":"denis.denisenko","email":"denis@onpositive.com"},{"name":"petrochenko-pavel-a","email":"petrochenko.pavel.a@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/yaml-ast-parser-0.0.23.tgz_1460516853733_0.6770937452092767"},"directories":{}},"0.0.24":{"name":"yaml-ast-parser","version":"0.0.24","main":"dist/index.js","scripts":{"build":"rimraf dist && tsc","pullall":"dev-env-installer pullall","buildall":"dev-env-installer buildall","testall":"dev-env-installer testall","devInstall":"dev-env-installer install"},"dependencies":{"underscore":"^1.8.3"},"typings":"dist/index.d.ts","repository":{"type":"git","url":"git+https://github.com/mulesoft-labs/yaml-ast-parser.git"},"keywords":["raml","ast","yaml"],"homepage":"https://github.com/mulesoft-labs/yaml-ast-parser","license":"Apache-2.0","bugs":{"url":"https://github.com/mulesoft-labs/yaml-ast-parser/issues"},"devDependencies":{"typescript":"1.8.7","typings":"^0.5.1","dev-env-installer":"^0.0.2","rimraf":"*"},"gitHead":"d8be7ea1e4573781a47d16bc2aef6531305e8e49","description":"[![Build Status](https://travis-ci.org/mulesoft-labs/yaml-ast-parser.svg?branch=master)](https://travis-ci.org/mulesoft-labs/yaml-ast-parser)","_id":"yaml-ast-parser@0.0.24","_shasum":"af7533d3b8c80c390ef82ecba497c05f29b63d2e","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"denis.denisenko","email":"denis@onpositive.com"},"dist":{"shasum":"af7533d3b8c80c390ef82ecba497c05f29b63d2e","tarball":"https://registry.npmjs.org/yaml-ast-parser/-/yaml-ast-parser-0.0.24.tgz","integrity":"sha512-GOCjKFRwf/j7oGFWulk+aFwkaQIRqXCwo11ogdMdMOUkwnv5mxs7Ft84pgw+lBw86S6AmMMVGXfpchl37soe7Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDSdkHA1b2wrvAH6Ys/BDzPeTyDZQ+h2+HH8Lu2habWiwIgNVUABqp31RTAXR6PY4+q2lLj4DQA4p9NBcH7F4Ew6/s="}]},"maintainers":[{"name":"denis.denisenko","email":"denis@onpositive.com"},{"name":"petrochenko-pavel-a","email":"petrochenko.pavel.a@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/yaml-ast-parser-0.0.24.tgz_1461007822185_0.9151745357085019"},"directories":{}},"0.0.25":{"name":"yaml-ast-parser","version":"0.0.25","main":"dist/index.js","scripts":{"build":"rimraf dist && tsc","pullall":"dev-env-installer pullall","buildall":"dev-env-installer buildall","testall":"dev-env-installer testall","devInstall":"dev-env-installer install"},"dependencies":{"underscore":"^1.8.3"},"typings":"dist/index.d.ts","repository":{"type":"git","url":"git+https://github.com/mulesoft-labs/yaml-ast-parser.git"},"keywords":["raml","ast","yaml"],"homepage":"https://github.com/mulesoft-labs/yaml-ast-parser","license":"Apache-2.0","bugs":{"url":"https://github.com/mulesoft-labs/yaml-ast-parser/issues"},"devDependencies":{"typescript":"1.8.7","typings":"^0.5.1","dev-env-installer":"^0.0.2","rimraf":"*"},"gitHead":"84ed3658908cb6aa7fd77e307733f68814dbf9e2","description":"[![Build Status](https://travis-ci.org/mulesoft-labs/yaml-ast-parser.svg?branch=master)](https://travis-ci.org/mulesoft-labs/yaml-ast-parser)","_id":"yaml-ast-parser@0.0.25","_shasum":"a342d89f3b54013a61c1dedc41200faa32173180","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"denis.denisenko","email":"denis@onpositive.com"},"dist":{"shasum":"a342d89f3b54013a61c1dedc41200faa32173180","tarball":"https://registry.npmjs.org/yaml-ast-parser/-/yaml-ast-parser-0.0.25.tgz","integrity":"sha512-YlDr/eHdAQP6oLqMmbU63n/20y5vkbjnCjarkKNlE9aTabB2t8h2ZvbToRS6eGNE5dAA8RMJuJJNz5q+8lyyWQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDoSl/AQHGJpW8A+VnzZg+BjQ5EDVS43T/aRUyR69KeHAiAOPHO3rEzyPSmjf/UxlgnbUVM9Q4mONCYtgfUXL9sMAQ=="}]},"maintainers":[{"name":"denis.denisenko","email":"denis@onpositive.com"},{"name":"petrochenko-pavel-a","email":"petrochenko.pavel.a@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/yaml-ast-parser-0.0.25.tgz_1461131191126_0.47046369686722755"},"directories":{}},"0.0.26":{"name":"yaml-ast-parser","version":"0.0.26","main":"dist/index.js","scripts":{"build":"rimraf dist && tsc","pullall":"dev-env-installer pullall","buildall":"dev-env-installer buildall","testall":"dev-env-installer testall","devInstall":"dev-env-installer install"},"dependencies":{"underscore":"^1.8.3"},"typings":"dist/index.d.ts","repository":{"type":"git","url":"git+https://github.com/mulesoft-labs/yaml-ast-parser.git"},"keywords":["raml","ast","yaml"],"homepage":"https://github.com/mulesoft-labs/yaml-ast-parser","license":"Apache-2.0","bugs":{"url":"https://github.com/mulesoft-labs/yaml-ast-parser/issues"},"devDependencies":{"typescript":"1.8.7","typings":"^0.5.1","dev-env-installer":"^0.0.2","rimraf":"*"},"gitHead":"e84faa726e99af24e055719aeaf2a40d6c95c851","description":"[![Build Status](https://travis-ci.org/mulesoft-labs/yaml-ast-parser.svg?branch=master)](https://travis-ci.org/mulesoft-labs/yaml-ast-parser)","_id":"yaml-ast-parser@0.0.26","_shasum":"bb9bc67a83cb7e4b330145727462bfc32c5d3d24","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"denis.denisenko","email":"denis@onpositive.com"},"dist":{"shasum":"bb9bc67a83cb7e4b330145727462bfc32c5d3d24","tarball":"https://registry.npmjs.org/yaml-ast-parser/-/yaml-ast-parser-0.0.26.tgz","integrity":"sha512-2bnTH7hiqW7Kx1IyZlarkk0wCExiMpHnYcoBjMuqSgGFzTgGSImq/Ej3GCTvtA0EEifF7sBlHrJWyKTbGiVCEQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDUP8ZfqYUy35GPMyfruj6yXVN669qAFWALyDNtqNuTxwIgY6Hri5cHl44muB/Z3cFqL9eK/EpYuAkRhOTUHbL7GWU="}]},"maintainers":[{"name":"denis.denisenko","email":"denis@onpositive.com"},{"name":"petrochenko-pavel-a","email":"petrochenko.pavel.a@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/yaml-ast-parser-0.0.26.tgz_1461232952280_0.494864254957065"},"directories":{}},"0.0.27":{"name":"yaml-ast-parser","version":"0.0.27","main":"dist/index.js","scripts":{"build":"rimraf dist && tsc","pullall":"dev-env-installer pullall","buildall":"dev-env-installer buildall","testall":"dev-env-installer testall","devInstall":"dev-env-installer install"},"dependencies":{"underscore":"^1.8.3"},"typings":"dist/index.d.ts","repository":{"type":"git","url":"git+https://github.com/mulesoft-labs/yaml-ast-parser.git"},"keywords":["raml","ast","yaml"],"homepage":"https://github.com/mulesoft-labs/yaml-ast-parser","license":"Apache-2.0","bugs":{"url":"https://github.com/mulesoft-labs/yaml-ast-parser/issues"},"devDependencies":{"typescript":"1.8.7","typings":"^0.5.1","dev-env-installer":"0.0.5","rimraf":"*"},"gitHead":"c2d73c4df8e8060ff5b1f8a3f5d8dc67e9299e85","description":"[![Build Status](https://travis-ci.org/mulesoft-labs/yaml-ast-parser.svg?branch=master)](https://travis-ci.org/mulesoft-labs/yaml-ast-parser)","_id":"yaml-ast-parser@0.0.27","_shasum":"9eb86d78d05f5c1142a8dc7a078236300867fe62","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"denis.denisenko","email":"denis@onpositive.com"},"dist":{"shasum":"9eb86d78d05f5c1142a8dc7a078236300867fe62","tarball":"https://registry.npmjs.org/yaml-ast-parser/-/yaml-ast-parser-0.0.27.tgz","integrity":"sha512-2BXTmMYc1t9bkzJxDPhh++NofViXBgwLya3EpN1Ca7Rfz3Up6L5G7MfSXVqhPCCBo/fhYQlJoBu3xY7YtW2vjA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDcPCNYo7gsMrJ3HXxjOo1+W4KLFzPg49F34Fr3RYXYegIgLJ70bLs0tEvc5P4RHzpCTpweTdLkBa2s1760oM8Kxdc="}]},"maintainers":[{"name":"denis.denisenko","email":"denis@onpositive.com"},{"name":"petrochenko-pavel-a","email":"petrochenko.pavel.a@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/yaml-ast-parser-0.0.27.tgz_1465253962366_0.7121451245620847"},"directories":{}},"0.0.28":{"name":"yaml-ast-parser","version":"0.0.28","main":"dist/index.js","scripts":{"build":"rimraf dist && tsc","pullall":"dev-env-installer pullall","buildall":"dev-env-installer buildall","testall":"dev-env-installer testall","devInstall":"dev-env-installer install"},"dependencies":{"underscore":"^1.8.3"},"typings":"dist/index.d.ts","repository":{"type":"git","url":"git+https://github.com/mulesoft-labs/yaml-ast-parser.git"},"keywords":["raml","ast","yaml"],"homepage":"https://github.com/mulesoft-labs/yaml-ast-parser","license":"Apache-2.0","bugs":{"url":"https://github.com/mulesoft-labs/yaml-ast-parser/issues"},"devDependencies":{"typescript":"1.8.7","typings":"^0.5.1","dev-env-installer":"0.0.5","rimraf":"*"},"gitHead":"5534796115fd6fb5ce9300b2dea1a764453ab4c7","description":"[![Build Status](https://travis-ci.org/mulesoft-labs/yaml-ast-parser.svg?branch=master)](https://travis-ci.org/mulesoft-labs/yaml-ast-parser)","_id":"yaml-ast-parser@0.0.28","_shasum":"588a442189346f53439084c6d523286453643f7b","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"denis.denisenko","email":"denis@onpositive.com"},"dist":{"shasum":"588a442189346f53439084c6d523286453643f7b","tarball":"https://registry.npmjs.org/yaml-ast-parser/-/yaml-ast-parser-0.0.28.tgz","integrity":"sha512-Z1M0qRSmdMDlcGiH82KZfGriTRLK7H48upokvZLS+POcCB0whpGKGUn0BBwKcOd+/1OZuCy0aLnlPUR0msGYzA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCoOrcxkAGNzcbJP3QFbXAcRBF9zko7rpS5ivCuRFrPwgIgS2DvuP7V99FguDNXCdABWihL69+d/POpALam7/7Pr08="}]},"maintainers":[{"name":"denis.denisenko","email":"denis@onpositive.com"},{"name":"petrochenko-pavel-a","email":"petrochenko.pavel.a@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/yaml-ast-parser-0.0.28.tgz_1465881447236_0.001837184652686119"},"directories":{}},"0.0.29":{"name":"yaml-ast-parser","version":"0.0.29","main":"dist/index.js","scripts":{"build":"rimraf dist && tsc","pullall":"dev-env-installer pullall","buildall":"dev-env-installer buildall","testall":"dev-env-installer testall","devInstall":"dev-env-installer install"},"dependencies":{"underscore":"^1.8.3"},"typings":"dist/index.d.ts","repository":{"type":"git","url":"git+https://github.com/mulesoft-labs/yaml-ast-parser.git"},"keywords":["raml","ast","yaml"],"homepage":"https://github.com/mulesoft-labs/yaml-ast-parser","license":"Apache-2.0","bugs":{"url":"https://github.com/mulesoft-labs/yaml-ast-parser/issues"},"devDependencies":{"typescript":"1.8.7","typings":"^0.5.1","dev-env-installer":"0.0.5","rimraf":"*"},"gitHead":"78fae9457f3427e5eb3244053870b8ce5b715321","description":"[![Build Status](https://travis-ci.org/mulesoft-labs/yaml-ast-parser.svg?branch=master)](https://travis-ci.org/mulesoft-labs/yaml-ast-parser)","_id":"yaml-ast-parser@0.0.29","_shasum":"2943a0a6866ff18347a99d2e3c2b1ce0602904bd","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"denis.denisenko","email":"denis@onpositive.com"},"dist":{"shasum":"2943a0a6866ff18347a99d2e3c2b1ce0602904bd","tarball":"https://registry.npmjs.org/yaml-ast-parser/-/yaml-ast-parser-0.0.29.tgz","integrity":"sha512-mu08ZGslV5MtIk+Fd+UIDAlGWp3dYxhFkHO4rpNSCsMBmFZXzb4ACrS4s5OzP4bAfmoDUz5fJTaLPnC6YNppow==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCe1wPbXQjNCRvg6JqJR2hNWSkHauBWZVPXu0Iknaq+ewIhALu2Aqh1bXXHwrKcEK6LE/vNLb0RskIY+WaIRCkr23JP"}]},"maintainers":[{"name":"denis.denisenko","email":"denis@onpositive.com"},{"name":"petrochenko-pavel-a","email":"petrochenko.pavel.a@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/yaml-ast-parser-0.0.29.tgz_1472780202424_0.5590650669764727"},"directories":{}},"0.0.30":{"name":"yaml-ast-parser","version":"0.0.30","main":"dist/index.js","scripts":{"build":"rimraf dist && tsc","pullall":"dev-env-installer pullall","buildall":"dev-env-installer buildall","testall":"dev-env-installer testall","devInstall":"dev-env-installer install"},"dependencies":{},"typings":"dist/index.d.ts","repository":{"type":"git","url":"git+https://github.com/mulesoft-labs/yaml-ast-parser.git"},"keywords":["raml","ast","yaml"],"homepage":"https://github.com/mulesoft-labs/yaml-ast-parser","license":"Apache-2.0","bugs":{"url":"https://github.com/mulesoft-labs/yaml-ast-parser/issues"},"devDependencies":{"typescript":"1.8.7","typings":"^0.5.1","dev-env-installer":"0.0.5","rimraf":"*"},"gitHead":"920f0739f5b8ba86840115adb7b00078e0b67a7c","description":"[![Build Status](https://travis-ci.org/mulesoft-labs/yaml-ast-parser.svg?branch=master)](https://travis-ci.org/mulesoft-labs/yaml-ast-parser)","_id":"yaml-ast-parser@0.0.30","_shasum":"9579c5d0800a98dbd82644ea85d94e20ba5662bc","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"denis.denisenko","email":"denis@onpositive.com"},"dist":{"shasum":"9579c5d0800a98dbd82644ea85d94e20ba5662bc","tarball":"https://registry.npmjs.org/yaml-ast-parser/-/yaml-ast-parser-0.0.30.tgz","integrity":"sha512-tAwR7VG6pIO5+vGCVZNpnubdmcagFujG1NLbz8kVylnF0PTscf2KOFFzqsDiabDXF5Egh2AxCxlk4OlRUmoY5g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFrxZRYdXkDKST7MIKxNNvJey+Ih5o4NP8VBu23row3HAiEA6+YmEpWY9ygTpwybzVNFHotKBzTcbo3EtsHwTHm7vbQ="}]},"maintainers":[{"name":"denis.denisenko","email":"denis@onpositive.com"},{"name":"petrochenko-pavel-a","email":"petrochenko.pavel.a@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/yaml-ast-parser-0.0.30.tgz_1476154321352_0.394075297517702"},"directories":{}},"0.0.31":{"name":"yaml-ast-parser","version":"0.0.31","main":"dist/index.js","scripts":{"build":"rimraf dist && tsc","pullall":"dev-env-installer pullall","buildall":"dev-env-installer buildall","testall":"dev-env-installer testall","devInstall":"dev-env-installer install"},"dependencies":{},"typings":"dist/index.d.ts","repository":{"type":"git","url":"git+https://github.com/mulesoft-labs/yaml-ast-parser.git"},"keywords":["raml","ast","yaml"],"homepage":"https://github.com/mulesoft-labs/yaml-ast-parser","license":"Apache-2.0","bugs":{"url":"https://github.com/mulesoft-labs/yaml-ast-parser/issues"},"devDependencies":{"typescript":"1.8.7","typings":"^0.5.1","dev-env-installer":"0.0.5","rimraf":"*"},"gitHead":"551f8d36923049371508de5b700de42363896cfd","description":"[![Build Status](https://travis-ci.org/mulesoft-labs/yaml-ast-parser.svg?branch=master)](https://travis-ci.org/mulesoft-labs/yaml-ast-parser)","_id":"yaml-ast-parser@0.0.31","_shasum":"5404bd14f4d8e7997d9f9b276e22e601d7b2753d","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"denis.denisenko","email":"denis@onpositive.com"},"dist":{"shasum":"5404bd14f4d8e7997d9f9b276e22e601d7b2753d","tarball":"https://registry.npmjs.org/yaml-ast-parser/-/yaml-ast-parser-0.0.31.tgz","integrity":"sha512-kB0OmGXf5w2iY92Eu34nN9qQ4nkhJwtpQU1xBazgobfWc73geflHp3cj5JTykIBpp6zvjRXp74XeuE+SWQJrzA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAUFs6JB26Kk4CV3J9bWjhikSRKlJ+TYz/VwJmcF61OtAiEA3TosGSnJlG3BizRarGbxYGEtzXi6/8+hdQSsH8xQ3nc="}]},"maintainers":[{"name":"denis.denisenko","email":"denis@onpositive.com"},{"name":"petrochenko-pavel-a","email":"petrochenko.pavel.a@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/yaml-ast-parser-0.0.31.tgz_1481666747686_0.5070659543853253"},"directories":{}},"0.0.32":{"name":"yaml-ast-parser","version":"0.0.32","main":"dist/index.js","scripts":{"build":"rimraf dist && tsc","pullall":"dev-env-installer pullall","buildall":"dev-env-installer buildall","testall":"dev-env-installer testall","devInstall":"dev-env-installer install"},"dependencies":{},"typings":"dist/index.d.ts","repository":{"type":"git","url":"git+https://github.com/mulesoft-labs/yaml-ast-parser.git"},"keywords":["raml","ast","yaml"],"homepage":"https://github.com/mulesoft-labs/yaml-ast-parser","license":"Apache-2.0","bugs":{"url":"https://github.com/mulesoft-labs/yaml-ast-parser/issues"},"devDependencies":{"typescript":"1.8.7","typings":"^0.5.1","dev-env-installer":"0.0.5","rimraf":"*"},"gitHead":"05f8eccbb9b37ca32db4e523febd1a0902296723","description":"[![Build Status](https://travis-ci.org/mulesoft-labs/yaml-ast-parser.svg?branch=master)](https://travis-ci.org/mulesoft-labs/yaml-ast-parser)","_id":"yaml-ast-parser@0.0.32","_shasum":"da0f1c28997805f1597feefbed4f92bd67656b6f","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"denis.denisenko","email":"denis@onpositive.com"},"dist":{"shasum":"da0f1c28997805f1597feefbed4f92bd67656b6f","tarball":"https://registry.npmjs.org/yaml-ast-parser/-/yaml-ast-parser-0.0.32.tgz","integrity":"sha512-4WXzb9sVvowJheeXYOc14A6FIEXw4LD+eHKdFDYK7MfUdV2Ca92mvkHjLcz/c+j5icOpfaMhgJo5igcZJxs6tA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDsf1tOt96khePXDSceq/Yz0fVLx3WulGyhsYfgoW7c6AIgeCT071/Q+vpOTEmoJMd+AYRdRvB4w7PCSjmOpqF6+Oo="}]},"maintainers":[{"name":"denis.denisenko","email":"denis@onpositive.com"},{"name":"petrochenko-pavel-a","email":"petrochenko.pavel.a@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/yaml-ast-parser-0.0.32.tgz_1493775682046_0.8978885002434254"},"directories":{}},"0.0.33":{"name":"yaml-ast-parser","version":"0.0.33","main":"dist/index.js","scripts":{"build":"rimraf dist && tsc","pullall":"dev-env-installer pullall","buildall":"dev-env-installer buildall","testall":"dev-env-installer testall","devInstall":"dev-env-installer install"},"dependencies":{},"typings":"dist/index.d.ts","repository":{"type":"git","url":"git+https://github.com/mulesoft-labs/yaml-ast-parser.git"},"keywords":["raml","ast","yaml"],"homepage":"https://github.com/mulesoft-labs/yaml-ast-parser","license":"Apache-2.0","bugs":{"url":"https://github.com/mulesoft-labs/yaml-ast-parser/issues"},"devDependencies":{"typescript":"1.8.7","typings":"^0.5.1","dev-env-installer":"0.0.5","rimraf":"*"},"gitHead":"a5f7e904ce02be6d364f9a440eaab24db6df3c44","description":"[![Build Status](https://travis-ci.org/mulesoft-labs/yaml-ast-parser.svg?branch=master)](https://travis-ci.org/mulesoft-labs/yaml-ast-parser)","_id":"yaml-ast-parser@0.0.33","_shasum":"265398d62d3d0ef9000b2e03d0085d06ed424c96","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"denis.denisenko","email":"denis@onpositive.com"},"dist":{"shasum":"265398d62d3d0ef9000b2e03d0085d06ed424c96","tarball":"https://registry.npmjs.org/yaml-ast-parser/-/yaml-ast-parser-0.0.33.tgz","integrity":"sha512-UC3yfiU6GGMU43TlWDb0D6AvK096MyX3Z+nEW6fX5/62udUAftIFBnhKvMW6CAlRRgYj34IjWOII8jzkozc3gw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC+ZH4iRlyDbFtiHLiYC3Y7e0yTKDTFGSgv8apsUejRUgIgJSu+d7CK3jVZvzlxFp8FP2bvnw9Y0asZEPPcFar5xb8="}]},"maintainers":[{"name":"denis.denisenko","email":"denis@onpositive.com"},{"name":"petrochenko-pavel-a","email":"petrochenko.pavel.a@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/yaml-ast-parser-0.0.33.tgz_1496089143138_0.6931422888301313"},"directories":{}},"0.0.34":{"name":"yaml-ast-parser","version":"0.0.34","main":"dist/src/index.js","scripts":{"build":"rimraf dist && tsc","pullall":"dev-env-installer pullall","buildall":"dev-env-installer buildall","testall":"dev-env-installer testall","devInstall":"dev-env-installer install","test":"npm run build && mocha --ui tdd dist/test"},"dependencies":{},"typings":"dist/src/index.d.ts","repository":{"type":"git","url":"git+https://github.com/mulesoft-labs/yaml-ast-parser.git"},"keywords":["raml","ast","yaml"],"homepage":"https://github.com/mulesoft-labs/yaml-ast-parser","license":"Apache-2.0","bugs":{"url":"https://github.com/mulesoft-labs/yaml-ast-parser/issues"},"devDependencies":{"@types/chai":"^4.0.1","@types/mocha":"^2.2.41","@types/node":"^0.12.0","chai":"^4.0.2","dev-env-installer":"0.0.5","mocha":"^3.4.2","rimraf":"*","typescript":"^2.4.1"},"gitHead":"eb575bf77b501d73962378ceebb35daf06068b95","description":"[![Build Status](https://travis-ci.org/mulesoft-labs/yaml-ast-parser.svg?branch=master)](https://travis-ci.org/mulesoft-labs/yaml-ast-parser)","_id":"yaml-ast-parser@0.0.34","_shasum":"d00f3cf9d773b7241409ae92a6740d1db19f49e6","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"denis.denisenko","email":"denis@onpositive.com"},"dist":{"shasum":"d00f3cf9d773b7241409ae92a6740d1db19f49e6","tarball":"https://registry.npmjs.org/yaml-ast-parser/-/yaml-ast-parser-0.0.34.tgz","integrity":"sha512-XmoCfX98x1H9n3LcQc4pzc7v76PLcoUc1ozHi+UzcNou1hKMsLalhtXxVyIUbCDOAGP4v7dlKY94ndw1D+T6BQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBoqdtTQsiXrFsYfgXok2l84wMEMr3OPH0a4VL0F1RysAiBj9tKWie+0t3gk6M/o1SnGd1J0rkSOc0gWCy/rPs7tkg=="}]},"maintainers":[{"name":"denis.denisenko","email":"denis@onpositive.com"},{"name":"petrochenko-pavel-a","email":"petrochenko.pavel.a@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/yaml-ast-parser-0.0.34.tgz_1499974079405_0.5932121835649014"},"directories":{}},"0.0.35":{"name":"yaml-ast-parser","version":"0.0.35","main":"dist/src/index.js","scripts":{"build":"rimraf dist && tsc","pullall":"dev-env-installer pullall","buildall":"dev-env-installer buildall","testall":"dev-env-installer testall","devInstall":"dev-env-installer install","test":"npm run build && mocha --ui tdd dist/test"},"dependencies":{},"typings":"dist/src/index.d.ts","repository":{"type":"git","url":"git+https://github.com/mulesoft-labs/yaml-ast-parser.git"},"keywords":["raml","ast","yaml"],"homepage":"https://github.com/mulesoft-labs/yaml-ast-parser","license":"Apache-2.0","bugs":{"url":"https://github.com/mulesoft-labs/yaml-ast-parser/issues"},"devDependencies":{"@types/chai":"^4.0.1","@types/mocha":"^2.2.41","@types/node":"^0.12.0","chai":"^4.0.2","dev-env-installer":"0.0.5","mocha":"^3.4.2","rimraf":"*","typescript":"^2.4.1"},"gitHead":"1a310c8d137fbc67f3ac27ada0205f9814f1b4c9","description":"[![Build Status](https://travis-ci.org/mulesoft-labs/yaml-ast-parser.svg?branch=master)](https://travis-ci.org/mulesoft-labs/yaml-ast-parser)","_id":"yaml-ast-parser@0.0.35","_shasum":"0c852cef78cd0231d1b6a7a36539968e500b388c","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"denis.denisenko","email":"denis@onpositive.com"},"dist":{"shasum":"0c852cef78cd0231d1b6a7a36539968e500b388c","tarball":"https://registry.npmjs.org/yaml-ast-parser/-/yaml-ast-parser-0.0.35.tgz","integrity":"sha512-f4A2bE6iik/FuCQQMiSaw5rVgjWWSy8Iu4eIjSqoaQPTiu/slXjAoxHZYqDgnXOgYJp60/XtiAQHEb/ZcWwtmA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHblyFF2dcpUy4bd4ei2HxvPGIS4T4vgf2bn3FKKxZvuAiEArKifFTOeV6+qZhhW49Nb/nxTf2dLznDnikgy5GLMC5w="}]},"maintainers":[{"name":"denis.denisenko","email":"denis@onpositive.com"},{"name":"petrochenko-pavel-a","email":"petrochenko.pavel.a@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/yaml-ast-parser-0.0.35.tgz_1506365785133_0.9180445733945817"},"directories":{}},"0.0.36":{"name":"yaml-ast-parser","version":"0.0.36","main":"dist/src/index.js","scripts":{"build":"rimraf dist && tsc","pullall":"dev-env-installer pullall","buildall":"dev-env-installer buildall","testall":"dev-env-installer testall","devInstall":"dev-env-installer install","test":"npm run build && mocha --ui tdd dist/test"},"dependencies":{},"typings":"dist/src/index.d.ts","repository":{"type":"git","url":"git+https://github.com/mulesoft-labs/yaml-ast-parser.git"},"keywords":["raml","ast","yaml"],"homepage":"https://github.com/mulesoft-labs/yaml-ast-parser","license":"Apache-2.0","bugs":{"url":"https://github.com/mulesoft-labs/yaml-ast-parser/issues"},"devDependencies":{"@types/chai":"^4.0.1","@types/mocha":"^2.2.41","@types/node":"4.2.20","chai":"^4.0.2","dev-env-installer":"0.0.5","mocha":"^3.4.2","rimraf":"*","typescript":"2.5.2"},"gitHead":"7423f6208e80660784b60d4e768d63837a7ae7ce","description":"[![Build Status](https://travis-ci.org/mulesoft-labs/yaml-ast-parser.svg?branch=master)](https://travis-ci.org/mulesoft-labs/yaml-ast-parser)","_id":"yaml-ast-parser@0.0.36","_shasum":"9dfdef461570253392af1941b127b9de699a089b","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"denis.denisenko","email":"denis@onpositive.com"},"dist":{"shasum":"9dfdef461570253392af1941b127b9de699a089b","tarball":"https://registry.npmjs.org/yaml-ast-parser/-/yaml-ast-parser-0.0.36.tgz","integrity":"sha512-Gzcf5MdIilFP9MTWZHPqjM2Dj2PStTk2pKIcV5Uc12eUY0STP5fEIniDi8SvtIOhyAZrPzLQDfAKt/q7gu1Xtw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIESWHQkeXsRBY4yCroEeqGip2qQNuVjtlt6wPUOlcXgtAiEAu7B7TQwIpGMA2y72HetQKUbPna8NWCOtfv66RINlLOQ="}]},"maintainers":[{"name":"denis.denisenko","email":"denis@onpositive.com"},{"name":"petrochenko-pavel-a","email":"petrochenko.pavel.a@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/yaml-ast-parser-0.0.36.tgz_1507098388905_0.31574981147423387"},"directories":{}},"0.0.37":{"name":"yaml-ast-parser","version":"0.0.37","main":"dist/src/index.js","scripts":{"build":"rimraf dist && tsc","pullall":"dev-env-installer pullall","buildall":"dev-env-installer buildall","testall":"dev-env-installer testall","devInstall":"dev-env-installer install","test":"npm run build && mocha --ui tdd dist/test"},"dependencies":{},"typings":"dist/src/index.d.ts","repository":{"type":"git","url":"git+https://github.com/mulesoft-labs/yaml-ast-parser.git"},"keywords":["raml","ast","yaml"],"homepage":"https://github.com/mulesoft-labs/yaml-ast-parser","license":"Apache-2.0","bugs":{"url":"https://github.com/mulesoft-labs/yaml-ast-parser/issues"},"devDependencies":{"@types/chai":"^4.0.1","@types/mocha":"^2.2.41","@types/node":"4.2.20","chai":"^4.0.2","dev-env-installer":"^0.0.14","mocha":"^3.4.2","rimraf":"*","typescript":"2.5.2"},"gitHead":"d67dc141acee4bd4d1c4b306d96e3e668106b5fc","description":"[![Build Status](https://travis-ci.org/mulesoft-labs/yaml-ast-parser.svg?branch=master)](https://travis-ci.org/mulesoft-labs/yaml-ast-parser)","_id":"yaml-ast-parser@0.0.37","_shasum":"91cc56a3aa8a82e84ab887b74c61b92eb401c4d7","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"denis.denisenko","email":"denis@onpositive.com"},"dist":{"shasum":"91cc56a3aa8a82e84ab887b74c61b92eb401c4d7","tarball":"https://registry.npmjs.org/yaml-ast-parser/-/yaml-ast-parser-0.0.37.tgz","integrity":"sha512-7AYDhbTb+tq5fTwLVbS9oo6PjRAk72xZ4NVQ73Uz/IwHRBH+9UOQUb7ZRFQzONFhE05oeOV1rLlQISznJMHSOw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDTXU9BrPHOZL1EnAPLhbJklc2UeHXafeYMf2zFSFa1PwIhAIGshAXYg5vMmfTANTt28aVKZBixb7mxva//YEcI3hsO"}]},"maintainers":[{"name":"denis.denisenko","email":"denis@onpositive.com"},{"name":"petrochenko-pavel-a","email":"petrochenko.pavel.a@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/yaml-ast-parser-0.0.37.tgz_1508358262268_0.3178886107634753"},"directories":{}},"0.0.38":{"name":"yaml-ast-parser","version":"0.0.38","main":"dist/src/index.js","scripts":{"build":"rimraf dist && tsc","pullall":"dev-env-installer pullall","buildall":"dev-env-installer buildall","testall":"dev-env-installer testall","devInstall":"dev-env-installer install","test":"npm run build && mocha --ui tdd dist/test"},"dependencies":{},"typings":"dist/src/index.d.ts","repository":{"type":"git","url":"git+https://github.com/mulesoft-labs/yaml-ast-parser.git"},"keywords":["raml","ast","yaml"],"homepage":"https://github.com/mulesoft-labs/yaml-ast-parser","license":"Apache-2.0","bugs":{"url":"https://github.com/mulesoft-labs/yaml-ast-parser/issues"},"devDependencies":{"@types/chai":"^4.0.1","@types/mocha":"^2.2.41","@types/node":"4.2.20","chai":"^4.0.2","dev-env-installer":"^0.0.14","mocha":"^3.4.2","rimraf":"*","typescript":"2.5.2"},"gitHead":"dc388ac136fd994a3ab657ffa3eb11d495794dab","description":"[![Build Status](https://travis-ci.org/mulesoft-labs/yaml-ast-parser.svg?branch=master)](https://travis-ci.org/mulesoft-labs/yaml-ast-parser)","_id":"yaml-ast-parser@0.0.38","_shasum":"3fc4d661969485fad84f587207d8a53fab2b0f3e","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"denis.denisenko","email":"denis@onpositive.com"},"dist":{"shasum":"3fc4d661969485fad84f587207d8a53fab2b0f3e","tarball":"https://registry.npmjs.org/yaml-ast-parser/-/yaml-ast-parser-0.0.38.tgz","integrity":"sha512-IoXPsEuHl6GL3N0+tW2uWL4fjIzNPJNgjtmnr+dWmErGqSEvX1iL6YpLHvVm82qv0kzaDidoKIBD0ATXxF2HCg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCoyq3gpgKDrhbdtlbra1IAsBx01CD9b5FLNQNlEdg5xQIgfJEB3vnPa5kmg6LrFWSBioibOvuk/mHEuEtC7e/TmPc="}]},"maintainers":[{"name":"denis.denisenko","email":"denis@onpositive.com"},{"name":"petrochenko-pavel-a","email":"petrochenko.pavel.a@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/yaml-ast-parser-0.0.38.tgz_1508815751130_0.23254275880753994"},"directories":{}},"0.0.39":{"name":"yaml-ast-parser","version":"0.0.39","main":"dist/src/index.js","scripts":{"build":"rimraf dist && tsc","pullall":"dev-env-installer pullall","buildall":"dev-env-installer buildall","testall":"dev-env-installer testall","devInstall":"dev-env-installer install","test":"npm run build && mocha --ui tdd dist/test"},"dependencies":{},"typings":"dist/src/index.d.ts","repository":{"type":"git","url":"git+https://github.com/mulesoft-labs/yaml-ast-parser.git"},"keywords":["raml","ast","yaml"],"homepage":"https://github.com/mulesoft-labs/yaml-ast-parser","license":"Apache-2.0","bugs":{"url":"https://github.com/mulesoft-labs/yaml-ast-parser/issues"},"devDependencies":{"@types/chai":"4.0.1","@types/mocha":"2.2.41","@types/node":"4.2.20","chai":"4.0.2","dev-env-installer":"0.0.14","mocha":"3.4.2","rimraf":"*","typescript":"2.5.2"},"gitHead":"4418c375030131061d08f5314ccffacd20c0de64","description":"[![Build Status](https://travis-ci.org/mulesoft-labs/yaml-ast-parser.svg?branch=master)](https://travis-ci.org/mulesoft-labs/yaml-ast-parser)","_id":"yaml-ast-parser@0.0.39","_shasum":"7a05f28c38310c001d725306d47f074afe166e01","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"denis.denisenko","email":"denis@onpositive.com"},"dist":{"shasum":"7a05f28c38310c001d725306d47f074afe166e01","tarball":"https://registry.npmjs.org/yaml-ast-parser/-/yaml-ast-parser-0.0.39.tgz","integrity":"sha512-ThuXXCcBzznC9Vh/My0l638/60M7uSLlGjY9gnDuhT++PXySyJNotrta2NWs4NeJU7tbWMADndp8EYge89qVgg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCr+KAL0hHwDCZ//06eej9FBKNj8U/DyZa4nrI+L+5/+gIgDCcmUR4sT2f9FEkHF1LUU8eDIS/K2DmaWV9BCEohTwA="}]},"maintainers":[{"name":"denis.denisenko","email":"denis@onpositive.com"},{"name":"petrochenko-pavel-a","email":"petrochenko.pavel.a@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/yaml-ast-parser-0.0.39.tgz_1510678052448_0.280028821201995"},"directories":{}},"0.0.40":{"name":"yaml-ast-parser","version":"0.0.40","main":"dist/src/index.js","scripts":{"build":"rimraf dist && tsc","pullall":"dev-env-installer pullall","buildall":"dev-env-installer buildall","testall":"dev-env-installer testall","devInstall":"dev-env-installer install","test":"npm run build && mocha --ui tdd dist/test"},"dependencies":{},"typings":"dist/src/index.d.ts","repository":{"type":"git","url":"git+https://github.com/mulesoft-labs/yaml-ast-parser.git"},"keywords":["raml","ast","yaml"],"homepage":"https://github.com/mulesoft-labs/yaml-ast-parser","license":"Apache-2.0","bugs":{"url":"https://github.com/mulesoft-labs/yaml-ast-parser/issues"},"devDependencies":{"@types/chai":"4.0.1","@types/mocha":"2.2.41","@types/node":"4.2.20","chai":"4.0.2","dev-env-installer":"0.0.14","mocha":"3.4.2","rimraf":"*","typescript":"2.5.2"},"gitHead":"717578fb4c2589264fe7992bf950852ea201004b","description":"[![Build Status](https://travis-ci.org/mulesoft-labs/yaml-ast-parser.svg?branch=master)](https://travis-ci.org/mulesoft-labs/yaml-ast-parser)","_id":"yaml-ast-parser@0.0.40","_shasum":"08536d4e73d322b1c9ce207ab8dd70e04d20ae6e","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"denis.denisenko","email":"denis@onpositive.com"},"dist":{"shasum":"08536d4e73d322b1c9ce207ab8dd70e04d20ae6e","tarball":"https://registry.npmjs.org/yaml-ast-parser/-/yaml-ast-parser-0.0.40.tgz","integrity":"sha512-VslfnveVamssDl77Ore2SZTxBor6eVUT7mVsopoRjRlyWwXQiKZQ9KFiGFylwD0yG/u81L4uNna9gwsQyMDSHQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFzU2ah3oKU8nbXSGvhUQAGgj+zbAvKQensU4TwDtedAAiEAtjwX3OS53b/vnIctwUVmeirOAkCzpZmYMgebaliDRO8="}]},"maintainers":[{"name":"denis.denisenko","email":"denis@onpositive.com"},{"name":"petrochenko-pavel-a","email":"petrochenko.pavel.a@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/yaml-ast-parser-0.0.40.tgz_1512377881461_0.31284178025089204"},"directories":{}},"0.0.41":{"name":"yaml-ast-parser","version":"0.0.41","main":"dist/src/index.js","scripts":{"build":"rimraf dist && tsc","pullall":"dev-env-installer pullall","buildall":"dev-env-installer buildall","testall":"dev-env-installer testall","devInstall":"dev-env-installer install","test":"npm run build && mocha --ui tdd dist/test"},"dependencies":{},"typings":"dist/src/index.d.ts","repository":{"type":"git","url":"git+https://github.com/mulesoft-labs/yaml-ast-parser.git"},"keywords":["raml","ast","yaml"],"homepage":"https://github.com/mulesoft-labs/yaml-ast-parser","license":"Apache-2.0","bugs":{"url":"https://github.com/mulesoft-labs/yaml-ast-parser/issues"},"devDependencies":{"@types/chai":"4.0.1","@types/mocha":"2.2.41","@types/node":"4.2.20","chai":"4.0.2","dev-env-installer":"0.0.14","mocha":"3.4.2","rimraf":"*","typescript":"3.0.1"},"gitHead":"9a84397ea05ee6e5d5a3c05420a4ee6762efb6b9","description":"[![Build Status](https://travis-ci.org/mulesoft-labs/yaml-ast-parser.svg?branch=master)](https://travis-ci.org/mulesoft-labs/yaml-ast-parser)","_id":"yaml-ast-parser@0.0.41","_npmVersion":"5.6.0","_nodeVersion":"9.3.0","_npmUser":{"name":"denis.denisenko","email":"denis@onpositive.com"},"dist":{"integrity":"sha512-GLPSVaFy8yjnWFoSoGqQ3cOBmq3h8/SnB1yj6p3GR9OmIG43z8ZgmIbZVRG2a7zvfOJt2fL99v8PPm2dV+8dNA==","shasum":"e120d6933d11c1da091ad824e091eb5e3248cfdb","tarball":"https://registry.npmjs.org/yaml-ast-parser/-/yaml-ast-parser-0.0.41.tgz","fileCount":154,"unpackedSize":408695,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbhTfNCRA9TVsSAnZWagAA/18P/3eTgFdV4WNGjODLRJzQ\nVjuj65NCl4KyKEeikm5wF2vBU/gFl2eUheliozphvrtAGPlvtHZNdWm4N9RR\nk/I30kpf8qm3z24O6UpiOlOmlfyNyLm1lIbAl/jcjpz4vNqWwah6MUkx5V6o\nXrgLKDKgX2M6MELdhJG2wlGMB9NIfAw2lcT5rdOPpQX4CnwA2rEdefFfo2QQ\n63UJdrNfnTLKJVwGzuZql8yN2Xk/3woc8nNfmI36zjllQGonag4AsSFKukr7\nlXxJeC/l9fg/AfPSlHvJ4we46q54yMcwtVKv78BIeMSdoBquy5xqPBvdA2cF\n+a4/+oe0EjmU9itak2fETnIN/RoEDSYa4TtiV9oZz0Ivcvbs0Led1Ty5iUc4\n34cMwDbRRoDIrwG2pIIv0NN9WFEVNTtmp7H282uOxDSFL71C3rz9vIaZk3zS\nGGN33AE3Hbslv9ob7cn2KvcqAyGa8GDO3n+F4RlKYh0jdxyBLoiZMVqD+3/H\np/zb3JuVZMByw3gF4PMpYRK61NzsQkUpgYqXqNSr0TbDOOEH+tkA8recK4/8\n5W65FMa/B3RQBVtjHDvovaZ0jmGuRLFH9zeljpAkoxYCyJnhU0ZrXUMl4tZh\nlQcGClOpl64UNeNXPpWRomQt9QXWYvTxaE3IWA9R/CxOjF57S8EZzbFUXBeW\nhZDg\r\n=/Cs7\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDf09ASmrxgk9G9uKq6BkGmDV+MScEZq8wjPukmG/bqSwIgKe5XrYzjLjboRBZ7t/SBbqZTtlBkaeah3fXvzCzlt6M="}]},"maintainers":[{"name":"denis.denisenko","email":"denis@onpositive.com"},{"name":"petrochenko-pavel-a","email":"petrochenko.pavel.a@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/yaml-ast-parser_0.0.41_1535457229348_0.17727296011696625"},"_hasShrinkwrap":false},"0.0.42":{"name":"yaml-ast-parser","version":"0.0.42","main":"dist/src/index.js","scripts":{"build":"rimraf dist && tsc","pullall":"dev-env-installer pullall","buildall":"dev-env-installer buildall","testall":"dev-env-installer testall","devInstall":"dev-env-installer install","test":"npm run build && mocha --ui tdd dist/test"},"dependencies":{},"typings":"dist/src/index.d.ts","repository":{"type":"git","url":"git+https://github.com/mulesoft-labs/yaml-ast-parser.git"},"keywords":["raml","ast","yaml"],"homepage":"https://github.com/mulesoft-labs/yaml-ast-parser","license":"Apache-2.0","bugs":{"url":"https://github.com/mulesoft-labs/yaml-ast-parser/issues"},"devDependencies":{"@types/chai":"4.0.1","@types/mocha":"2.2.41","@types/node":"4.2.20","chai":"4.0.2","dev-env-installer":"0.0.14","mocha":"3.4.2","rimraf":"*","typescript":"3.0.1"},"gitHead":"123bcef39e2e10d91de190df69b13075bdf56027","description":"[![Build Status](https://travis-ci.org/mulesoft-labs/yaml-ast-parser.svg?branch=master)](https://travis-ci.org/mulesoft-labs/yaml-ast-parser)","_id":"yaml-ast-parser@0.0.42","_npmVersion":"5.6.0","_nodeVersion":"9.3.0","_npmUser":{"name":"denis.denisenko","email":"denis@onpositive.com"},"dist":{"integrity":"sha512-F+zV/yCXDTg+nplz1XRHZbqZjN3D4cfJM8JD0rTG+UlmtxQ5rbrGATSLVKPxqIa/Ksz2KcTBCsoMMgtpTWOCkA==","shasum":"6bed2847b159b873729c49952c79a20469016663","tarball":"https://registry.npmjs.org/yaml-ast-parser/-/yaml-ast-parser-0.0.42.tgz","fileCount":155,"unpackedSize":410387,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb7XnaCRA9TVsSAnZWagAA2AUQAJrT/OOyPUmzPlOxGU9K\nA+a20+ml2f96l5Dzn2Rpp7JKwG73Oc9RCB2z4ADy0p9uimkeG8qPw3Cx0uZb\nlGIzDbhMDQHvgQRQzMzeYZGDUWG5lXSyb1/+woHqKqULG0QjHzXGfaPDy5we\nYdRuBQRGiW1FnkVjkxfYVXkg8wMV2WBHkomXjPC3EdVxPnVwB3/UT8bl8uOk\nMtMZPVo1Q8i6UHAoq5589bMZyUZ/NtFevZCN+O8FRR5Ic6JadoA76MgImvox\noRWPfrI1fRoeqagoMz2D1JJJz43p7DZJrVVmK2+2c8HI6NdootLVm4XYQyWu\n7kdZBHJor34ZMgbY5DDdlqntvUeGsI70UQ+AR1Tvt605hPoYbHOeN1n7ehON\nMAFiApXg1/dBiC3AXsuC4oAw6k7oIXN6PZOD4VrIsZP+dKfP2WYW/62E9QaF\nr6VzjUgsJv5LJLkWoq0TJhk1FtLcxrViKVAtItKNm8cG3qs/gk93VqohoPmX\nLG1Vt16/lXcHhMdIj3GnBAkzl65oJgBliHn573syBVj4HXiWvMJ0sj7VR28J\naS8oOh17wgngumQxUAp3B8IOG4dZInYpNzm6M5lsaGgO5EkK7HbcFhf/c2pI\nS8vK8MeMw9uD9+ywmZQVDSb6hLsK5ejq4FF1Kldga3G99zGGfVINFy83yn6p\n82Oi\r\n=zAxU\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDmzsV1LgV26T2wm32YmqaOwjta7N0Cd1ikQ/ztKVM1XAIhANndYGNZURwAAVOGk4B4BlXQX2x6Wcv+s2LGJR0dqiF5"}]},"maintainers":[{"name":"denis.denisenko","email":"denis@onpositive.com"},{"name":"petrochenko-pavel-a","email":"petrochenko.pavel.a@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/yaml-ast-parser_0.0.42_1542289882073_0.2500939368507542"},"_hasShrinkwrap":false},"0.0.43":{"name":"yaml-ast-parser","version":"0.0.43","main":"dist/src/index.js","scripts":{"build":"rimraf dist && tsc","pullall":"dev-env-installer pullall","buildall":"dev-env-installer buildall","testall":"dev-env-installer testall","devInstall":"dev-env-installer install","test":"npm run build && mocha --ui tdd dist/test"},"dependencies":{},"typings":"dist/src/index.d.ts","repository":{"type":"git","url":"git+https://github.com/mulesoft-labs/yaml-ast-parser.git"},"keywords":["raml","ast","yaml"],"homepage":"https://github.com/mulesoft-labs/yaml-ast-parser","license":"Apache-2.0","bugs":{"url":"https://github.com/mulesoft-labs/yaml-ast-parser/issues"},"devDependencies":{"@types/chai":"4.0.1","@types/mocha":"2.2.41","@types/node":"4.2.20","chai":"4.0.2","dev-env-installer":"0.0.14","mocha":"3.4.2","rimraf":"*","typescript":"3.0.1"},"gitHead":"ddd0bbf5dfef0115217b84f863e3aada0324ed20","description":"[![Build Status](https://travis-ci.org/mulesoft-labs/yaml-ast-parser.svg?branch=master)](https://travis-ci.org/mulesoft-labs/yaml-ast-parser)","_id":"yaml-ast-parser@0.0.43","_npmVersion":"5.6.0","_nodeVersion":"9.3.0","_npmUser":{"name":"denis.denisenko","email":"denis@onpositive.com"},"dist":{"integrity":"sha512-2PTINUwsRqSd+s8XxKaJWQlUuEMHJQyEuh2edBbW8KNJz0SJPwUSD2zRWqezFEdN7IzAgeuYHFUCF7o8zRdZ0A==","shasum":"e8a23e6fb4c38076ab92995c5dca33f3d3d7c9bb","tarball":"https://registry.npmjs.org/yaml-ast-parser/-/yaml-ast-parser-0.0.43.tgz","fileCount":158,"unpackedSize":414329,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb7XpRCRA9TVsSAnZWagAAyvcQAJm7z0OFbwWYsJ9Y5h7V\nVTeA1I6QiF2mBr0XwHu+t+9dZVxRi7pqUl81NwHPQj7Rf+x+DBQdJp67AtuZ\nzr0JBsWDU2K6TjUIAC3xb/33kxTvCEJp1gHJ/h96SYYrrV+pkK7Xvp08c2wr\nIpqQhQBYQZyajRhGB/xuIpyJgS2EvLFoSDW9xfn4dEyVxc4nyipasGMFwoDd\nes3RTtEYgNP0YWKMyknPlBHmhqB3pmXyUqpEBlHUp/rjeZUaxXVs+LEUpi8I\n2RE0R0FWpCclzYI5UcOK3m/NLoPgIk9unmh8jWIk6/Gv6+M7b5hTTh29EgYU\nyWWUzrBsgxkBOqb0lSNrzBvvAX0aeYEG5KQiPdthC7Gc+UOt3m/WZzvT/t/S\nLqhDf+kvGAkyjAf/2bFD3KMDbvqQ6HZ2duzYy9ZlZlwpj7ga0LxU+TYrzxze\nBDwrfMJxG+BFr5YvYUvz8k9/BEzBXRS1LD1cRl4x0WW2gXJGj0fLfJYEjsOy\n8snB1tySrdTPpGzZ1MWPXckLJU9IAhGC+kBe+TsWYGkj3xs139YL7meSlg2r\nojQ76auO55ML3YGheiSJbKNHVDQ9SrOg+9BWT11u1iVtNeQrpTBKIk8U5fsp\nGK3R8qLg8V1Q9SLmi21zkexALZThwM1hpMy+IwZwlegffNN/1YKAiTxN7b0v\n7MQw\r\n=MDBp\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIH24qHU6shdvcyO1qIyvOz7I2kKVMAQOB0Rl/YEGHXieAiBrx23/ipoPHNV3SmqFxNA2FsRtHSFS3vLEkYHnTYHTyQ=="}]},"maintainers":[{"name":"denis.denisenko","email":"denis@onpositive.com"},{"name":"petrochenko-pavel-a","email":"petrochenko.pavel.a@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/yaml-ast-parser_0.0.43_1542290000996_0.8446808978642051"},"_hasShrinkwrap":false}},"homepage":"https://github.com/mulesoft-labs/yaml-ast-parser","keywords":["raml","ast","yaml"],"repository":{"type":"git","url":"git+https://github.com/mulesoft-labs/yaml-ast-parser.git"},"bugs":{"url":"https://github.com/mulesoft-labs/yaml-ast-parser/issues"},"license":"Apache-2.0","readmeFilename":"README.md","users":{"rlamana":true}}