{"_id":"djv","_rev":"49-643437a56c6db3dd2006777a8fb2f660","name":"djv","time":{"modified":"2022-06-15T05:48:05.897Z","created":"2016-01-29T08:29:53.002Z","0.0.1-alpha.0":"2016-01-29T08:29:53.002Z","0.0.1-alpha.1":"2016-01-29T08:46:11.033Z","0.0.1-alpha.2":"2016-03-07T11:49:41.263Z","0.0.1-alpha.3":"2016-03-08T16:36:03.926Z","0.0.1-alpha.4":"2016-03-11T13:20:06.656Z","0.0.1-alpha.5":"2016-03-11T16:46:33.941Z","0.0.1-alpha.6":"2016-03-12T12:01:50.180Z","0.0.1-alpha.7":"2016-03-12T12:08:09.144Z","0.0.1":"2016-03-30T12:02:25.460Z","0.1.0":"2016-04-12T13:58:28.931Z","0.1.1":"2016-04-12T14:11:27.554Z","0.1.2":"2016-04-13T09:02:14.740Z","0.1.3":"2016-08-10T08:32:07.253Z","0.1.4":"2017-01-05T11:42:00.762Z","1.0.0-beta":"2017-01-16T16:00:29.238Z","1.0.0-beta.0":"2017-03-20T09:13:26.963Z","1.1.0-alpha.0":"2017-06-16T18:01:16.208Z","1.1.0-alpha.1":"2017-06-17T10:15:27.578Z","1.1.0":"2017-06-17T10:17:23.578Z","1.1.1-alpha.0":"2017-07-20T12:50:51.317Z","1.1.1":"2017-07-20T13:59:50.581Z","1.2.0-alpha.0":"2017-09-27T14:35:25.872Z","1.2.0":"2017-09-27T14:52:33.735Z","2.0.0-alpha.0":"2017-10-10T08:46:20.068Z","2.0.0":"2017-10-10T09:23:44.064Z","2.1.0-alpha.0":"2018-06-24T11:07:45.033Z","2.1.0-alpha.1":"2018-06-24T11:14:53.302Z","2.1.0":"2018-06-24T11:43:58.195Z","2.1.1-alpha.0":"2018-09-04T08:43:57.018Z","2.1.1":"2018-09-04T09:02:48.369Z","2.1.2-alpha.0":"2019-03-06T10:55:05.972Z","2.1.2":"2019-03-06T11:08:42.476Z","2.1.3-alpha.0":"2019-05-25T15:17:07.891Z","2.1.4-alpha.0":"2020-12-27T11:23:34.026Z","2.1.4":"2020-12-27T12:05:34.448Z"},"maintainers":[{"name":"korzio","email":"korzio@gmail.com"}],"dist-tags":{"latest":"2.1.4"},"description":"dynamic json-schema validator","readme":"[![Build Status](https://travis-ci.org/korzio/djv.svg?branch=master)](https://travis-ci.org/korzio/djv)\n[![Join the chat at https://gitter.im/korzio/djv](https://badges.gitter.im/korzio/djv.svg)](https://gitter.im/korzio/djv)\n\n# djv <a name=\"title\"></a>\n\nDynamic JSON-Schema Validator\n\n[Official Documentation](http://korzio.github.io/djv/)\n\nCurrent package supports **JSON-Schema v6 and v4**. It contains utils to validate objects against schemas.\nThis is a part of **djv** packages aimed to work with json-schema.\n\n- [djv](https://github.com/korzio/djv) validate object against schemas\n- [djvi](https://github.com/korzio/djvi) instantiate objects by schema definition\n- [jvu](https://github.com/korzio/jvu) utilities for declarative, FP usage\n- [@djv/draft-04](https://github.com/korzio/@djv/draft-04) environment updates to support *draft-04*\n\nAny contributions are welcome. Check the [contribution guide](./CONTRIBUTING.md).\nSince version **1.2.0** *djv* package supports `draft-06`. Version **2.0.0** makes `draft-06` the default schema version. To use other versions check the [environment section](#environment).\n\n## Table of contents <a name=\"content\"></a>\n\n* [djv](#title)\n* [Table of contents](#content)\n* [Install](#install)\n* [Usage](#usage)\n* [API](#api)\n  * [Environment](#environment)\n  * [addSchema](#addSchema)\n  * [validate](#validate)\n  * [removeSchema](#removeSchema)\n  * [resolve](#resolve)\n  * [export](#export)\n  * [import](#import)\n  * [addFormat](#addFormat)\n  * [setErrorHandler](#errorHandler)\n  * [useVersion](#useVersion)\n* [Tests](#tests)\n* [References](#references)\n\n## Install <a name=\"install\"></a>\n\n```bash\nnpm install djv\n```\n\nor\n\n```html\n<script src=\"djv.js\"></script>\n```\n\nThere are 2 versions of validator\n\n- `./lib/djv.js` a default one, not uglified and not transpiled\n- `./djv.js` a built one with a webpack, babel and uglify (preferable for frontend)\n\n## Usage <a name=\"usage\"></a>\n\n```javascript\nconst env = new djv();\nconst jsonSchema = {\n  \"common\": {\n    \"properties\": {\n      \"type\": {\n        \"enum\": [\"common\"]\n      }\n    },\n    \"required\": [\n      \"type\"\n    ]\n  }\n};\n\n// Use `addSchema` to add json-schema\nenv.addSchema('test', jsonSchema);\nenv.validate('test#/common', { type: 'common' });\n// => undefined\n\nenv.validate('test#/common', { type: 'custom' });\n// => 'required: data'\n```\n\n## API <a name=\"api\"></a>\n\n### Environment <a name=\"environment\"></a>\n\nTo instantiate *djv* environment\n\n```javascript\nconst djv = require('djv');\nconst env = djv({\n  version: 'draft-06', // use json-schema draft-06\n  formats: { /*...*/ }, // custom formats @see #addFormat\n  errorHandler: () => { /*...*/ }, // custom error handler, @see #setErrorHandler\n});\n```\n\nTo use a previous version of JSON-Schema draft, use a [`draft-04` plugin](https://www.npmjs.com/package/@korzio/djv-draft-04), specified in [*optionalDependencies*](https://docs.npmjs.com/files/package.json#optionaldependencies) of *djv* package.\n\n```javascript\nconst env = new djv({ version: 'draft-04' });\n```\n\n### addSchema(name: string, schema: object?) -> resolved: object <a name=\"addSchema\"></a>\n\nAdd a schema to a current djv environment,\n\n```javascript\nenv.addSchema('test', jsonSchema);\n/* => {\n  fn: function f0(data){...}\n  name: 'test'\n  schema: ...\n} */\n```\n\n### validate(name: string, object: object) -> error: string <a name=\"validate\"></a>\n\nCheck if object is valid against the schema\n\n```javascript\nenv.validate('test#/common', { type: 'common' });\n// => undefined\n\nenv.validate('test#/common', { type: 'custom' });\n// => 'required: data'\n```\n\nwhere\n\n* *name* - schema path in current environment\n* *object* - object to validate\n* *error* - undefined if it is valid\n\n### removeSchema(name: string) <a name=\"removeSchema\"></a>\n\nRemove a schema or the whole structure from the djv environment\n\n```javascript\nenv.removeSchema('test');\n```\n\n### resolve(name: string?) <a name=\"resolve\"></a>\n\nResolve the name by existing environment\n\n```javascript\nenv.resolve('test');\n// => { name: 'test', schema: {} }, fn: ... }\n```\n\n### export(name: string?) -> state: object <a name=\"export\"></a>\n\nExport the whole structure object from environment or resolved by a given name\n\n```javascript\nenv.export();\n// => { test: { name: 'test', schema: {}, ... } }\n```\n\nwhere **state** is an internal structure or only resolved schema object\n\n### import(config: object) <a name=\"import\"></a>\n\nImport all found structure objects to internal environment structure\n\n```javascript\nenv.import(config);\n```\n\n### addFormat(name: string, formatter: string/function) <a name=\"addFormat\"></a>\n\nAdd formatter to djv environment. When a string is passed it is interpreted as an expression which when returns `true` goes with an error, when returns `false` then a property is valid. When a function is passed it will be executed during schema compilation with a current schema and template helper arguments.\n\n```javascript\nenv.addFormat('UpperCase', '%s !== %s.toUpperCase()');\n// or\nenv.addFormat('isOk', function(schema, tpl){\n  return `!${schema.isOk}`;\n});\nenv.validate('ok', 'valid') // => undefined if schema contains isOk property\n```\n\n### setErrorHandler(errorHandler: function) <a name=\"errorHandler\"></a>\n\nSpecify custom error handler which will be used in generated functions when problem found.\nThe function should return a string expression, which will be executed when generated validator function is executed. The simplist use case is the default one @see `template/defaultErrorHandler`\n```javascript\n function defaultErrorHandler(errorType) {\n   return `return \"${errorType}: ${tpl.data}\";`;\n }\n```\nIt returns an expression 'return ...', so the output is an error string.\n\n```javascript\ndjv({ errorHandler: () => 'return { error: true };' }) // => returns an object\ndjv({\n  errorHandler(type) {\n    return `errors.push({\n      type: '${type}',\n      schema: '${this.schema[this.schema.length - 1]}',\n      data: '${this.data[this.data.length - 1]}'\n    });`;\n  }\n});\n```\nWhen a custom error handler is used, the template body function adds a `error` variable inside a generated validator, which can be used to put error information. `errorType` is always passed to error handler function. Some validate utilities put extra argument, like f.e. currently processed property value. Inside the handler context is a templater instance, which contains `this.schema`, `this.data` paths arrays to identify validator position.\n@see test/index/setErrorHandler for more examples\n\n### useVersion(version: string, configure: function) <a name=\"useVersion\"></a>\n\nTo customize environment provide a `configure` function which will update configuration for *djv* instance.\n\n```javascript\nenv.useVersion('draft-04')\n// or\nenv.useVersion('custom', configure)\n```\n\n`Configure` will get internal properties as an argument. Check the [@korzio/djv-draft-04 code](https://github.com/korzio/-djv-draft-04/blob/master/index.js).\n\n```javascript\nexposed = {\n  properties,\n  keywords,\n  validators,\n  formats,\n  keys,\n  transformation,\n}\n```\n\n**!Important** Modifying them will affect all *djv* instances in an application.\n\n## Tests <a name=\"tests\"></a>\n\n```\nnpm test\n```\n\n## References <a name=\"references\"></a>\n\n* [JSON-Schema Specification](http://json-schema.org/)\n* [JSON-Schema Benchmark](https://github.com/ebdrup/json-schema-benchmark)\n","versions":{"0.0.1-alpha.1":{"name":"djv","version":"0.0.1-alpha.1","description":"dynamic json-schema validator","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/korzio/djv.git"},"keywords":["json-schema","json","schema","validator","validate","dynamic","deferred"],"author":{"name":"“Alexandre","email":"“korzio@gmail.com”"},"license":"MIT","bugs":{"url":"https://github.com/korzio/djv/issues"},"homepage":"https://github.com/korzio/djv#readme","gitHead":"38aad0d1c8a013b9f205df09f481020877860ccd","_id":"djv@0.0.1-alpha.1","_shasum":"5b2006b4287337a1e7fc8a6ccae8211369b5fdac","_from":".","_npmVersion":"3.4.0","_nodeVersion":"4.1.2","_npmUser":{"name":"korzio","email":"korzio@gmail.com"},"dist":{"shasum":"5b2006b4287337a1e7fc8a6ccae8211369b5fdac","tarball":"https://registry.npmjs.org/djv/-/djv-0.0.1-alpha.1.tgz","integrity":"sha512-ZgWfUxfW6ayMEANJ2iXz9LuHoTuOkMezRhx52VQtNxWj6D4Tz62BG4YgKoH3oMOS6ebyNzXAzrUv25Cb8k61vw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICZJfH90a5ukho373aYIauqFRzNDVdspxRd4yQYLlREpAiBNAj5DPs4/4q2bpKe/hdDnGw2Kh+y1gly0x2H3hp3BtQ=="}]},"maintainers":[{"name":"korzio","email":"korzio@gmail.com"}],"directories":{}},"0.0.1-alpha.2":{"name":"djv","version":"0.0.1-alpha.2","description":"dynamic json-schema validator","main":"lib/djv.js","scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+https://github.com/korzio/djv.git"},"keywords":["json-schema","json","schema","validator","validate","dynamic","deferred"],"author":{"name":"Alexander Korzhikov","email":"korzio@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/korzio/djv/issues"},"homepage":"https://github.com/korzio/djv#readme","devDependencies":{"json-schema-test-suite":"^0.0.10","mocha":"^2.4.5"},"gitHead":"86009756e0c73ab674acaa4d75b4677d8d86d35e","_id":"djv@0.0.1-alpha.2","_shasum":"0bf7d7a78146d42b701bf434c3a4d4d96d07d42b","_from":".","_npmVersion":"3.4.0","_nodeVersion":"4.1.2","_npmUser":{"name":"korzio","email":"korzio@gmail.com"},"dist":{"shasum":"0bf7d7a78146d42b701bf434c3a4d4d96d07d42b","tarball":"https://registry.npmjs.org/djv/-/djv-0.0.1-alpha.2.tgz","integrity":"sha512-pMOTsyeAWL3ipu2b7zlViSprLqaFNpoGmPiwEwUaZcsAQpYSm9bmQjSCSxiO4ibPsDhU3gyg5qQuVyuKwVlNvA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFLjzHiCgvbxMsibSKYrbIDPuV9RpLJ/s+dYHAXcpUG+AiEA5IJB7YP7ZmJQPFM3KoX6xegCa0vAOunBZJiWyoG8hJQ="}]},"maintainers":[{"name":"korzio","email":"korzio@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/djv-0.0.1-alpha.2.tgz_1457351377636_0.36499754060059786"},"directories":{}},"0.0.1-alpha.3":{"name":"djv","version":"0.0.1-alpha.3","description":"dynamic json-schema validator","main":"lib/djv.js","scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+https://github.com/korzio/djv.git"},"keywords":["json-schema","json","schema","validator","validate","dynamic","deferred"],"author":{"name":"Alexander Korzhikov","email":"korzio@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/korzio/djv/issues"},"homepage":"https://github.com/korzio/djv#readme","devDependencies":{"json-schema-test-suite":"^0.0.10","mocha":"^2.4.5"},"gitHead":"1975a0d624f04aa12234f2bbcf8c066e8e134ba1","_id":"djv@0.0.1-alpha.3","_shasum":"40c45d7afac52fe9ec8e23377bdcbe514a40d1af","_from":".","_npmVersion":"3.4.0","_nodeVersion":"4.1.2","_npmUser":{"name":"korzio","email":"korzio@gmail.com"},"dist":{"shasum":"40c45d7afac52fe9ec8e23377bdcbe514a40d1af","tarball":"https://registry.npmjs.org/djv/-/djv-0.0.1-alpha.3.tgz","integrity":"sha512-j3BO360y0X6ZPGA69xEEXL7JuuOC0HKKfAoLTOO+8hEb+ICN5pOTyG7+cGEZPJg+H0F4RODTj2vaOkY+K5qt/w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICpLWiZopsJFLYySk5aWwHNrbs2NKcQXyaJ6PLRVLE0LAiEAm9HhpSEUV4cHGsgf5UkPcGBtyXgKAmIrIsMum+EC10s="}]},"maintainers":[{"name":"korzio","email":"korzio@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/djv-0.0.1-alpha.3.tgz_1457454961631_0.25117063522338867"},"directories":{}},"0.0.1-alpha.4":{"name":"djv","version":"0.0.1-alpha.4","description":"dynamic json-schema validator","main":"lib/djv.js","scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+https://github.com/korzio/djv.git"},"keywords":["json-schema","json","schema","validator","validate","dynamic","deferred"],"author":{"name":"Alexander Korzhikov","email":"korzio@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/korzio/djv/issues"},"homepage":"https://github.com/korzio/djv#readme","devDependencies":{"json-schema-test-suite":"^0.0.10","mocha":"^2.4.5"},"gitHead":"1ddc3d8a64539c65d2312e8b789cb82288384499","_id":"djv@0.0.1-alpha.4","_shasum":"0a90293bf806de4bfe07a2c97a1455bd94684555","_from":".","_npmVersion":"3.4.0","_nodeVersion":"4.1.2","_npmUser":{"name":"korzio","email":"korzio@gmail.com"},"dist":{"shasum":"0a90293bf806de4bfe07a2c97a1455bd94684555","tarball":"https://registry.npmjs.org/djv/-/djv-0.0.1-alpha.4.tgz","integrity":"sha512-BwwXwOHZoNsftYSyxP+zrs3aU9FfQola9CPThOokdgjK7htdZjSmEacLIlyMzCZxkLxLseuZii0CM4/aH1dSKg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAOnGKMXuSNlExrGcEy9/GrlNpzPzBqJ03ysKyTdP/JIAiEAiw9po0MYWUNBBiWTIXOy6MiJhJ6ff0sg9Xn5ChJi3WI="}]},"maintainers":[{"name":"korzio","email":"korzio@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/djv-0.0.1-alpha.4.tgz_1457702404271_0.39356193970888853"},"directories":{}},"0.0.1-alpha.6":{"name":"djv","version":"0.0.1-alpha.6","description":"dynamic json-schema validator","main":"dist/djv.js","scripts":{"test":"mocha","build":"webpack"},"repository":{"type":"git","url":"git+https://github.com/korzio/djv.git"},"keywords":["json-schema","json","schema","validator","validate","dynamic","deferred"],"author":{"name":"Alexander Korzhikov","email":"korzio@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/korzio/djv/issues"},"homepage":"https://github.com/korzio/djv#readme","devDependencies":{"json-schema-test-suite":"^0.0.10","mocha":"^2.4.5","webpack":"^1.12.14"},"gitHead":"2f40f834eaeac1e4b5585a8cb8e3f6e4e438c48a","_id":"djv@0.0.1-alpha.6","_shasum":"862662e120e6ee866c07070cd7f54083fd325fbb","_from":".","_npmVersion":"3.4.0","_nodeVersion":"4.1.2","_npmUser":{"name":"korzio","email":"korzio@gmail.com"},"dist":{"shasum":"862662e120e6ee866c07070cd7f54083fd325fbb","tarball":"https://registry.npmjs.org/djv/-/djv-0.0.1-alpha.6.tgz","integrity":"sha512-kLwmZF8EtDCFvAjhjh1oRYDk5mJAyx4Y4gP9qwvyQTLMNPNcgi63tUH+7KXFzvNLUeGYjf/oteM8QGXooYYk2g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCCCyX1/LxVFuPvtxV/VLZKrwn5iOknxC71DwzlF/8RMAIgRu+FZobl7ibFaSCviR/IEodUrbZ/0COrEj7SD6sQ7Qk="}]},"maintainers":[{"name":"korzio","email":"korzio@gmail.com"}],"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/djv-0.0.1-alpha.6.tgz_1457784107634_0.6496255572419614"},"directories":{}},"0.0.1-alpha.7":{"name":"djv","version":"0.0.1-alpha.7","description":"dynamic json-schema validator","main":"dist/djv.js","scripts":{"test":"mocha","build":"webpack"},"repository":{"type":"git","url":"git+https://github.com/korzio/djv.git"},"keywords":["json-schema","json","schema","validator","validate","dynamic","deferred"],"author":{"name":"Alexander Korzhikov","email":"korzio@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/korzio/djv/issues"},"homepage":"https://github.com/korzio/djv#readme","devDependencies":{"json-schema-test-suite":"^0.0.10","mocha":"^2.4.5","webpack":"^1.12.14"},"gitHead":"56a3cf5996f2f1511eafb60daefce6206174451b","_id":"djv@0.0.1-alpha.7","_shasum":"f8fbc5db7bc8334690daf38d6bace61475294b1f","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.8.0","_npmUser":{"name":"korzio","email":"korzio@gmail.com"},"dist":{"shasum":"f8fbc5db7bc8334690daf38d6bace61475294b1f","tarball":"https://registry.npmjs.org/djv/-/djv-0.0.1-alpha.7.tgz","integrity":"sha512-J5RuOm4V4uhXHaGhWJ2uMUDuDsy746cffFuG30OHpnh4h8tJK97z4v3ClrNFCvGmJjMjtv3Ewh2FAdUpH/tKJw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAUoQxg63IFfo3Wksx5BnmX1iBdI0NCaIV5Bhc2wXDrxAiEAvHiG00LZanF0KlLvTZDH/N51GENfGmgj2nFalEmONyc="}]},"maintainers":[{"name":"korzio","email":"korzio@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/djv-0.0.1-alpha.7.tgz_1457784486979_0.5035031556617469"},"directories":{}},"0.0.1":{"name":"djv","version":"0.0.1","description":"dynamic json-schema validator","main":"djv.js","scripts":{"test":"mocha","build":"webpack"},"repository":{"type":"git","url":"git+https://github.com/korzio/djv.git"},"keywords":["json-schema","json","schema","validator","validate","dynamic","deferred"],"author":{"name":"Alexander Korzhikov","email":"korzio@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/korzio/djv/issues"},"homepage":"https://github.com/korzio/djv#readme","devDependencies":{"json-schema-test-suite":"^0.0.10","mocha":"^2.4.5","webpack":"^1.12.14"},"gitHead":"ebd4b37563893a771e9f9a206652f981e6eeb7cb","_id":"djv@0.0.1","_shasum":"82cb53ae1dda81cb2427a0aaf2f371e7a6c99f1b","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.8.0","_npmUser":{"name":"korzio","email":"korzio@gmail.com"},"dist":{"shasum":"82cb53ae1dda81cb2427a0aaf2f371e7a6c99f1b","tarball":"https://registry.npmjs.org/djv/-/djv-0.0.1.tgz","integrity":"sha512-staM+fG3RrRZ86uKxb79/VdF9PaukMVPJsKkPSHUhW64rlKp988H1NwjGQlKWN4Ai1180dv7tsAthqJxUusoAA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDre9aGqhMQswEmHVbnpW7NjE8gtnfjGvGn0AaewyTYqQIgE6hzp+oP6KbiMgd8VjuqGpex7bfgycIUoMIMo6B7Pio="}]},"maintainers":[{"name":"korzio","email":"korzio@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/djv-0.0.1.tgz_1459339344466_0.5157259148545563"},"directories":{}},"0.1.1":{"name":"djv","version":"0.1.1","description":"dynamic json-schema validator","main":"djv.js","scripts":{"test":"mocha","build":"webpack","docs":"markdox lib/djv.js"},"repository":{"type":"git","url":"git+https://github.com/korzio/djv.git"},"keywords":["json-schema","json","schema","validator","validate","dynamic"],"author":{"name":"Alexander Korzhikov","email":"korzio@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/korzio/djv/issues"},"homepage":"https://github.com/korzio/djv#readme","devDependencies":{"json-schema-test-suite":"^0.0.10","markdox":"^0.1.10","mocha":"^2.4.5","webpack":"^1.12.14"},"gitHead":"da07f7d94aa25abd9332082694c4df49d1e51783","_id":"djv@0.1.1","_shasum":"b4f95003258b64e946562ea5730aa69ee925b71a","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.8.0","_npmUser":{"name":"korzio","email":"korzio@gmail.com"},"dist":{"shasum":"b4f95003258b64e946562ea5730aa69ee925b71a","tarball":"https://registry.npmjs.org/djv/-/djv-0.1.1.tgz","integrity":"sha512-49RoMysPMEiJ5dZadhuJQRlNweE+8FawUrs13N1MZ6F0WPWKCwYxrBbQBMrzXccqFk/lKalBNxNfBl0eLhOjIQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICQjNOSh5PsnBm28znVoToVMj8MaFyBcw4nGOh+13tIjAiEA4WacFIzL+2vpjBWt89XY6fTDvZkTZny7Dq/iXWpHUFE="}]},"maintainers":[{"name":"korzio","email":"korzio@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/djv-0.1.1.tgz_1460470286141_0.9607234308496118"},"directories":{}},"0.1.2":{"name":"djv","version":"0.1.2","description":"dynamic json-schema validator","main":"djv.js","scripts":{"test":"mocha","build":"webpack","docs":"markdox lib/djv.js"},"repository":{"type":"git","url":"git+https://github.com/korzio/djv.git"},"keywords":["json-schema","json","schema","validator","validate","dynamic"],"author":{"name":"Alexander Korzhikov","email":"korzio@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/korzio/djv/issues"},"homepage":"https://github.com/korzio/djv#readme","devDependencies":{"json-schema-test-suite":"^0.0.10","markdox":"^0.1.10","mocha":"^2.4.5","webpack":"^1.12.14"},"gitHead":"d1b0e71d7bd2c00d1095b68fd238ac50b4984056","_id":"djv@0.1.2","_shasum":"6821f5f7050842c12f283e7d65229d52a4cb8c43","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.8.0","_npmUser":{"name":"korzio","email":"korzio@gmail.com"},"dist":{"shasum":"6821f5f7050842c12f283e7d65229d52a4cb8c43","tarball":"https://registry.npmjs.org/djv/-/djv-0.1.2.tgz","integrity":"sha512-0n0+PIY8vNcxd89GGU/xm1WQw9Sazte/pXUQ19/7SdA5Co7C3aBhGp3wzeYwj2IVjJYxnFscUTpYk0XgN/DkTA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHimpcK21IU1cxNumH+zzdzdW/0Ye5rativHrc1Du3GuAiEAj039402SmYl/m574E7WnOSwdOerwuetHhtCw93TsHzA="}]},"maintainers":[{"name":"korzio","email":"korzio@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/djv-0.1.2.tgz_1460538132221_0.26245953561738133"},"directories":{}},"0.1.3":{"name":"djv","version":"0.1.3","description":"dynamic json-schema validator","main":"lib/djv.js","scripts":{"test":"mocha","build":"webpack","docs":"markdox lib/djv.js"},"repository":{"type":"git","url":"git+https://github.com/korzio/djv.git"},"keywords":["json-schema","json","schema","validator","validate","dynamic"],"author":{"name":"Alexander Korzhikov","email":"korzio@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/korzio/djv/issues"},"homepage":"https://github.com/korzio/djv#readme","devDependencies":{"json-schema-benchmark":"^1.0.2","json-schema-test-suite":"^0.0.10","markdox":"^0.1.10","mocha":"^2.4.5","webpack":"^1.12.14"},"gitHead":"033c64a791c01c8c74b515ee2a7adfbd5999a8b0","_id":"djv@0.1.3","_shasum":"1cabf9cfd11d61332b2165860b97cbdc9bc6f328","_from":".","_npmVersion":"3.10.2","_nodeVersion":"5.8.0","_npmUser":{"name":"korzio","email":"korzio@gmail.com"},"dist":{"shasum":"1cabf9cfd11d61332b2165860b97cbdc9bc6f328","tarball":"https://registry.npmjs.org/djv/-/djv-0.1.3.tgz","integrity":"sha512-4KCtBt9IEpar6TwGYM+nXoUhBPG4i54ifNPWTndbaSejU8npARmx3dul1biBa2TFVDZqV3BqBBESY8G5ytgRuw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIENDR3CO9SiFhGQ7GvoSYAxuAODcn7ZjtFL4FhbRDjo6AiEA9Low0lpK+1HaZPqKEXH5XgKsOTwZFRFLcbktHSTieks="}]},"maintainers":[{"name":"korzio","email":"korzio@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/djv-0.1.3.tgz_1470817924575_0.2177934772334993"},"directories":{}},"0.1.4":{"name":"djv","version":"0.1.4","description":"dynamic json-schema validator","main":"lib/djv.js","scripts":{"test":"jasmine JASMINE_CONFIG_PATH=package.json","build":"webpack","docs":"markdox lib/djv.js"},"repository":{"type":"git","url":"git+https://github.com/korzio/djv.git"},"keywords":["json-schema","json","schema","validator","validate","dynamic"],"author":{"name":"Alexander Korzhikov","email":"korzio@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/korzio/djv/issues"},"homepage":"https://github.com/korzio/djv#readme","devDependencies":{"jasmine":"^2.5.2","json-schema-benchmark":"^1.0.2","json-schema-test-suite":"^0.0.10","markdox":"^0.1.10","webpack":"^1.12.14"},"spec_dir":"test","spec_files":["**/*.js"],"stopSpecOnExpectationFailure":false,"random":false,"gitHead":"52c990d35f8b71aa0c82c03e4951e81aa9116950","_id":"djv@0.1.4","_shasum":"4c17b17b6c7a2894a9f14eb2b8dc8f16778b473c","_from":".","_npmVersion":"3.10.9","_nodeVersion":"7.1.0","_npmUser":{"name":"korzio","email":"korzio@gmail.com"},"dist":{"shasum":"4c17b17b6c7a2894a9f14eb2b8dc8f16778b473c","tarball":"https://registry.npmjs.org/djv/-/djv-0.1.4.tgz","integrity":"sha512-iKHVXLibkzHnusJZuf8bAv726FhKx+XKTmP4eyqpFm7c6dGFXZMrrIcj7JrbxE3D4YLPpoaXiESH5+00kl3iOA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBROWCtqRxtFE3UzU0fKsrEYqllPP0m1jrq5IBJP9helAiEA8XRUN07aZWYUosSHuG23GzxssXuI0AOHTwMmTya8hlg="}]},"maintainers":[{"name":"korzio","email":"korzio@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/djv-0.1.4.tgz_1483616518805_0.7466659434139729"},"directories":{}},"1.0.0-beta":{"name":"djv","version":"1.0.0-beta","description":"dynamic json-schema validator","main":"lib/djv.js","scripts":{"test":"jasmine JASMINE_CONFIG_PATH=package.json","build":"webpack","docs":"markdox lib/djv.js"},"repository":{"type":"git","url":"git+https://github.com/korzio/djv.git"},"keywords":["json-schema","json","schema","validator","validate","dynamic"],"author":{"name":"Alexander Korzhikov","email":"korzio@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/korzio/djv/issues"},"homepage":"https://github.com/korzio/djv#readme","devDependencies":{"jasmine":"^2.5.2","json-schema-benchmark":"^1.0.2","json-schema-test-suite":"^0.0.10","markdox":"^0.1.10","webpack":"^1.12.14"},"spec_dir":"test","spec_files":["**/*.js"],"stopSpecOnExpectationFailure":false,"random":false,"gitHead":"273b095b62ff4d95f70564b2f8ad01ce07683787","_id":"djv@1.0.0-beta","_shasum":"93ae2348ada2dd921215cbac12d403663a8b0cac","_from":".","_npmVersion":"3.10.9","_nodeVersion":"7.1.0","_npmUser":{"name":"korzio","email":"korzio@gmail.com"},"dist":{"shasum":"93ae2348ada2dd921215cbac12d403663a8b0cac","tarball":"https://registry.npmjs.org/djv/-/djv-1.0.0-beta.tgz","integrity":"sha512-Gm8jvF+/r5cupGgCIu/46onecABMX1JYOtuYaoYm+hQitjF2oU6iCK3KleUGE917ALZNs5Fpjer/NZpjhrLR/Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICNBVknQqRVyzAYcNyMoI4IJrfockufJ1yIDBqX83bBdAiEAgQ8++5Cl5QhacIUFThFPQgULI5s7K2vg0UVKsS3owuw="}]},"maintainers":[{"name":"korzio","email":"korzio@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/djv-1.0.0-beta.tgz_1484582427144_0.6611856771633029"},"directories":{}},"1.0.0-beta.0":{"name":"djv","version":"1.0.0-beta.0","description":"dynamic json-schema validator","main":"lib/djv.js","scripts":{"test":"jasmine JASMINE_CONFIG_PATH=package.json","build":"webpack","docs":"markdox lib/djv.js"},"repository":{"type":"git","url":"git+https://github.com/korzio/djv.git"},"keywords":["json-schema","json","schema","validator","validate","dynamic"],"author":{"name":"Alexander Korzhikov","email":"korzio@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/korzio/djv/issues"},"homepage":"https://github.com/korzio/djv#readme","devDependencies":{"jasmine":"^2.5.2","json-schema-benchmark":"^1.0.2","json-schema-test-suite":"^0.0.10","markdox":"^0.1.10","webpack":"^1.12.14"},"spec_dir":"test","spec_files":["**/*.js"],"stopSpecOnExpectationFailure":false,"random":false,"gitHead":"072eb1d6aa12da41a69e37be4d1c9491dc3bceb6","_id":"djv@1.0.0-beta.0","_shasum":"35bd3e690ac4a04ea67a76c520007b1301766ecc","_from":".","_npmVersion":"4.1.2","_nodeVersion":"6.9.5","_npmUser":{"name":"korzio","email":"korzio@gmail.com"},"dist":{"shasum":"35bd3e690ac4a04ea67a76c520007b1301766ecc","tarball":"https://registry.npmjs.org/djv/-/djv-1.0.0-beta.0.tgz","integrity":"sha512-NyP1PFoCuEJQ1Ws2Oc2Xyf/ZsIK4t5GBihIoud+4HxkaZ672g1jUZ34LTxY9PE0she3yNQqtKUwvsxlhHgjnyA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDy3wJPUtdPe9+jOVI9B47qDGOeSw5rGzkL2UZU7qJ0LwIgZDk3IC5knBdaenkt5o9GewCitagUO+GQllcXvV8wTXk="}]},"maintainers":[{"name":"korzio","email":"korzio@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/djv-1.0.0-beta.0.tgz_1490001205023_0.8876955460291356"},"directories":{}},"1.1.0-alpha.0":{"name":"djv","version":"1.1.0-alpha.0","description":"dynamic json-schema validator","main":"lib/djv.js","scripts":{"test":"npm run jasmine && npm run lint","jasmine":"jasmine JASMINE_CONFIG_PATH=package.json","build":"webpack","lint":"eslint ./lib","changelog":"generate-changelog"},"repository":{"type":"git","url":"git+https://github.com/korzio/djv.git"},"keywords":["json-schema","json","schema","validator","validate"],"author":{"name":"Alexander Korzhikov","email":"korzio@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/korzio/djv/issues"},"homepage":"https://github.com/korzio/djv#readme","devDependencies":{"eslint":"^3.19.0","eslint-config-airbnb-base":"^11.2.0","eslint-plugin-import":"^2.3.0","generate-changelog":"^1.2.1","jasmine":"^2.5.2","json-schema-benchmark":"^1.0.2","json-schema-test-suite":"^0.0.10","webpack":"^1.12.14"},"spec_dir":"test","spec_files":["**/*.js"],"stopSpecOnExpectationFailure":false,"random":false,"gitHead":"11cae1815de6f786abc24a71616eb50e18b2beaf","_id":"djv@1.1.0-alpha.0","_shasum":"45733c5555bb1c44b85a394ceaa220c141fc5e35","_from":".","_npmVersion":"4.1.2","_nodeVersion":"6.9.5","_npmUser":{"name":"korzio","email":"korzio@gmail.com"},"dist":{"shasum":"45733c5555bb1c44b85a394ceaa220c141fc5e35","tarball":"https://registry.npmjs.org/djv/-/djv-1.1.0-alpha.0.tgz","integrity":"sha512-MbrM2apHnej6BEcf8U/6OCvkHTDFlUZZjkdpi+9fZMwcx98ZdVc1GfyPexJ7Vq30UZ3s+YxK0TGu+r0WrJn0gQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCjcrdxEewTNDZ2CuQ7cUnigzUv3p70egHHzBRY4csfaAIhAIyV2NdiegXzcajXm8KLAf5ZOCYcH8Oq0UiUVbNMAPUe"}]},"maintainers":[{"name":"korzio","email":"korzio@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/djv-1.1.0-alpha.0.tgz_1497636075044_0.8262233748100698"},"directories":{}},"1.1.0-alpha.1":{"name":"djv","version":"1.1.0-alpha.1","description":"dynamic json-schema validator","main":"lib/djv.js","scripts":{"test":"npm run test:jasmine && npm run lint","test:jasmine":"jasmine JASMINE_CONFIG_PATH=package.json","build":"webpack","lint":"eslint ./lib","changelog":"generate-changelog"},"repository":{"type":"git","url":"git+https://github.com/korzio/djv.git"},"keywords":["json-schema","json","schema","validator","validate"],"author":{"name":"Alexander Korzhikov","email":"korzio@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/korzio/djv/issues"},"homepage":"https://github.com/korzio/djv#readme","devDependencies":{"babel-core":"^6.25.0","babel-loader":"^7.0.0","babel-preset-env":"^1.5.2","eslint":"^3.19.0","eslint-config-airbnb-base":"^11.2.0","eslint-plugin-import":"^2.3.0","generate-changelog":"^1.2.1","jasmine":"^2.5.2","json-schema-benchmark":"^1.0.2","json-schema-test-suite":"^0.0.10","webpack":"^2.6.1"},"spec_dir":"test","spec_files":["**/*.js"],"stopSpecOnExpectationFailure":false,"random":false,"gitHead":"e7201e35760cf6d343b5a4c3c647bba4fb9bf09b","_id":"djv@1.1.0-alpha.1","_shasum":"e6f7912034d16ddc61a834d4a3f10acc82ebb8b4","_from":".","_npmVersion":"4.1.2","_nodeVersion":"6.9.5","_npmUser":{"name":"korzio","email":"korzio@gmail.com"},"dist":{"shasum":"e6f7912034d16ddc61a834d4a3f10acc82ebb8b4","tarball":"https://registry.npmjs.org/djv/-/djv-1.1.0-alpha.1.tgz","integrity":"sha512-T9tCx3NGC8i7ZqoWLBimzgYdKsWHh3+ZnyrjFmULT/UjggfeEilfH4B+j8l8Eebr6zGef1t5XBp2GUvkfZbtSQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBDS9N3NKjJkfQiPYt4uF3KQrLGS4W7QdoUG7s53BQvOAiEAgAZ3GBb2OhJowFicEw6o3/rSZGIAvgNUa/++Xc/qYCU="}]},"maintainers":[{"name":"korzio","email":"korzio@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/djv-1.1.0-alpha.1.tgz_1497694526465_0.7305052711162716"},"directories":{}},"1.1.0":{"name":"djv","version":"1.1.0","description":"dynamic json-schema validator","main":"lib/djv.js","scripts":{"test":"npm run test:jasmine && npm run lint","test:jasmine":"jasmine JASMINE_CONFIG_PATH=package.json","build":"webpack","lint":"eslint ./lib","changelog":"generate-changelog"},"repository":{"type":"git","url":"git+https://github.com/korzio/djv.git"},"keywords":["json-schema","json","schema","validator","validate"],"author":{"name":"Alexander Korzhikov","email":"korzio@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/korzio/djv/issues"},"homepage":"https://github.com/korzio/djv#readme","devDependencies":{"babel-core":"^6.25.0","babel-loader":"^7.0.0","babel-preset-env":"^1.5.2","eslint":"^3.19.0","eslint-config-airbnb-base":"^11.2.0","eslint-plugin-import":"^2.3.0","generate-changelog":"^1.2.1","jasmine":"^2.5.2","json-schema-benchmark":"^1.0.2","json-schema-test-suite":"^0.0.10","webpack":"^2.6.1"},"spec_dir":"test","spec_files":["**/*.js"],"stopSpecOnExpectationFailure":false,"random":false,"gitHead":"7f61717acc7bd0f4e62082d7f957453f5e232c50","_id":"djv@1.1.0","_shasum":"e49de0c8717d11385a6ade4aadef4bc105a814e9","_from":".","_npmVersion":"4.1.2","_nodeVersion":"6.9.5","_npmUser":{"name":"korzio","email":"korzio@gmail.com"},"dist":{"shasum":"e49de0c8717d11385a6ade4aadef4bc105a814e9","tarball":"https://registry.npmjs.org/djv/-/djv-1.1.0.tgz","integrity":"sha512-tHt/jFNf0a4sY62pEQc0DGNXAxfgJzNgjRT+8LmG7E5ok+5KpvmIPv1nWCcK2o6PN2biEWf/yAEaGEhAFclkCA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD1i1cYSh1IBtelXEQh6wc61pycJYHhIfLfgz/f5plZoAIgB1x7zK68AGBw9raJUeOA6Fz0QwifmHSwND8gLMm85Z8="}]},"maintainers":[{"name":"korzio","email":"korzio@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/djv-1.1.0.tgz_1497694642518_0.487022299785167"},"directories":{}},"1.1.1-alpha.0":{"name":"djv","version":"1.1.1-alpha.0","description":"dynamic json-schema validator","main":"lib/djv.js","scripts":{"build":"webpack","changelog":"generate-changelog","lint":"eslint ./lib","prepublishOnly":"npm run test && npm run build","test":"npm run test:jasmine && npm run lint","test:jasmine":"jasmine JASMINE_CONFIG_PATH=package.json"},"repository":{"type":"git","url":"git+https://github.com/korzio/djv.git"},"keywords":["json-schema","json","schema","validator","validate"],"author":{"name":"Alexander Korzhikov","email":"korzio@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/korzio/djv/issues"},"homepage":"https://github.com/korzio/djv#readme","devDependencies":{"babel-core":"^6.25.0","babel-loader":"^7.0.0","babel-preset-env":"^1.5.2","eslint":"^3.19.0","eslint-config-airbnb-base":"^11.2.0","eslint-plugin-import":"^2.3.0","generate-changelog":"^1.2.1","jasmine":"^2.5.2","json-schema-benchmark":"git+https://github.com/ebdrup/json-schema-benchmark.git","json-schema-test-suite":"latest","source-map-loader":"^0.2.1","webpack":"^3.0.0"},"spec_dir":"test","spec_files":["**/*.js"],"stopSpecOnExpectationFailure":false,"random":false,"gitHead":"dc65b89052d84e83af16fd7ee6ca1e09f6988bfa","_id":"djv@1.1.1-alpha.0","_shasum":"b45d2300233bf3a47cd1129e8979ff79ee9c1746","_from":".","_npmVersion":"4.1.2","_nodeVersion":"6.9.5","_npmUser":{"name":"korzio","email":"korzio@gmail.com"},"dist":{"shasum":"b45d2300233bf3a47cd1129e8979ff79ee9c1746","tarball":"https://registry.npmjs.org/djv/-/djv-1.1.1-alpha.0.tgz","integrity":"sha512-BrPB9Xv41Wl2sf+04x5djWa+SkV2oiSvNOeebQAT51jnQkviI37XLsyt5K+WTUCUkv/fkI16kuLHiqozgXaomA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCRIe6+eXUJTbcy4I9W2VveNDFsaVkgjBHEY/ji/4GkNQIhALVKUxa8dKRkGjNMmdQdH+SrTWMaJiMTc19CDuuKIw4k"}]},"maintainers":[{"name":"korzio","email":"korzio@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/djv-1.1.1-alpha.0.tgz_1500555049996_0.21886927681043744"},"directories":{}},"1.1.1":{"name":"djv","version":"1.1.1","description":"dynamic json-schema validator","main":"lib/djv.js","scripts":{"build":"webpack","changelog":"generate-changelog","lint":"eslint ./lib","prepublishOnly":"npm run test && npm run build","test":"npm run test:jasmine && npm run lint","test:jasmine":"jasmine JASMINE_CONFIG_PATH=package.json"},"repository":{"type":"git","url":"git+https://github.com/korzio/djv.git"},"keywords":["json-schema","json","schema","validator","validate"],"author":{"name":"Alexander Korzhikov","email":"korzio@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/korzio/djv/issues"},"homepage":"https://github.com/korzio/djv#readme","devDependencies":{"babel-core":"^6.25.0","babel-loader":"^7.0.0","babel-preset-env":"^1.5.2","eslint":"^3.19.0","eslint-config-airbnb-base":"^11.2.0","eslint-plugin-import":"^2.3.0","generate-changelog":"^1.2.1","jasmine":"^2.5.2","json-schema-benchmark":"git+https://github.com/ebdrup/json-schema-benchmark.git","json-schema-test-suite":"latest","source-map-loader":"^0.2.1","webpack":"^3.0.0"},"spec_dir":"test","spec_files":["**/*.js"],"stopSpecOnExpectationFailure":false,"random":false,"gitHead":"faf538564894a47d386e621b7de8a21602020052","_id":"djv@1.1.1","_shasum":"8e3738256178bcdbbe071d76da737b4fd2440e03","_from":".","_npmVersion":"4.1.2","_nodeVersion":"6.9.5","_npmUser":{"name":"korzio","email":"korzio@gmail.com"},"dist":{"shasum":"8e3738256178bcdbbe071d76da737b4fd2440e03","tarball":"https://registry.npmjs.org/djv/-/djv-1.1.1.tgz","integrity":"sha512-5VSx2+GaR9fDMbBGoK4ZNpqsCjVFshqJCtG2Gk1CbICfv1NsIhHWfaL8eWiKEFtMXuUIpYODtV3yJ1EsTTmk6w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDMlSdiBrF1KWDz6FAD/EI9BTTtRpcwHsI5k8RB/QuUSQIhAJWGwC/fgB9H5U65Mkq0JDcUf0qPjhcBt2kCT8J3iMBM"}]},"maintainers":[{"name":"korzio","email":"korzio@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/djv-1.1.1.tgz_1500559189324_0.04938648152165115"},"directories":{}},"1.2.0-alpha.0":{"name":"djv","version":"1.2.0-alpha.0","description":"dynamic json-schema validator","main":"lib/djv.js","scripts":{"build":"webpack","changelog":"generate-changelog","lint":"eslint ./lib","prepublishOnly":"npm run test && npm run build","test":"npm run test:jasmine && npm run lint","test:jasmine":"jasmine JASMINE_CONFIG_PATH=package.json"},"repository":{"type":"git","url":"git+https://github.com/korzio/djv.git"},"keywords":["json-schema","json","schema","validator","validate"],"author":{"name":"Alexander Korzhikov","email":"korzio@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/korzio/djv/issues"},"homepage":"https://github.com/korzio/djv#readme","devDependencies":{"babel-core":"^6.25.0","babel-loader":"^7.0.0","babel-preset-env":"^1.5.2","eslint":"^3.19.0","eslint-config-airbnb-base":"^11.2.0","eslint-plugin-import":"^2.7.0","generate-changelog":"^1.2.1","jasmine":"^2.5.2","json-schema-benchmark":"git+https://github.com/ebdrup/json-schema-benchmark.git","json-schema-test":"^1.3.0","json-schema-test-suite":"git+https://github.com/json-schema/JSON-Schema-Test-Suite.git","source-map-loader":"^0.2.1","webpack":"^3.0.0"},"spec_dir":"test","spec_files":["**/*.js"],"stopSpecOnExpectationFailure":false,"random":false,"gitHead":"74da4a2eee008e892f6a7d12debbab9fb87cf55c","_id":"djv@1.2.0-alpha.0","_shasum":"d9aafaecae19e7fdbcb918c83f18394fa90bf620","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.2","_npmUser":{"name":"korzio","email":"korzio@gmail.com"},"dist":{"shasum":"d9aafaecae19e7fdbcb918c83f18394fa90bf620","tarball":"https://registry.npmjs.org/djv/-/djv-1.2.0-alpha.0.tgz","integrity":"sha512-yDnPITOpHW21fzGVV4o0JkHMM9V5NdbEZCz3N7vxFe+n0b7mAipJzINjrLn1PgAv/XGc/njO/ZfiCnblHwVXVw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC6Oz6wdecF5uGa8ZyAj6Mdsu5H7SUI64ESI9vBTfSTHAIgEIYIT1gPUgyClIuZIJqM0xiBk+FPwHeyuxNwmhfWBhQ="}]},"maintainers":[{"name":"korzio","email":"korzio@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/djv-1.2.0-alpha.0.tgz_1506522924700_0.12730079446919262"},"directories":{}},"1.2.0":{"name":"djv","version":"1.2.0","description":"dynamic json-schema validator","main":"lib/djv.js","scripts":{"build":"webpack","changelog":"generate-changelog","lint":"eslint ./lib","prepublishOnly":"npm run test && npm run build","test":"npm run test:jasmine && npm run lint","test:jasmine":"jasmine JASMINE_CONFIG_PATH=package.json"},"repository":{"type":"git","url":"git+https://github.com/korzio/djv.git"},"keywords":["json-schema","json","schema","validator","validate"],"author":{"name":"Alexander Korzhikov","email":"korzio@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/korzio/djv/issues"},"homepage":"https://github.com/korzio/djv#readme","devDependencies":{"babel-core":"^6.25.0","babel-loader":"^7.0.0","babel-preset-env":"^1.5.2","eslint":"^3.19.0","eslint-config-airbnb-base":"^11.2.0","eslint-plugin-import":"^2.7.0","generate-changelog":"^1.2.1","jasmine":"^2.5.2","json-schema-benchmark":"git+https://github.com/ebdrup/json-schema-benchmark.git","json-schema-test":"^1.3.0","json-schema-test-suite":"git+https://github.com/json-schema/JSON-Schema-Test-Suite.git","source-map-loader":"^0.2.1","webpack":"^3.0.0"},"spec_dir":"test","spec_files":["**/*.js"],"stopSpecOnExpectationFailure":false,"random":false,"gitHead":"afaab0cf7f1cb8d00f5d5d22ade70e1be4daf5d9","_id":"djv@1.2.0","_shasum":"3c2bffc74641af7414277307fee69006971fa7a6","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.2","_npmUser":{"name":"korzio","email":"korzio@gmail.com"},"dist":{"shasum":"3c2bffc74641af7414277307fee69006971fa7a6","tarball":"https://registry.npmjs.org/djv/-/djv-1.2.0.tgz","integrity":"sha512-aFYWhdp0DazyjEITjlZrLk76x2uXNeWREpwC2h51Yf67ZwF+WHUWODiCaGQP7ChqSNGqCD+QdLuxO2Bi3+HmMg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHdMeAzDdpZf0ZkMwMOBU4VQb8CvegN2GTx7gQfTFV5nAiBRFSKr4kSJywSI5lUVHrq5I51XtHXd31Yik0GutqY5FQ=="}]},"maintainers":[{"name":"korzio","email":"korzio@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/djv-1.2.0.tgz_1506523952565_0.7403714200481772"},"directories":{}},"2.0.0-alpha.0":{"name":"djv","version":"2.0.0-alpha.0","description":"dynamic json-schema validator","main":"lib/djv.js","scripts":{"build":"webpack","changelog":"generate-changelog","docs":"jsdoc -r lib/ -d docs/auto","lint":"eslint ./lib","prepublishOnly":"npm run test && npm run build","test":"npm run test:jasmine && npm run lint","test:jasmine":"jasmine JASMINE_CONFIG_PATH=package.json"},"repository":{"type":"git","url":"git+https://github.com/korzio/djv.git"},"keywords":["json-schema","json","schema","validator","validate"],"author":{"name":"Alexander Korzhikov","email":"korzio@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/korzio/djv/issues"},"homepage":"https://github.com/korzio/djv#readme","devDependencies":{"babel-core":"^6.25.0","babel-loader":"^7.0.0","babel-preset-env":"^1.5.2","eslint":"^3.19.0","eslint-config-airbnb-base":"^11.2.0","eslint-plugin-import":"^2.7.0","generate-changelog":"^1.2.1","jasmine":"^2.5.2","jsdoc":"^3.5.5","json-schema-benchmark":"git+https://github.com/ebdrup/json-schema-benchmark.git","json-schema-test":"^1.3.0","json-schema-test-suite":"git+https://github.com/json-schema/JSON-Schema-Test-Suite.git","source-map-loader":"^0.2.1","webpack":"^3.0.0"},"optionalDependencies":{"@korzio/djv-draft-04":"^2.0.0"},"spec_dir":"test","spec_files":["**/*.js"],"stopSpecOnExpectationFailure":false,"random":false,"gitHead":"faa64956c2b71b0cbae07f7a334e8345860a01ad","dependencies":{"@korzio/djv-draft-04":"^2.0.0"},"_id":"djv@2.0.0-alpha.0","_shasum":"32e8dcdafe95fc4e435934b41bdb8b26005f6161","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.2","_npmUser":{"name":"korzio","email":"korzio@gmail.com"},"dist":{"shasum":"32e8dcdafe95fc4e435934b41bdb8b26005f6161","tarball":"https://registry.npmjs.org/djv/-/djv-2.0.0-alpha.0.tgz","integrity":"sha512-MULTv0Cg5xoDvQ/49M+umuXw+HtpYV6ss9a+xNsZOeljNvaASBsQU09eQmbzghh6J3OTQ7L0e7dUXoQ8TuRZ8w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHYenVSvsZSsehv+Sd5wl9tRQAiwKwEXTuk16QJLf8EzAiEAn6dUodS7bIS0th468jj9PTGysGrc2Fn1aT1bMPkijjo="}]},"maintainers":[{"name":"korzio","email":"korzio@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/djv-2.0.0-alpha.0.tgz_1507625178904_0.9403348776977509"},"directories":{}},"2.0.0":{"name":"djv","version":"2.0.0","description":"dynamic json-schema validator","main":"lib/djv.js","scripts":{"build":"webpack","changelog":"generate-changelog","docs":"jsdoc -r lib/ -d docs/auto","lint":"eslint ./lib","prepublishOnly":"npm run test && npm run build","test":"npm run test:jasmine && npm run lint","test:jasmine":"jasmine JASMINE_CONFIG_PATH=package.json"},"repository":{"type":"git","url":"git+https://github.com/korzio/djv.git"},"keywords":["json-schema","json","schema","validator","validate"],"author":{"name":"Alexander Korzhikov","email":"korzio@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/korzio/djv/issues"},"homepage":"https://github.com/korzio/djv#readme","devDependencies":{"babel-core":"^6.25.0","babel-loader":"^7.0.0","babel-preset-env":"^1.5.2","eslint":"^3.19.0","eslint-config-airbnb-base":"^11.2.0","eslint-plugin-import":"^2.7.0","generate-changelog":"^1.2.1","jasmine":"^2.5.2","jsdoc":"^3.5.5","json-schema-benchmark":"git+https://github.com/ebdrup/json-schema-benchmark.git","json-schema-test":"^1.3.0","json-schema-test-suite":"git+https://github.com/json-schema/JSON-Schema-Test-Suite.git","source-map-loader":"^0.2.1","webpack":"^3.0.0"},"optionalDependencies":{"@korzio/djv-draft-04":"^2.0.0"},"spec_dir":"test","spec_files":["**/*.js"],"stopSpecOnExpectationFailure":false,"random":false,"gitHead":"54ba8026b86e9ba1ad29985f3f4fe246f0ecd8ca","dependencies":{"@korzio/djv-draft-04":"^2.0.0"},"_id":"djv@2.0.0","_shasum":"0918ca5830a7e666f13a1977764ddf1cc2998254","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.2","_npmUser":{"name":"korzio","email":"korzio@gmail.com"},"dist":{"shasum":"0918ca5830a7e666f13a1977764ddf1cc2998254","tarball":"https://registry.npmjs.org/djv/-/djv-2.0.0.tgz","integrity":"sha512-9og7LXUe5cpMxbkZsKkLjH8fCKzF+zo9EKWjoTJVizg/cZJ8hFY+26T1+HGYKaRUuqKljpVLNj+ltHWFbFyMAQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDvW2naISlgwB2XAh72HzFsBzHSzKJ0DKN43um0rgumTQIgXkFfdJOkiNuG1bjnerOzCMoFUZlZcvBjDxCsUWEKvyE="}]},"maintainers":[{"name":"korzio","email":"korzio@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/djv-2.0.0.tgz_1507627422388_0.036748327780514956"},"directories":{}},"2.1.0-alpha.0":{"name":"djv","version":"2.1.0-alpha.0","description":"dynamic json-schema validator","main":"lib/djv.js","files":["lib/djv.js","djv.js"],"scripts":{"build":"webpack","changelog":"generate-changelog","docs":"jsdoc -r lib/ -d docs/auto","lint":"eslint ./lib","prepublishOnly":"npm run test && npm run build","test":"npm run test:jasmine && npm run lint","test:jasmine":"jasmine JASMINE_CONFIG_PATH=package.json"},"repository":{"type":"git","url":"git+https://github.com/korzio/djv.git"},"keywords":["json-schema","json","schema","validator","validate"],"author":{"name":"Alexander Korzhikov","email":"korzio@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/korzio/djv/issues"},"homepage":"https://github.com/korzio/djv#readme","devDependencies":{"babel-core":"^6.25.0","babel-loader":"^7.0.0","babel-preset-env":"^1.5.2","eslint":"^3.19.0","eslint-config-airbnb-base":"^11.2.0","eslint-plugin-import":"^2.7.0","generate-changelog":"^1.2.1","jasmine":"^2.5.2","jsdoc":"^3.5.5","json-schema-benchmark":"git+https://github.com/ebdrup/json-schema-benchmark.git","json-schema-test":"^1.3.0","json-schema-test-suite":"git+https://github.com/json-schema/JSON-Schema-Test-Suite.git","source-map-loader":"^0.2.1","webpack":"^3.0.0"},"optionalDependencies":{"@korzio/djv-draft-04":"^2.0.0"},"spec_dir":"test","spec_files":["**/*.js"],"stopSpecOnExpectationFailure":false,"random":false,"gitHead":"e38c05827dace5ec6fdb3842486772a6053300f0","dependencies":{"@korzio/djv-draft-04":"^2.0.0"},"_id":"djv@2.1.0-alpha.0","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"korzio","email":"korzio@gmail.com"},"dist":{"integrity":"sha512-PV8phWPx+cdZW7mpn3SsCl88r9qV2Smu71GfnCXOagcOvj2a7BOABW6VkHEObHS4lVVH227yZwK/a90E/mnVlg==","shasum":"cb03cab2b5689aaa1c455ccd0aa2eaf376c08fae","tarball":"https://registry.npmjs.org/djv/-/djv-2.1.0-alpha.0.tgz","fileCount":6,"unpackedSize":62453,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbL3uBCRA9TVsSAnZWagAACfYP/3u2KFQVkcb1TzzPL0K3\n4g5y/FV6r52Rsaf8VqWF914Nr/uW698dZRxEqP23CAn9bTHSLSze6b3mpRyl\nDkN8JVlBClA06N1zLT9eE+4tERwoIH5BbfYtyXOiE9Vwja+spd4NJArmjDAI\niHWzfWn0U0i7rMtnWUTviHiIT0t4WcniGN9cAoVZ0a2QHJZc6gUvTZyu+vbB\n/fFqAf8op3GEpfnXLi3s0xZWCg6rjIB8ndfH0Krn2erbku0jYyynsj2QCIVV\nq2WvEuc9x9eaOxPc5hc9sKbnxjXUH0QwBG8X9tK+7+jVus6hOWfud2z1T/rh\nrXI8Yz7I4fNaHJYI2b1yJsVn9sh3tUYN2i7uPg2o6ttooC6yRovxzBGFYhHf\nbysm/fLtG7lgcJq7I2kmwHdivE4AGZfl9mxFYotPXNQwECAOzR202LMuRrab\nvBh/ONFXfdd5ngRwq+IXrMLYaUoJQFFr0JBXSZQQKxUtmQCOQxigrkwj+AgV\nExnd+Jl1u/eIPe6lUSIkacJTklLr7UdV9DGax1Sq8Yp7CyxE7Iu/VnxCL+em\njVitSDol3LNSB8y5H8aNmSg1jEXXqhCFP/4kp0hTKDxerUBivErwZlKaS+te\n9wK+w1gAAtW43iMheYWjYjrDh/qT3GhNHAlUnDrOFECpt66Bd6r8sr7iSZJL\nBW49\r\n=5zzW\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDO5sspJMKQXRd1CFjXlmoHOYOrFhN1AzeFM15JvLh0NAIgOUxO0XIm6tapAJOvgPY2QNSnwFNYoo7RkWrJK2jk6TY="}]},"maintainers":[{"name":"korzio","email":"korzio@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/djv_2.1.0-alpha.0_1529838464960_0.1921099436434064"},"_hasShrinkwrap":false},"2.1.0-alpha.1":{"name":"djv","version":"2.1.0-alpha.1","description":"dynamic json-schema validator","main":"lib/djv.js","scripts":{"build":"webpack","changelog":"generate-changelog","docs":"jsdoc -r lib/ -d docs/auto","lint":"eslint ./lib","prepublishOnly":"npm run test && npm run build","test":"npm run test:jasmine && npm run lint","test:jasmine":"jasmine JASMINE_CONFIG_PATH=package.json"},"repository":{"type":"git","url":"git+https://github.com/korzio/djv.git"},"keywords":["json-schema","json","schema","validator","validate"],"author":{"name":"Alexander Korzhikov","email":"korzio@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/korzio/djv/issues"},"homepage":"https://github.com/korzio/djv#readme","devDependencies":{"babel-core":"^6.25.0","babel-loader":"^7.0.0","babel-preset-env":"^1.5.2","eslint":"^3.19.0","eslint-config-airbnb-base":"^11.2.0","eslint-plugin-import":"^2.7.0","generate-changelog":"^1.2.1","jasmine":"^2.5.2","jsdoc":"^3.5.5","json-schema-benchmark":"git+https://github.com/ebdrup/json-schema-benchmark.git","json-schema-test":"^1.3.0","json-schema-test-suite":"git+https://github.com/json-schema/JSON-Schema-Test-Suite.git","source-map-loader":"^0.2.1","webpack":"^3.0.0"},"optionalDependencies":{"@korzio/djv-draft-04":"^2.0.0"},"spec_dir":"test","spec_files":["**/*.js"],"stopSpecOnExpectationFailure":false,"random":false,"gitHead":"ac71f9970d579c1fe9e27358fefbb3c69901ceb7","dependencies":{"@korzio/djv-draft-04":"^2.0.0"},"_id":"djv@2.1.0-alpha.1","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"korzio","email":"korzio@gmail.com"},"dist":{"integrity":"sha512-qg9sYdI991ieD12Ju+7VYjz5YrUY+KdDI8qEJHWj66OfDUwfTN3Qyr4L3NxldI+QIV57/V5XwZ4X1LpGvXcRUA==","shasum":"44047fe886cfe61313f54e6b8226e05d86f00779","tarball":"https://registry.npmjs.org/djv/-/djv-2.1.0-alpha.1.tgz","fileCount":34,"unpackedSize":263369,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbL30tCRA9TVsSAnZWagAAT0YP/ReO3+qZKJur1oKH5Rmx\na+yzI44cODaDOyjTGMqZqNfihcblame5mwZSN1m471dkam6WhzRUl0yzusYl\neBaNyov/rvrBVZ3baNeO+FqvDY7ZJb9srGYS8nDYq6mgaYlTVtWJFD0SZtJ4\nvrseMkk/55fx6QXqbq4OlkIm5ab1eqEVLg24UDeihO7V+gnZwPaVwYBZiwOe\nltN6/LHZaItJpqg7lgClnDz3yNkiQ/cRxU2qXGjCv/Ntdf9QeepNsz/bQzSX\nwwfeodeCS/hjmDyXpeQBMPWJ6yx2ib4IgiTRBpCrFl0JXrio7tvRY7FshiKD\nnqk3UlYprA/xUDCStT77adXG2J7q62FSkcwuktdKd4Us4Fk4l4ijcmlpveTj\n0wnx2wfEcmUMkMHD1qXbu4FcF5baFe0L6k/yvXpIGAcmFgo3WGYvhaVv/BJ5\n6y90w3Q209qG0GAjC2YGlsEwywKF1RIYxeqwGuPrVphn9cfCdPTSfrKvNnEo\n/WryxwnNw1GfN2eJPwY5lxYMdnxVlIpBbJdEUrB63DyJlSEk+446kFp47ijA\nkEoj0zT1ORMNONeOjY77D2RTw54FeNXfRTQiF1sBKaSB2Hna7Wv7G3lzwPGg\nUuKdvly1vBKNY3pu+1uJJPViI3ZCxLnaGk8KCAZVRQvowZVMd4Tlnzq6g8bv\nLmlA\r\n=64OL\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCsAEc57ZTYjmG0EtVqQr7CpE1Ia5j4urX+/ibubvt4eQIhAIHUsmRUMZ0EwPmQM62rc9Mwgq265/eNRdXw5qply8Wb"}]},"maintainers":[{"name":"korzio","email":"korzio@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/djv_2.1.0-alpha.1_1529838893191_0.5404622682410245"},"_hasShrinkwrap":false},"2.1.0":{"name":"djv","version":"2.1.0","description":"dynamic json-schema validator","main":"lib/djv.js","scripts":{"build":"webpack","changelog":"generate-changelog","docs":"jsdoc -r lib/ -d docs/auto","lint":"eslint ./lib","prepublishOnly":"npm run test && npm run build","test":"npm run test:jasmine && npm run lint","test:jasmine":"jasmine JASMINE_CONFIG_PATH=package.json"},"repository":{"type":"git","url":"git+https://github.com/korzio/djv.git"},"keywords":["json-schema","json","schema","validator","validate"],"author":{"name":"Alexander Korzhikov","email":"korzio@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/korzio/djv/issues"},"homepage":"https://github.com/korzio/djv#readme","devDependencies":{"babel-core":"^6.25.0","babel-loader":"^7.0.0","babel-preset-env":"^1.5.2","eslint":"^3.19.0","eslint-config-airbnb-base":"^11.2.0","eslint-plugin-import":"^2.7.0","generate-changelog":"^1.2.1","jasmine":"^2.5.2","jsdoc":"^3.5.5","json-schema-benchmark":"git+https://github.com/ebdrup/json-schema-benchmark.git","json-schema-test":"^1.3.0","json-schema-test-suite":"git+https://github.com/json-schema/JSON-Schema-Test-Suite.git","source-map-loader":"^0.2.1","webpack":"^3.0.0"},"optionalDependencies":{"@korzio/djv-draft-04":"^2.0.0"},"spec_dir":"test","spec_files":["**/*.js"],"stopSpecOnExpectationFailure":false,"random":false,"gitHead":"455d6f4790c962f8570653cc4f06fc3e4b8a80c8","dependencies":{"@korzio/djv-draft-04":"^2.0.0"},"_id":"djv@2.1.0","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"korzio","email":"korzio@gmail.com"},"dist":{"integrity":"sha512-O03Cav/lYyLgwnZDcL0NtlZ3svQhxcu3/PWtKqGMtqFOKS6l8xAoQc5/jK7OUVFCt/ZSrk1263zSSUwe0sYSoQ==","shasum":"6b75592bb285d081a4f4e6e462871849bd6e6ee4","tarball":"https://registry.npmjs.org/djv/-/djv-2.1.0.tgz","fileCount":34,"unpackedSize":263795,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbL4P+CRA9TVsSAnZWagAAQr8P/ibo0tqLDedEErxlPu8H\neEPI+E297NG4fOSjf6tC+sX9hMifoprg8FXsZ+rLEDzGTmyeQAavJmBUHedg\nGwvBSPtZBnLci828NxwqIKIhmS8YfHbQLflxYfWrwa7lLw+693tszaZyab/i\nj13OS7kDHWQ0/fvIY6LAAJ0b8dKhWlfC4iaKTJalFRKg8+wA/Ym1Ul9Zys7z\ntvFAM30VqvIx1mcnrGO5G9YliAjC0z4iqoTr9AsX99hMGMuAdGoNKhdCJkjF\n5+Ci8n6ayN5Z29nuQh4NZdb2ocnkqPm65+5+nAZhaa2QZ/Pyh5t25Yb5bcoT\n9EEoA8+O7zfFPk0ew4CJQs86+57qKyAbAVQEz8Ro/+FxbuiCRNxpvp+wt0uI\npPb82lDxAIzdSQgNzE1z3lbgZy0hCm7gn39btlzWkSi1Jw6mAa66QxmnpDd2\nmM7sKcPq0cl5g+kYD4tkK/gjF9sxEeYHYPxFi8LxFfnlz6xUSFIWc/zaefOB\nmN2eKnFOkJUmdgueQAA+RhF0h3/83k4gTHchSKVGDFJcZHH3s7rcAysK3xQ6\nJR/4ZFE7G516w6KvJiFu4JF9jjNEeHWTevF+krdfLGk1MWC38+G376D1Cfzs\n70Pd0Z5iGQu4Ng9TlOoHf1iroIogXKR/2LMinszd0d0ihEKBowkmSjM5O18F\nxSPP\r\n=fSEW\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGeYuahZC6uYFe6MoRtqu+94Iyrv9HaPrqZkmxA4MNeyAiEAlI2iQu7AfLFtSM5P1SQvZ4agiQDvuOB/24/qt33u/b4="}]},"maintainers":[{"name":"korzio","email":"korzio@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/djv_2.1.0_1529840638112_0.39286658702406774"},"_hasShrinkwrap":false},"2.1.1-alpha.0":{"name":"djv","version":"2.1.1-alpha.0","description":"dynamic json-schema validator","main":"lib/djv.js","browser":"djv.js","scripts":{"build":"webpack","changelog":"generate-changelog","docs":"jsdoc -r lib/ -d docs/auto","lint":"eslint ./lib","prepublishOnly":"npm run test && npm run build","test":"npm run test:jasmine && npm run lint","test:jasmine":"jasmine JASMINE_CONFIG_PATH=package.json"},"repository":{"type":"git","url":"git+https://github.com/korzio/djv.git"},"keywords":["json-schema","json","schema","validator","validate"],"author":{"name":"Alexander Korzhikov","email":"korzio@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/korzio/djv/issues"},"homepage":"https://github.com/korzio/djv#readme","devDependencies":{"babel-core":"^6.25.0","babel-loader":"^7.0.0","babel-preset-env":"^1.5.2","eslint":"^3.19.0","eslint-config-airbnb-base":"^11.2.0","eslint-plugin-import":"^2.7.0","generate-changelog":"^1.2.1","jasmine":"^2.5.2","jsdoc":"^3.5.5","json-schema-benchmark":"git+https://github.com/ebdrup/json-schema-benchmark.git","json-schema-test":"^1.3.0","json-schema-test-suite":"git+https://github.com/json-schema/JSON-Schema-Test-Suite.git","source-map-loader":"^0.2.1","webpack":"^3.0.0"},"optionalDependencies":{"@korzio/djv-draft-04":"^2.0.1"},"spec_dir":"test","spec_files":["**/*.js"],"stopSpecOnExpectationFailure":false,"random":false,"gitHead":"de1f530e44bd011431214d6771af88206500bd74","dependencies":{"@korzio/djv-draft-04":"^2.0.1"},"_id":"djv@2.1.1-alpha.0","_npmVersion":"6.1.0","_nodeVersion":"10.6.0","_npmUser":{"name":"korzio","email":"korzio@gmail.com"},"dist":{"integrity":"sha512-BoyAD5nR+TuX2vdmDxxUldQAc0YDjX5U7RHToGWBf97sZ4g5vycwIJbBt1gwVoHGGzJlfP0TCrGS3b8y0IH56Q==","shasum":"98abd7da701a415f5eb9bd2d72786a550fd238bc","tarball":"https://registry.npmjs.org/djv/-/djv-2.1.1-alpha.0.tgz","fileCount":34,"unpackedSize":263949,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbjkXNCRA9TVsSAnZWagAAsa4QAJs5LATTVt+4sG8pAYgC\nsuNFPdzXDU5NqzeL9vfSYYNKf7te+14YR2kEqENkSMjxj9ZrFQSamzfetMk1\ncspD7b3euO6lO0R7wx5ymG7CB+n0I7YLl9R77iH1izlVFmtaZ0mRSojhkG8F\nqAEz47tD8FihXbE6xhpQx9I3WPeKOVzRVeN1HXEPbIpR6FvAZgwf6e2urB55\nlnaMmdRce5S107ap0aqckIFbO9fuxl3kYrwHC1LSKs0qGwaKvTbNKSrpxTIm\nNuW5HLG9l4D5DoBNp50o78IYIJrYbBe+CyY1hKDGnPD0VG1S6Miqfml5Ibty\nWkvnt5i9vJePsZL/3ZFrO8Kw6cuqNATyM0PV6aWtehV+ZKNZKr7ptg8MEcfO\n5/ZyoYOm1dafE1pfCfPrOx0eJvAL+c4FziKsYBAdc2KEOhdJBgTD42vnLEGN\n7GzGKB9/YMVV4TU3ZUAuCAXQ+nQnyirRKHrP9Gk9RYa3saEjhQ1e2j5tKPg1\n85MCaQPO6hmGQkEO3A0mhTqKTiBmNxeuN20pAGvDNn8GODRbwnkXBmE2p+TB\neFGhkXxGeU7/ojZ8pNtBdg5VAHmSd8Es4RZKy0HzRyUHARVipd4qJT0U9ysd\ny8yhJ9St2mMl6UfD8hwxbR+BljHeK8OzdFwYNvJIUeS54UMhTntM8KX1V2iB\nLJao\r\n=qumG\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCXXcTiUEIZ+d091wZmW/fGCOtk4S76Ypp7AIru0KzVtQIgAWj2Sspn60+Tl5hCwPAF837QMR0/pTxJlXVDSFFupSI="}]},"maintainers":[{"name":"korzio","email":"korzio@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/djv_2.1.1-alpha.0_1536050636823_0.4988632572419103"},"_hasShrinkwrap":false},"2.1.1":{"name":"djv","version":"2.1.1","description":"dynamic json-schema validator","main":"lib/djv.js","browser":"djv.js","scripts":{"build":"webpack","changelog":"generate-changelog","docs":"jsdoc -r lib/ -d docs/auto","lint":"eslint ./lib","prepublishOnly":"npm run test && npm run build","test":"npm run test:jasmine && npm run lint","test:jasmine":"jasmine JASMINE_CONFIG_PATH=package.json"},"repository":{"type":"git","url":"git+https://github.com/korzio/djv.git"},"keywords":["json-schema","json","schema","validator","validate"],"author":{"name":"Alexander Korzhikov","email":"korzio@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/korzio/djv/issues"},"homepage":"https://github.com/korzio/djv#readme","devDependencies":{"babel-core":"^6.25.0","babel-loader":"^7.0.0","babel-preset-env":"^1.5.2","eslint":"^3.19.0","eslint-config-airbnb-base":"^11.2.0","eslint-plugin-import":"^2.7.0","generate-changelog":"^1.2.1","jasmine":"^2.5.2","jsdoc":"^3.5.5","json-schema-benchmark":"git+https://github.com/ebdrup/json-schema-benchmark.git","json-schema-test":"^1.3.0","json-schema-test-suite":"git+https://github.com/json-schema/JSON-Schema-Test-Suite.git","source-map-loader":"^0.2.1","webpack":"^3.0.0"},"optionalDependencies":{"@korzio/djv-draft-04":"^2.0.1"},"spec_dir":"test","spec_files":["**/*.js"],"stopSpecOnExpectationFailure":false,"random":false,"gitHead":"02fe328c6aa88e61c909ed10147bae420a0728e1","dependencies":{"@korzio/djv-draft-04":"^2.0.1"},"_id":"djv@2.1.1","_npmVersion":"6.1.0","_nodeVersion":"10.6.0","_npmUser":{"name":"korzio","email":"korzio@gmail.com"},"dist":{"integrity":"sha512-zagE0FRg1XQB5gJK2I9x/pvZhzkUPNfk2CHT0OHTtFcgcvJrRPgfT0FQRIsgzqcWZWmo6uU7c9BawNWj1i/04Q==","shasum":"7d462f24780c90222bea59115d650d8510a5c38a","tarball":"https://registry.npmjs.org/djv/-/djv-2.1.1.tgz","fileCount":34,"unpackedSize":264234,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbjko4CRA9TVsSAnZWagAAyZcP/1QpwMEcn03sGcSXmMKW\niGYZ9AUbYTnntgyJmj/XmCiup43lOum74uEU7jzA5rNcm1kuMnD0bM0ClEdY\nqjmxFBZyL0BwJR8enPdOqpTLIBEImAHiCfllpkGtfcPSszLEgIhyzewsJcLe\nEPPKBr5+2pcFnMjL5UA9/ZFKBorgr6KezvYY2V6Ol6LU043VQ/pGmN/0rQcu\n+z2qgYt6tjhy6mEUgmfwXn/75H1QMRJpB6i1HfAzbVpdE65tUU/fVee4m1Te\nFp8WR35H8SJS9Tj0ookaKVSpRN+0fUNf3tZbr1cmUHt1wjouopF2okneyERv\nAy9iD340o3D3Rum/gufKhwy3JOBHyP0UUYXVrROhL9jvXn1cPXsBa1D/O+WU\naRLN+UfwQAFV9eI5zTaW4SxK6MNnAzj53IHEjjKf5AulkEkzEVM16ZY2uCuG\ntvIhgy1M7QjmtjYVHv7ViBJGyTkKpuUXQI50ZhVeX5/J0/N7CfRUVkJY5TPw\n2lt7cxdTKj75nFk2CBjrKQ1PXOqzdgBAY54c3rhWWabdgq5d8gp2VBWwEsxy\nnU8WJLATgN40nO/JgCYXFpLlWdqcTiChRznhZF0eojNoB1d39teK3r8IRU/y\nbhNeFtWn+cRkK0k+HDUwme+VwNYPFWHLWe9Eq1x13ThwyilqyJ07fHanfg6d\nvHmX\r\n=KAFf\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDWJGo6FsfwkC0vjoksB5ikJ/ImXZh7aRmvt78qvmZ4hwIhALwJnGBjJ407lm0lbldDdM80mtI6qKVbxHqcFIH+zRSE"}]},"maintainers":[{"name":"korzio","email":"korzio@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/djv_2.1.1_1536051768163_0.1745827019016024"},"_hasShrinkwrap":false},"2.1.2-alpha.0":{"name":"djv","version":"2.1.2-alpha.0","description":"dynamic json-schema validator","main":"lib/djv.js","browser":"djv.js","scripts":{"build":"webpack","changelog":"generate-changelog","docs":"jsdoc -r lib/ -d docs/auto","lint":"eslint ./lib","prepublishOnly":"npm run test && npm run build","test":"npm run test:jasmine && npm run lint","test:jasmine":"jasmine JASMINE_CONFIG_PATH=package.json"},"repository":{"type":"git","url":"git+https://github.com/korzio/djv.git"},"keywords":["json-schema","json","schema","validator","validate"],"author":{"name":"Alexander Korzhikov","email":"korzio@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/korzio/djv/issues"},"homepage":"https://github.com/korzio/djv#readme","devDependencies":{"babel-core":"^6.25.0","babel-loader":"^7.0.0","babel-preset-env":"^1.5.2","eslint":"^3.19.0","eslint-config-airbnb-base":"^11.2.0","eslint-plugin-import":"^2.7.0","generate-changelog":"^1.2.1","jasmine":"^2.5.2","jsdoc":"^3.5.5","json-schema-benchmark":"git+https://github.com/ebdrup/json-schema-benchmark.git","json-schema-test":"^1.3.0","json-schema-test-suite":"git+https://github.com/json-schema/JSON-Schema-Test-Suite.git","source-map-loader":"^0.2.1","webpack":"^3.0.0"},"optionalDependencies":{"@korzio/djv-draft-04":"^2.0.1"},"spec_dir":"test","spec_files":["**/*.js"],"stopSpecOnExpectationFailure":false,"random":false,"gitHead":"0c2b763ff99b50cf116548cda0eb45bed89c836b","dependencies":{"@korzio/djv-draft-04":"^2.0.1"},"_id":"djv@2.1.2-alpha.0","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"korzio","email":"korzio@gmail.com"},"dist":{"integrity":"sha512-wiXS5tYviL3tRbKSS71LzYlcMPOFx16y3pxce623STs55cRA/PIslYq+6Y0kny7vCTi6vtPtYjXXKaEls+5S3g==","shasum":"356dabcc96d69257f9ffc2a29b276227723f129f","tarball":"https://registry.npmjs.org/djv/-/djv-2.1.2-alpha.0.tgz","fileCount":34,"unpackedSize":264360,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcf6cKCRA9TVsSAnZWagAAM0YP+wVljAzqnaemp9/cdi70\nstPntWCMiunws5rtZ4pJ3t1bO4wxmxTzj/3yDeVQ/qz5RMTi6E9bZhh9sUj3\nfm35EaO1xkWF5CArcRvALExduq/BGQsDOMO3tv6dnj2YQ5FFAAdV3QDC7Nyt\n0/oUfSIyl7hvjyi/dt1EF48d65J9DT79JUlHlM1+qzUfN3FGaZYmk2bQYAaQ\naIogUaafEZBSsg26gXJvKWGLpTXYdhSRn8V589Saei6vTiA7mDDt9zplKvkp\nDx8e6Dhp/aRTZGa4Hg4/Bc519ldahsfR/RE+bg8zIEsCKf80pja92Un9OxU9\n0Qz65VlWV6nNAUnanFJAT39VELZRkqI7K/gpzqTeS4/CVdkDZJ4+Ne3hezfC\nZF2J/MCLMxTCBw/1L9oI6UBi/Imfx6lexAaKRVfbgavZu1DyE7lG9NT7+POP\nRs3dVDPnLZo27wHFb/p9yrrQtNx4TtCDFKyz4v0XMumKLkEAB+oliUBll15g\nRdLO9TzwGGJNsosgPhCCy4mtlk/yGGrfu2J+4IEKFK9fMH/E05d3khwdA/BE\nkCmSINk2BEaX0w8GnvqNxd1bPMxWknqJO2jRXgDPNVrta43MhD3CSXFd+K5x\nPfxlBdjjFRaAOkXakl2k/ruhoyBhfqrxFH4FEfz/CJP9TxKi1YKCn40Yh83o\ntjtR\r\n=jBEZ\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCVqB0lDpzHTeIf501KukYu9/IkHF9pY0yjVBjVUBg/2wIhAKUp/wKAgfM3SdtoKq+Lb5VfN843MAwb68KRvS3VHLQn"}]},"maintainers":[{"name":"korzio","email":"korzio@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/djv_2.1.2-alpha.0_1551869705841_0.1364009933708359"},"_hasShrinkwrap":false},"2.1.2":{"name":"djv","version":"2.1.2","description":"dynamic json-schema validator","main":"lib/djv.js","browser":"djv.js","scripts":{"build":"webpack","changelog":"generate-changelog","docs":"jsdoc -r lib/ -d docs/auto","lint":"eslint ./lib","prepublishOnly":"npm run test && npm run build","test":"npm run test:jasmine && npm run lint","test:jasmine":"jasmine JASMINE_CONFIG_PATH=package.json"},"repository":{"type":"git","url":"git+https://github.com/korzio/djv.git"},"keywords":["json-schema","json","schema","validator","validate"],"author":{"name":"Alexander Korzhikov","email":"korzio@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/korzio/djv/issues"},"homepage":"https://github.com/korzio/djv#readme","devDependencies":{"babel-core":"^6.25.0","babel-loader":"^7.0.0","babel-preset-env":"^1.5.2","eslint":"^3.19.0","eslint-config-airbnb-base":"^11.2.0","eslint-plugin-import":"^2.7.0","generate-changelog":"^1.2.1","jasmine":"^2.5.2","jsdoc":"^3.5.5","json-schema-benchmark":"git+https://github.com/ebdrup/json-schema-benchmark.git","json-schema-test":"^1.3.0","json-schema-test-suite":"git+https://github.com/json-schema/JSON-Schema-Test-Suite.git","source-map-loader":"^0.2.1","webpack":"^3.0.0"},"optionalDependencies":{"@korzio/djv-draft-04":"^2.0.1"},"spec_dir":"test","spec_files":["**/*.js"],"stopSpecOnExpectationFailure":false,"random":false,"gitHead":"5bc7df798bb007ee4a709ad0c3868e1f92de0362","dependencies":{"@korzio/djv-draft-04":"^2.0.1"},"_id":"djv@2.1.2","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"korzio","email":"korzio@gmail.com"},"dist":{"integrity":"sha512-ltQSINn+7aMTp7pKeQpfZg2ACd/Gy6VrL3LYuT25/plwPBb7xlGOekr463Luqn816AWJLuP7KZQGFct2JICyeA==","shasum":"5bf4344cdd5f7df82764d99a4f0684899d570216","tarball":"https://registry.npmjs.org/djv/-/djv-2.1.2.tgz","fileCount":34,"unpackedSize":264666,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcf6o6CRA9TVsSAnZWagAAN3QQAKOCCqiXZwv76GgCzzGR\nLzJXtVD/ImEPfJ2T9qz1y/yOFcM3Jvfa+Lr7d2SnnCUsgF7bykwsoaNrlqX8\nabGZXrk9JiOM7qD16P8sFcSjMf1Fd5LbAmXc/Fq1kDfFyTIS75IxxpMGdbsm\njAD7KTb3K22IT00Kt/0Vtmmi3apAR4Z5k5rd/AQCK5pm8Z2jTFXfjiZKp/F4\nxn53AJjpewscqPg8ZWNnQpCc10RGUsf+4/+3aJWut+rhhVnWFzso411hKHc2\nOJ0dAozSZQ1stk4OsniA3BZFVnnZhU3GeAK4Y578ggVcHHmZPkp/ZbJSfRMj\nG9JrBe2Z898sQM2dFeH8NG1gcsLkM9Q36KY7slClttlTjS0s/x8fWv318AA7\nBq9xx0HkqHIHpRr2f4w7OlLPvAGr4W7P2udhI/+R6dI9OX7pFWR+Uxm13QuR\nobdMDX7Gr1oKrUxvcP7FyF+B7IYieoYuL1OujoCuvP9+ktpApVDEHsu/S53X\nh/rHAd4BwDbJdiWRrLOj3vWpU/cxMveREYh78mqfaDSX3PieVlpe19qj03Fe\nZ88ccM3SIQLwao5GgzA2w4hDJY/uA+uFfCXxBeycDxBmdW/6n9cZHQsTQSyK\nl6Rd9+K8fIsxkwrBNjC32aZZTpIdShzpQSct3o7Mn8YojL9qkJqfHAdzKbYo\n8rIO\r\n=153M\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDsAYVUFjekNVy4gQSqrgecqxAvsqOOFaooYDZvy1bGagIhAOEyTQqXigmVmU5jDfra+jlXD9hGDX2lPZqHbdP7zXrY"}]},"maintainers":[{"name":"korzio","email":"korzio@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/djv_2.1.2_1551870522309_0.4935033479079194"},"_hasShrinkwrap":false},"2.1.3-alpha.0":{"name":"djv","version":"2.1.3-alpha.0","description":"dynamic json-schema validator","main":"lib/djv.js","browser":"djv.js","scripts":{"build":"webpack","changelog":"generate-changelog","docs":"jsdoc -r lib/ -d docs/auto","lint":"eslint ./lib","prepublishOnly":"npm run test && npm run build","test":"npm run test:jasmine && npm run lint","test:jasmine":"jasmine JASMINE_CONFIG_PATH=package.json"},"repository":{"type":"git","url":"git+https://github.com/korzio/djv.git"},"keywords":["json-schema","json","schema","validator","validate"],"author":{"name":"Alexander Korzhikov","email":"korzio@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/korzio/djv/issues"},"homepage":"https://github.com/korzio/djv#readme","devDependencies":{"babel-core":"^6.25.0","babel-loader":"^7.0.0","babel-preset-env":"^1.5.2","eslint":"^3.19.0","eslint-config-airbnb-base":"^11.2.0","eslint-plugin-import":"^2.7.0","generate-changelog":"^1.2.1","jasmine":"^2.5.2","jsdoc":"^3.5.5","json-schema-benchmark":"git+https://github.com/ebdrup/json-schema-benchmark.git","json-schema-test":"^1.3.0","json-schema-test-suite":"git+https://github.com/json-schema/JSON-Schema-Test-Suite.git","source-map-loader":"^0.2.1","webpack":"^3.0.0"},"optionalDependencies":{"@korzio/djv-draft-04":"^2.0.1"},"spec_dir":"test","spec_files":["**/*.js"],"stopSpecOnExpectationFailure":false,"random":false,"gitHead":"3d7a0814876bcc0a4605e9c06a59f8c73df6258b","dependencies":{"@korzio/djv-draft-04":"^2.0.1"},"_id":"djv@2.1.3-alpha.0","_npmVersion":"6.4.1","_nodeVersion":"8.16.0","_npmUser":{"name":"korzio","email":"korzio@gmail.com"},"dist":{"integrity":"sha512-vrKAFr/wbhMjfqo+eoXZRIx/6YbN1DSZlxUsE3tHDPYB0zWRtOBhqmKbcgCjfP3+KevqidBGn2jNRnqRhjIzYg==","shasum":"554daa91f22e0e8e9f48c9550766a6c07e8ce180","tarball":"https://registry.npmjs.org/djv/-/djv-2.1.3-alpha.0.tgz","fileCount":34,"unpackedSize":266903,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc6Vx0CRA9TVsSAnZWagAAkmUP/AlTmVYDDaZRFt+LyqML\nnWcqzzf+Owa5zYlgzBi6KWheycFj9MHUFEUsaSOEY6h/bFVrItzQr6DBLpAG\n4PhGQ+Mbk/Gih7MSMnPxqlh/FqC79wnUaLgG1fQ/OOncn07/kBTOev2Xq6EX\nkcZxnMu74Xg8zrhru29DNuttsSW1vP++/HTuOz/WkbGjuuCeyv7+uxwrJklD\nON+4fnt9a7X3Lp1AmambkpJje76RBiVTaLYGQOavg2lsMMLG5iTnSQakZOQc\n6auCuLEYjRDOjs1R1L5y3kApITwNUJtzfC5+nKFIkxzGRzi+4kZ09dqLmmHZ\nhbmgukhdKxF6UqsldSXGoXT8hMU7x7Y/YDOp+scu1CgPRGoqzUtk4pR9N2QF\nvBQv4TIUwyapp91YoMAK4bBhVz4Rzz9rMWbLhnVjy2bMjcYieCSPSL78yFcC\naT3720Jt08bDb3l24QG0irltGOozNCdjWb1crhJ33YCzlWl8ZuqwhdDj/vPg\nMHHPY1Lanr008DpDmz9teFZwKh+KmXHF7M/Y0AHqZvXx9uRPJnB+o9Pna+Pi\n+5wRyf+q+UEGRz353+HVNtusUsoWriSwocuVpO2Fc3GbZFWj4LOIiiPN7cEe\nbl29O6bOx6FjQ6/Kkun5+yI03sJNe6rcDUiXbpgrmFqKp9qqmldngTPHlFvE\n5v2g\r\n=OH/v\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD5AyOgqV1SxXNY/NrZWFzTztl8eqfjSAFhevBkd/ZX6AIhAINWjEGMmcaeyD7o7lGHtyOqBDa28DcqwkN/6de+FObi"}]},"maintainers":[{"name":"korzio","email":"korzio@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/djv_2.1.3-alpha.0_1558797427759_0.7999343944632948"},"_hasShrinkwrap":false},"2.1.4-alpha.0":{"name":"djv","version":"2.1.4-alpha.0","description":"dynamic json-schema validator","main":"lib/djv.js","browser":"djv.js","scripts":{"build":"webpack","changelog":"generate-changelog","docs":"jsdoc -r lib/ -d docs/auto","lint":"eslint ./lib","prepublishOnly":"npm run test && npm run build","test":"npm run test:jasmine && npm run lint","test:jasmine":"jasmine JASMINE_CONFIG_PATH=package.json"},"repository":{"type":"git","url":"git+https://github.com/korzio/djv.git"},"keywords":["json-schema","json","schema","validator","validate"],"author":{"name":"Alexander Korzhikov","email":"korzio@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/korzio/djv/issues"},"homepage":"https://github.com/korzio/djv#readme","devDependencies":{"babel-core":"^6.25.0","babel-loader":"^7.0.0","babel-preset-env":"^1.5.2","eslint":"^4.19.1","eslint-config-airbnb-base":"^11.2.0","eslint-plugin-import":"^2.7.0","generate-changelog":"^1.2.1","jasmine":"^2.5.2","jsdoc":"^3.5.5","json-schema-benchmark":"git+https://github.com/ebdrup/json-schema-benchmark.git","json-schema-test":"^1.3.0","json-schema-test-suite":"git+https://github.com/json-schema/JSON-Schema-Test-Suite.git","source-map-loader":"^0.2.1","webpack":"^3.0.0"},"optionalDependencies":{"@korzio/djv-draft-04":"^2.0.1"},"spec_dir":"test","spec_files":["**/*.js"],"stopSpecOnExpectationFailure":false,"gitHead":"ce194761e9ede59fed09875e527e2f3a8d94915d","dependencies":{"@korzio/djv-draft-04":"^2.0.1"},"_id":"djv@2.1.4-alpha.0","_nodeVersion":"14.4.0","_npmVersion":"6.14.5","dist":{"integrity":"sha512-LwTAyeNs5ChUibit9rGUBITBdWZuMNKV8Hw2YYLJOsoPfvLSTB3obeObi8+9h8lZ7spDiubH4VW4v2IMJ+sNRA==","shasum":"ba06873bfaa2344ba22dee66678a1bc89621a715","tarball":"https://registry.npmjs.org/djv/-/djv-2.1.4-alpha.0.tgz","fileCount":34,"unpackedSize":268081,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf6G62CRA9TVsSAnZWagAAqHMQAJypNyswmtyFuso6i/S4\n9PUoj6fgJUFHRsuWVmqYBwry/5nmfxe/cRJZZdwC0OVOOwdC+4M13Wtr1gXV\nkfT2dkJszI45uGPuKWP3NgnZVkLK9TLZNoXVPvb8eYugCjXcLRa/6W/3mTP0\nqTVC0xaV7ssXLNeM+t1DgwK9AlaYaoKzeLR0jT/6LsXc7fcJcfrRSBJ7Nv5U\nJUEOuXvRY3OMiayQrYNbW97tR2cOC3WnImuXlhokkyZLyrksGCpHHmaTZ34r\nNTAyce8tIExCudZT75BmW9cu3OU92Vtbq+9Ndcx7Fr5DJKzC+bJYK5+Gw8kn\nx6ShEWvR74IItFgNOS368iHz0q4FZmsZLc/nMpYIu7hG8PV+23v7TA4lqdFN\nYm+AMjHSPL3Q5DIwEFlBtOptpIbC4VR94PgqQRxxJtcr22mq3F5w4PcCeBLl\nzRordKUP4HIw7yp9GqK9fW80yuXaHYwVIG/4joaJbcRcbIMkURFwQl3oIJh2\nN7xMsOa2Rzm0A8XQ/sqF8VXautYlIPVZ606MumrwdMZl3NpyaqfnY28Y1unD\nNpriVXYo3CDD4lgpVgCWi/iknhpyjFi0s2/cT4vHdotDFIx53ljDXhiNNyyX\nSHFkMpL6B1kwsr7Fv+W0VQOqqRg2d8O61ROsegEBjAeGBw3l39KjnHM8W7x4\n/FmC\r\n=qFNE\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBRTes41lcp/SxZoVgBYWc0YXZQfTvl5DFEHhjwqBRApAiAWcRFi3hhgx0tBF10Z+yEoQL+YM55S1l3i+1UeMmzljg=="}]},"_npmUser":{"name":"korzio","email":"korzio@gmail.com"},"directories":{},"maintainers":[{"name":"korzio","email":"korzio@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/djv_2.1.4-alpha.0_1609068213864_0.4978971318771459"},"_hasShrinkwrap":false},"2.1.4":{"name":"djv","version":"2.1.4","description":"dynamic json-schema validator","main":"lib/djv.js","browser":"djv.js","scripts":{"build":"webpack","changelog":"generate-changelog","docs":"jsdoc -r lib/ -d docs/auto","lint":"eslint ./lib","prepublishOnly":"npm run test && npm run build","test":"npm run test:jasmine && npm run lint","test:jasmine":"jasmine JASMINE_CONFIG_PATH=package.json"},"repository":{"type":"git","url":"git+https://github.com/korzio/djv.git"},"keywords":["json-schema","json","schema","validator","validate"],"author":{"name":"Alexander Korzhikov","email":"korzio@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/korzio/djv/issues"},"homepage":"https://github.com/korzio/djv#readme","devDependencies":{"babel-core":"^6.25.0","babel-loader":"^7.0.0","babel-preset-env":"^1.5.2","eslint":"^4.19.1","eslint-config-airbnb-base":"^11.2.0","eslint-plugin-import":"^2.7.0","generate-changelog":"^1.2.1","jasmine":"^2.5.2","jsdoc":"^3.5.5","json-schema-benchmark":"git+https://github.com/ebdrup/json-schema-benchmark.git","json-schema-test":"^1.3.0","json-schema-test-suite":"git+https://github.com/json-schema/JSON-Schema-Test-Suite.git","source-map-loader":"^0.2.1","webpack":"^3.0.0"},"optionalDependencies":{"@korzio/djv-draft-04":"^2.0.1"},"spec_dir":"test","spec_files":["**/*.js"],"stopSpecOnExpectationFailure":false,"gitHead":"a7228513777310c1b2e0aeaab19f301aa31e866f","dependencies":{"@korzio/djv-draft-04":"^2.0.1"},"_id":"djv@2.1.4","_nodeVersion":"14.4.0","_npmVersion":"6.14.5","dist":{"integrity":"sha512-giDn+BVbtLlwtkvtcsZjbjzpALHB77skiv3FIu6Wp8b5j8BunDcVJYH0cGUaexp6s0Sb7IkquXXjsLBJhXwQpA==","shasum":"a6bde1a87184be4f10640184de76079c1423023f","tarball":"https://registry.npmjs.org/djv/-/djv-2.1.4.tgz","fileCount":34,"unpackedSize":268388,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf6HiOCRA9TVsSAnZWagAAIucP/1+VFAn5k0qV4BB1yk6D\noNmHlYTo4FVas5y10QLEcOwde2ZhAG3tcRHvtvWrds/3qR+PYnqRdUIkquqj\nJxjNmw0qT35ggtKBAKUJH5NDrjK2BCmRZfJJEHr9nzKZaH1R2/rmSEnTOz9e\nqzJqzdsKWudFOKcCoRnhbvgoeROWKOKlv4r1Dv2iztQaOER0o1BUtECHWZiF\nxnqUfLqrU+SO5U9hEBX85hhqEa45QdSk0GdWWaDylG5WsaFR2DiF49DUaUOT\n8lB6QTvbILDYjSXvQnUXhoVjeqhnzp+gDE+Qyjqqibg2qdLWZenpUjzIFKL3\ntZbb7a134C1jkoaPkpL4z+huuoUFmtf+O52Ej+UldwQ1VIMSeufSsRwdKzQl\npHTW2Ukz9A1UVIMvISY5IWD7V/D1gc0Pp7ufWJmLe6pr+qcdawaDkz4dxapz\nSqkjz1tYUB4oDf0n6Vm2KlqlCt8mVstN0G2wxzUr72N7YkwfbHEPOR5V6wgv\n7Jb6DwYfztD3DVaMq2xd5ORbjlYmgEBfw9MWnd+2ccxT4ONC3jzAm12+gw6a\nr9Jx5NZW0rDwFOl72C3SHz7gV/5vQni7Dl0U5c8jWvtcSL5boNFSzoRNAeR7\nauSFrIa45QWNzr54K8VrvfNfLEsZCbPpH550LWZ3G9q4Sbj+ocpcXwOouela\ncr9k\r\n=UPtT\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAMhhXl9QOW6rBO3OwMspBHkdNap11Q44QFzqIfIEh6AAiEA0Ui7u0pTxuOMGCHfXqbAC76K2rCHYu47YpxpNk74yKE="}]},"_npmUser":{"name":"korzio","email":"korzio@gmail.com"},"directories":{},"maintainers":[{"name":"korzio","email":"korzio@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/djv_2.1.4_1609070734185_0.255789571466819"},"_hasShrinkwrap":false}},"homepage":"https://github.com/korzio/djv#readme","keywords":["json-schema","json","schema","validator","validate"],"repository":{"type":"git","url":"git+https://github.com/korzio/djv.git"},"author":{"name":"Alexander Korzhikov","email":"korzio@gmail.com"},"bugs":{"url":"https://github.com/korzio/djv/issues"},"license":"MIT","readmeFilename":"README.md","users":{"oleg_tsyba":true,"sinfex":true,"deividasjackus":true,"cmbirk":true}}