{"maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"keywords":["type","types","check","checking","guard","guards","assert","assertion","predicate","predicates","is","validate","validation","utility","util","typeof","instanceof","object"],"dist-tags":{"version-0-28":"0.28.2","latest":"3.1.1"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"description":"Function argument validation for humans","readme":"<p align=\"center\">\n\t<img src=\"media/logo.png\" width=\"300\">\n\t<br>\n\t<br>\n</p>\n\n[![Coverage Status](https://codecov.io/gh/sindresorhus/ow/branch/main/graph/badge.svg)](https://codecov.io/gh/sindresorhus/ow)\n\n> Function argument validation for humans\n\n## Why use Ow?\n\nTypeScript only validates types at compile time. Once compiled, your program can still receive unexpected data at runtime from:\n\n- Function arguments receiving untrusted input\n- CLI arguments and flags\n- Environment variables and configuration files\n\nFor complex schema validation (API responses, database queries, JSON parsing), use [`zod`](https://github.com/colinhacks/zod) instead.\n\nOw provides runtime validation that:\n\n- **Catches errors early** - Fail fast with descriptive error messages instead of cryptic runtime errors\n- **Documents expectations** - Make your code self-documenting by explicitly stating what you expect\n- **Simplifies debugging** - Spend less time tracking down type-related bugs in production\n- **Works anywhere** - Use the same validation on the server, in the browser, or in CLI tools\n- **Provides type guards** - Narrow TypeScript types for safer code after validation\n\n## Highlights\n\n- Expressive chainable API\n- Lots of built-in validations\n- Supports custom validations\n- Automatic label inference in Node.js\n- Written in TypeScript\n\n## Install\n\n```sh\nnpm install ow\n```\n\n## Usage\n\n```ts\nimport ow from 'ow';\n\nconst unicorn = input => {\n\tow(input, ow.string.minLength(5));\n\n\t// …\n};\n\nunicorn(3);\n//=> ArgumentError: Expected `input` to be of type `string` but received type `number`\n\nunicorn('yo');\n//=> ArgumentError: Expected string `input` to have a minimum length of `5`, got `yo`\n```\n\n## Practical Examples\n\n### Function Arguments\n\n```ts\nimport ow from 'ow';\n\nconst resize = (width: unknown, height: unknown) => {\n\tow(width, 'width', ow.number.positive.integer);\n\tow(height, 'height', ow.number.positive.integer);\n\t\n\t// Process the image...\n};\n\nresize(640, 480); // ✓\nresize(-100, 200); // ✗ ArgumentError: Expected `width` to be a positive number\nresize(640, \"480\"); // ✗ ArgumentError: Expected `height` to be of type `number`\n```\n\n### Configuration Validation\n\n```ts\nimport ow from 'ow';\n\nconst config = {\n\tport: process.env.PORT,\n\tapiKey: process.env.API_KEY,\n\tnodeEnv: process.env.NODE_ENV\n};\n\n// Validate configuration at startup\now(config.port, ow.string.numeric);\now(config.apiKey, ow.string.minLength(32));\now(config.nodeEnv, ow.string.oneOf(['development', 'production', 'test']));\n\n// Your app won't start with invalid configuration\nconst port = parseInt(config.port, 10);\n```\n\n### Constructor Validation\n\n```ts\nimport ow from 'ow';\n\nclass User {\n\tconstructor(name: string, email: string, age?: number) {\n\t\tow(name, ow.string.nonEmpty);\n\t\tow(email, ow.string.email);\n\t\tow(age, ow.optional.number.integer.positive.lessThanOrEqual(120));\n\t\t\n\t\tthis.name = name;\n\t\tthis.email = email;\n\t\tthis.age = age;\n\t}\n}\n\nnew User('Jane', 'jane@example.com', 25); // ✓\nnew User('', 'jane@example.com'); // ✗ ArgumentError: Expected string to not be empty\n```\n\n### Utility Functions\n\n```ts\nimport ow from 'ow';\n\nconst delay = (milliseconds: unknown) => {\n\tow(milliseconds, ow.number.positive.integer);\n\treturn new Promise(resolve => setTimeout(resolve, milliseconds));\n};\n\nconst getRandomInteger = (min: number, max: number) => {\n\tow(min, ow.number.integer);\n\tow(max, ow.number.integer.greaterThanOrEqual(min));\n\treturn Math.floor(Math.random() * (max - min + 1)) + min;\n};\n```\n\n### CLI Arguments\n\n```ts\nimport ow from 'ow';\n\nconst cli = (arguments_: string[]) => {\n\tconst [command, ...options] = arguments_;\n\t\n\tow(command, ow.string.oneOf(['build', 'test', 'deploy']));\n\t\n\tif (command === 'deploy') {\n\t\tconst [environment] = options;\n\t\tow(environment, ow.string.oneOf(['staging', 'production']));\n\t}\n\t\n\t// Proceed with validated command\n};\n```\n\n> [!NOTE]\n> If you intend on using `ow` for development purposes only, use `import ow from 'ow/dev-only'` instead of the usual `import ow from 'ow'`, and run the bundler with `NODE_ENV` set to `production` (e.g. `$ NODE_ENV=\"production\" parcel build index.js`). This will make `ow` automatically export a shim when running in production, which should result in a significantly lower bundle size.\n\n## API\n\n[Complete API documentation](https://sindresorhus.com/ow/)\n\nOw includes TypeScript type guards, so using it will narrow the type of previously-unknown values.\n\n```ts\nfunction (input: unknown) {\n\tinput.slice(0, 3) // Error, Property 'slice' does not exist on type 'unknown'\n\n\tow(input, ow.string)\n\n\tinput.slice(0, 3) // OK\n}\n```\n\n### ow(value, predicate)\n\nTest if `value` matches the provided `predicate`. Throws an `ArgumentError` if the test fails.\n\n### ow(value, label, predicate)\n\nTest if `value` matches the provided `predicate`. Throws an `ArgumentError` with the specified `label` if the test fails.\n\nThe `label` is automatically inferred in Node.js but you can override it by passing in a value for `label`. The automatic label inference doesn't work in the browser.\n\n### ow.isValid(value, predicate)\n\nReturns `true` if the value matches the predicate, otherwise returns `false`.\n\n### ow.validate(value, predicate)\n\nValidate a value against a predicate without throwing. Returns a result object with type narrowing.\n\n```ts\nimport ow, {type ValidateResult} from 'ow';\n\nconst result = ow.validate(value, ow.string);\n\nif (!result.success) {\n\tconsole.error(result.error.message);\n\treturn;\n}\n\n// result.value is now typed as string\nconsole.log(result.value.length);\n```\n\nThe return type is a discriminated union:\n\n```ts\ntype ValidateResult<T> =\n\t| {success: true; value: T}\n\t| {success: false; error: ArgumentError};\n```\n\nThis allows TypeScript to narrow the type based on the `success` property. When `success` is `true`, you can access `value`. When `success` is `false`, you can access `error`.\n\n### ow.validate(value, label, predicate)\n\nValidate a value against a predicate with a custom label without throwing.\n\n```ts\nconst result = ow.validate(username, 'username', ow.string.minLength(3));\n\nif (!result.success) {\n\tconsole.error(result.error.message);\n\t//=> Expected string `username` to have a minimum length of `3`, got `ab`\n}\n```\n\n### ow.isPredicate(value)\n\nTest if the provided value is an Ow predicate.\n\nUseful for building higher-order functions that need to distinguish between predicates and other values.\n\n### ow.create(predicate)\n\nCreate a reusable validator.\n\n```ts\nconst checkPassword = ow.create(ow.string.minLength(6));\n\nconst password = 'foo';\n\ncheckPassword(password);\n//=> ArgumentError: Expected string `password` to have a minimum length of `6`, got `foo`\n```\n\n### ow.create(label, predicate)\n\nCreate a reusable validator with a specific `label`.\n\n```ts\nconst checkPassword = ow.create('password', ow.string.minLength(6));\n\ncheckPassword('foo');\n//=> ArgumentError: Expected string `password` to have a minimum length of `6`, got `foo`\n```\n\n### ow.any(...predicate[])\n\nReturns a predicate that verifies if the value matches at least one of the given predicates.\n\n```ts\now('foo', ow.any(ow.string.maxLength(3), ow.number));\n```\n\n### ow.optional.{type}\n\nMakes the predicate optional. An optional predicate means that it doesn't fail if the value is `undefined`.\n\n```ts\now(1, ow.optional.number);\n\now(undefined, ow.optional.number);\n```\n\n### ow.nullable.{type}\n\nMakes the predicate nullable. A nullable predicate means that it doesn't fail if the value is `null`.\n\n```ts\now(1, ow.nullable.number);\n\now(null, ow.nullable.number);\n```\n\nThis is useful for validating inputs from external sources (like GraphQL APIs) that use `null` to represent absent values. We encourage using `undefined` over `null` in your own APIs, but recognize you can't control what external APIs return. [See our recommendation against using `null`](https://github.com/sindresorhus/meta/issues/7).\n\n### ow.absent.{type}\n\nMarks properties in object shapes as absent, meaning the key can be completely missing from the object. This is different from `optional` which allows both missing keys AND `undefined` values.\n\n```ts\ntype Hotdog = {\n\tlength: number;\n\ttopping: string;\n};\n\nfunction patchHotdog(hotdog: Hotdog, patchBody: unknown): Hotdog {\n\tow(\n\t\tpatchBody,\n\t\tow.object.exactShape({\n\t\t\tlength: ow.absent.number,\n\t\t\ttopping: ow.absent.string,\n\t\t}),\n\t);\n\n\treturn {\n\t\t...hotdog,\n\t\t...patchBody, // Type-safe object spreading\n\t};\n}\n\nconst dog = {length: 10, topping: 'mustard'};\n\npatchHotdog(dog, {length: 12}); // ✓ Partial update\npatchHotdog(dog, {}); // ✓ Empty update\npatchHotdog(dog, {length: 12, topping: 'ketchup'}); // ✓ Full update\npatchHotdog(dog, {length: 'twelve'}); // ✗ Wrong type\n```\n\nThis is particularly useful for:\n- Patch/update operations where missing keys mean \"don't change\"\n- Partial form submissions\n- Configuration merging where only specified keys should be overridden\n\n**Key differences from `optional`:**\n\nAt runtime, both modifiers allow missing keys. The difference is in how they handle undefined values and type inference:\n\n```ts\n// optional: allows missing keys AND undefined values\n// Type inference: { name: string | undefined }\now({}, ow.object.exactShape({\n\tname: ow.optional.string // ✓ Valid - missing key\n}));\now({name: undefined}, ow.object.exactShape({\n\tname: ow.optional.string // ✓ Valid - undefined value\n}));\n\n// absent: allows missing keys but NOT undefined values\n// Type inference: { name?: string }\now({}, ow.object.exactShape({\n\tname: ow.absent.string // ✓ Valid - missing key\n}));\now({name: undefined}, ow.object.exactShape({\n\tname: ow.absent.string // ✗ Invalid - undefined not allowed\n}));\n```\n\nThe key distinction: use `.absent` when missing keys mean \"don't change\" (patch operations), and `.optional` when undefined is a valid value.\n\n### ow.{type}\n\nAll the below types return a predicate. Every predicate has some extra operators that you can use to test the value even more fine-grained.\n\n[Predicate docs.](https://sindresorhus.com/ow/types/Predicates.html)\n\n#### Primitives\n\n- `undefined`\n- `null`\n- `string`\n- `number`\n- `boolean`\n- `symbol`\n\n#### Built-in types\n\n- `array`\n- `function`\n- `object`\n- `regExp`\n- `date`\n- `error`\n- `promise`\n- `map`\n- `set`\n- `weakMap`\n- `weakSet`\n\n#### Typed arrays\n\n- `int8Array`\n- `uint8Array`\n- `uint8ClampedArray`\n- `int16Array`\n- `uint16Array`\n- `int32Array`\n- `uint32Array`\n- `float32Array`\n- `float64Array`\n\n#### Structured data\n\n- `arrayBuffer`\n- `dataView`\n- `sharedArrayBuffer`\n\n#### Miscellaneous\n\n- `nan`\n- `nullOrUndefined`\n- `iterable`\n- `typedArray`\n\n### Predicates\n\nThe following predicates are available on every type.\n\n#### not\n\nInverts the following predicate.\n\n```ts\now(1, ow.number.not.infinite);\n\now('', ow.string.not.empty);\n//=> ArgumentError: Expected string to not be empty, got ``\n```\n\n#### is(fn)\n\nUse a custom validation function. Return `true` if the value matches the validation, return `false` if it doesn't.\n\n```ts\now(1, ow.number.is(x => x < 10));\n\now(1, ow.number.is(x => x > 10));\n//=> ArgumentError: Expected `1` to pass custom validation function\n```\n\nInstead of returning `false`, you can also return a custom error message which results in a failure.\n\n```ts\nconst greaterThan = (max: number, x: number) => {\n\treturn x > max || `Expected \\`${x}\\` to be greater than \\`${max}\\``;\n};\n\now(5, ow.number.is(x => greaterThan(10, x)));\n//=> ArgumentError: Expected `5` to be greater than `10`\n```\n\n#### validate(fn)\n\nUse a custom validation object. The difference with `is` is that the function should return a validation object, which allows more flexibility.\n\n```ts\now(1, ow.number.validate(value => ({\n\tvalidator: value > 10,\n\tmessage: `Expected value to be greater than 10, got ${value}`\n})));\n//=> ArgumentError: (number) Expected value to be greater than 10, got 1\n```\n\nYou can also pass in a function as `message` value which accepts the label as argument.\n\n```ts\now(1, 'input', ow.number.validate(value => ({\n\tvalidator: value > 10,\n\tmessage: label => `Expected ${label} to be greater than 10, got ${value}`\n})));\n//=> ArgumentError: Expected number `input` to be greater than 10, got 1\n```\n\n#### custom(fn)\n\nUse a custom validation function that throws an error when the validation fails. This is useful for reusing existing validators or composing complex validations.\n\n```ts\nimport ow from 'ow';\n\ninterface User {\n\tname: string;\n\tage: number;\n}\n\nconst validateUser = (user: User) => {\n\tow(user.name, 'User.name', ow.string.nonEmpty);\n\tow(user.age, 'User.age', ow.number.integer.positive);\n};\n\now([{name: 'Alice', age: 30}], ow.array.ofType(ow.object.custom(validateUser)));\n```\n\nThis is particularly useful when you have existing validation functions and want to compose them:\n\n```ts\nimport ow from 'ow';\n\ninterface Animal {\n\ttype: string;\n\tweight: number;\n}\n\nconst validateAnimal = (animal: Animal) => {\n\tow(animal.type, 'Animal.type', ow.string.oneOf(['dog', 'cat', 'elephant']));\n\tow(animal.weight, 'Animal.weight', ow.number.finite.positive);\n};\n\nconst animals: Animal[] = [\n\t{type: 'dog', weight: 5},\n\t{type: 'cat', weight: Number.POSITIVE_INFINITY}\n];\n\now(animals, ow.array.ofType(ow.object.custom(validateAnimal)));\n//=> ArgumentError: (array) (object) Expected number `Animal.weight` to be finite, got Infinity\n```\n\n#### message(string | fn)\n\nProvide a custom message:\n\n```ts\now('🌈', 'unicorn', ow.string.equals('🦄').message('Expected unicorn, got rainbow'));\n//=> ArgumentError: Expected unicorn, got rainbow\n```\n\nYou can also pass in a function which receives the value as the first parameter and the label as the second parameter and is expected to return the message.\n\n```ts\now('🌈', ow.string.minLength(5).message((value, label) => `Expected ${label}, to have a minimum length of 5, got \\`${value}\\``));\n//=> ArgumentError: Expected string, to be have a minimum length of 5, got `🌈`\n```\n\nIt's also possible to add a separate message per validation:\n\n```ts\now(\n\t'1234',\n\tow.string\n\t\t.minLength(5).message((value, label) => `Expected ${label}, to be have a minimum length of 5, got \\`${value}\\``)\n\t\t.url.message('This is no url')\n);\n//=> ArgumentError: Expected string, to be have a minimum length of 5, got `1234`\n\now(\n\t'12345',\n\tow.string\n\t\t.minLength(5).message((value, label) => `Expected ${label}, to be have a minimum length of 5, got \\`${value}\\``)\n\t\t.url.message('This is no url')\n);\n//=> ArgumentError: This is no url\n```\n\nThis can be useful for creating your own reusable validators which can be extracted to a separate npm package.\n\n### TypeScript\n\nOw includes a type utility that lets you to extract a TypeScript type from the given predicate.\n\n```ts\nimport ow, {Infer} from 'ow';\n\nconst userPredicate = ow.object.exactShape({\n\tname: ow.string\n});\n\ntype User = Infer<typeof userPredicate>;\n```\n\n#### Literal Type Narrowing\n\n`string.equals()` and `string.oneOf()` narrow to literal types:\n\n```ts\n// ow.string.equals('hello') narrows to 'hello'\n// ow.string.oneOf(['red', 'blue']) narrows to 'red' | 'blue'\n\nfunction validateColor(input: unknown): 'red' | 'blue' {\n\tow(input, ow.string.oneOf(['red', 'blue']));\n\treturn input; // TypeScript knows this is 'red' | 'blue'\n}\n```\n\n### Performance\n\nOw is designed for runtime validation of function arguments. While it performs well for most use cases, there are a few things to keep in mind for performance-critical apps:\n\n#### Label Inference\n\nBy default, Ow automatically infers the label of the validated value from the source code when no explicit label is provided. This requires reading the source file from disk and parsing it, which can be slow in performance-critical scenarios.\n\nTo improve performance, always provide an explicit label as the second argument:\n\n```ts\n// Slower - label is inferred\now(username, ow.string);\n\n// Faster - explicit label provided\now(username, 'username', ow.string);\n```\n\n## Related\n\n- [@sindresorhus/is](https://github.com/sindresorhus/is) - Type check values\n- [ngx-ow](https://github.com/SamVerschueren/ngx-ow) - Angular form validation on steroids\n","repository":{"type":"git","url":"git+https://github.com/sindresorhus/ow.git"},"users":{"aredridel":true,"flumpus-dev":true},"bugs":{"url":"https://github.com/sindresorhus/ow/issues"},"license":"MIT","versions":{"0.0.1-security":{"name":"ow","version":"0.0.1-security","_id":"ow@0.0.1-security","maintainers":[{"name":"anonymous","email":"kiera@npmjs.com"}],"homepage":"https://github.com/npm/security-holder#readme","bugs":{"url":"https://github.com/npm/security-holder/issues"},"dist":{"shasum":"e265570ca316427e9c524bf26d259e84d17e1822","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ow/-/ow-0.0.1-security.tgz","integrity":"sha512-oRdYy+obHUeN6nTQ07YrEE1nXgbR+Cnj4ScuvYDzlZaAbQtejpQntu3lKwn+xkagafgD1QEOVT1JKwIgB0DT6Q==","signatures":[{"sig":"MEUCIQDNarA1FxoWGgRkEUYotlTa+4aaHHSaGzHFMPGOml2qIgIgFY9DbptXBndltUk7mNLPK4/x8Sp+05OG4NbQAYKSghI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"gitHead":"ac50be87aafecba67fcacca3b32bf36a1f8f7a71","_npmUser":{"name":"anonymous","email":"kiera@npmjs.com"},"repository":{"url":"git+https://github.com/npm/security-holder.git","type":"git"},"_npmVersion":"5.4.1","description":"security holding package","directories":{},"_nodeVersion":"8.2.1","_npmOperationalInternal":{"tmp":"tmp/ow-0.0.1-security.tgz_1505240252022_0.9686083716806024","host":"s3://npm-registry-packages"}},"0.0.1":{"name":"ow","version":"0.0.1","keywords":["type","types","check","checking","guard","guards","assert","assertion","predicate","predicates","is","validate","validation","utility","util","typeof","instanceof","object"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"ow@0.0.1","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/ow#readme","bugs":{"url":"https://github.com/sindresorhus/ow/issues"},"dist":{"shasum":"f5802e5573371d9e4cd1757bb7c9cbbcf3c02341","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ow/-/ow-0.0.1.tgz","integrity":"sha512-KHJLNlpmupb3H7m5okODuR6LfhqbV6JhELWuG9fQ8IhYbKRCZ+ooeArrQp0m9azBM1gt7+XIb6GVKRtQh+q7yQ==","signatures":[{"sig":"MEQCIC00wvKwEqStrsAv6x5O91mpvenVmKEeetPPL1U+iWeAAiBdXHfiXQ+x/mr3NzbgdAwYi0rQ/fIzUQwUpmeeRde00A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","example.js"],"_shasum":"f5802e5573371d9e4cd1757bb7c9cbbcf3c02341","engines":{"node":">=4"},"gitHead":"2970c07042ba793f3a37271afea1dee0f6a3ef34","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/ow.git","type":"git"},"_npmVersion":"4.6.1","description":"Argument type validation","directories":{},"_nodeVersion":"4.8.3","dependencies":{"@sindresorhus/is":"^0.1.0"},"devDependencies":{"xo":"*","ava":"*"},"_npmOperationalInternal":{"tmp":"tmp/ow-0.0.1.tgz_1506018755977_0.9556548912078142","host":"s3://npm-registry-packages"}},"0.1.0":{"name":"ow","version":"0.1.0","keywords":["type","types","check","checking","guard","guards","assert","assertion","predicate","predicates","is","validate","validation","utility","util","typeof","instanceof","object"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"ow@0.1.0","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/ow#readme","bugs":{"url":"https://github.com/sindresorhus/ow/issues"},"nyc":{"exclude":["dist/test"]},"dist":{"shasum":"36c87ff3dd455e4fb338993fd6b372d0efba9a37","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ow/-/ow-0.1.0.tgz","fileCount":141,"integrity":"sha512-dwDXAHCY1W328KCAYUIvR7mai6iALs3afXkJHtpc6ry1v+LUbrL72/Bqkq/HQ3qzLLlm7BwXTsRF6ElWVDaUxw==","signatures":[{"sig":"MEYCIQCcHXeXGrKpFqaPDBUmB5CsFZyQKJjqK/HVWI5b/YRKyQIhAJ/9y/qBfy9e+09OfCb4NJx6gUIZcpLZluxk7ZLZeU57","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":237443,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa4tWUCRA9TVsSAnZWagAAnAAP/0BhB4eF19/i9EEE72qp\nLPy3Td9qtddbfywLSzTLd/kr3+vJ1aXu40xXMJPgEbwhKyrxHzwEVIkOD6zp\n6l97l9kjaQQWITQCKIKkv1ZgVUFvrTOJAxiec48wc7QDPyrh2DEhCU9E1ATn\n0dxbjCmkmedL3A+IBpdm8BsY/XOxkSeLCmy9VXzJbjvQSkxagonJRY4sBB8L\nSWkgdMuG8eIdNyCyz9AHMmJPXlO5LkJf1VbvC337VvtN/yZYiWtXyEwRotp7\nSa/QxO0uFwW93HIdUdW7Pah+4JobpKuaI46qntEFx44dP8r5qrKK4UzRZg04\n0yg+auyc7RxCV57Hkg/rBAO8nx44wK/hg3U9If0o5O75rBLdoq0s6dXzubNj\nd9q3xSRX6BfLNVFjgm+QB/0b6MQYTy4TfStlTqt06gi1Pv+9wYP0dS+7rxYd\ngzmt3mPXAY2k3yaL18Zc4GLoweB6x9iWD6lZ69U0weTA8FKlLdz5CCEQP4wO\neccXPKZU3RoHFRvYRSu5z5FqMGAihRyxsehICU0s83eSiThOAnoXE+Zu1QhQ\nb7U9J5B6nnzroGxkpFr97nAC7stLO/+IsD6j2JS/58aKhT9FAO9WsxO/sGAY\nhvhx/o/JV8o+iX1mDKknSCKb0mjl9f45kfV/M3eDqFR2bjt5dF/nEnohUYEf\nIt2q\r\n=SqGS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","files":["dist"],"engines":{"node":">=6"},"gitHead":"c2cf804496bbb6ec78763b51e82d6eb41438ad75","scripts":{"docs":"typedoc source","lint":"tslint --format stylish --project .","test":"npm run lint && nyc ava dist/test","build":"npm run clean && webpack","clean":"del dist","compile":"npm run clean && tsc","pretest":"npm run compile -- --sourceMap","prerelease":"npm run build"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/ow.git","type":"git"},"_npmVersion":"5.6.0","description":"Argument type validation","directories":{},"_nodeVersion":"8.11.1","_hasShrinkwrap":false,"devDependencies":{"ava":"*","nyc":"^11.2.1","tslint":"^5.9.1","codecov":"^3.0.0","del-cli":"^1.1.0","typedoc":"^0.11.1","webpack":"^4.3.0","dot-prop":"^4.2.0","tslint-xo":"^0.7.0","vali-date":"^1.0.0","typescript":"^2.8.1","@types/node":"^10.0.0","webpack-cli":"^2.0.13","lodash.isequal":"^4.5.0","@types/dot-prop":"^4.2.0","@sindresorhus/is":"^0.8.0","@types/vali-date":"^1.0.0","@types/highlight.js":"^9.12.2","@types/lodash.isequal":"^4.5.2","license-webpack-plugin":"^1.1.1","awesome-typescript-loader":"^5.0.0","add-module-exports-webpack-plugin":"^0.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ow_0.1.0_1524815251015_0.4758560751159444","host":"s3://npm-registry-packages"}},"0.1.1":{"name":"ow","version":"0.1.1","keywords":["type","types","check","checking","guard","guards","assert","assertion","predicate","predicates","is","validate","validation","utility","util","typeof","instanceof","object"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"ow@0.1.1","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/ow#readme","bugs":{"url":"https://github.com/sindresorhus/ow/issues"},"nyc":{"exclude":["dist/test"]},"dist":{"shasum":"16a441c2e4db65acb23cdf55684125bca4bf92c9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ow/-/ow-0.1.1.tgz","fileCount":141,"integrity":"sha512-TXJNY8tjiEG7mj0/8/Xp1t5kwBSgjBTdconAoR60lPSMzP/uyTNwkKhZcwKDsokjXKFI0RHfPdRfzBqmeZ62NQ==","signatures":[{"sig":"MEUCIAZo/SBoKabvyfjK+O1vIOYIdCBDxAlFEWtFHtquI/ITAiEAob0fLlXsN9INHVnpHmqEKNgcBLfJcjxv8PheQ4k6iBc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":237422,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa5C1QCRA9TVsSAnZWagAAs4EP/j0gWmtNxuo0Zswebyb1\ncRjemPMdfmq8A7EGHy9Las7FU411AhJ02Iji9BBskIDPMPLnjmWPt/dG8ZNc\nAfZghasjtxQooLdhbmfVbnlwwXCPFEvSPAHS+w+v3nwzF90xYUO9ZjUtYDS0\nn5bkjHE6SCaGGeTCW5Gg4buK8SU0a1VS5jQzBJHQY5gWHcvTq22BsRlmq99f\nb2wecgQ9Z9OqIbYe6Jdtq/EUaAZtbkJdm9LQuvSy9Poi2cU6Wi8o/LHVRKUJ\nLoTU41t6DOALwbvjE7AoleYBfZe28IjoVDe878Ao7H3hr2dJYaYX0ymy+lX2\nU/O7qktu+72x1a7XPWlfew3bqCzZq8oDzct1nfl7O0qVkYGUMgZ3n8Cidfbu\n7ZD4MV3w4dG1oo6cMsN4CUZ7CccX8LoTGRldWE9EhMYryUenxMSx6iMToeSp\nI+GOvJLqxTI2cnfCD+BW/TO5LBNw0ll8UfcUjW9rb+LbyqaDd4BLlGRNsLE9\nQT+zrPNptNuhCGzjKA8SZovQDN0jeIU52P+KAUTtmRY3JFlYNkkn/aEUnvUu\nf7N9gjNgqKjintqqoCjg2y/QObIl3kAGyqIGa1Y1T/5ScW5+ptoZuvxzorbO\nXEjjRrIOkUw2KL7rkkidu3ypmRFZk8zzlogi2wBzhJnPznhop+WaltMlTzN4\nuBH3\r\n=KqD3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","files":["dist"],"engines":{"node":">=6"},"gitHead":"e92887a5385216c7420e0ddb7d41062922c03926","scripts":{"docs":"typedoc source","lint":"tslint --format stylish --project .","test":"npm run lint && nyc ava dist/test","build":"npm run clean && webpack","clean":"del dist","compile":"npm run clean && tsc","pretest":"npm run compile -- --sourceMap","prerelease":"npm run build"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/ow.git","type":"git"},"_npmVersion":"5.6.0","description":"Argument type validation","directories":{},"_nodeVersion":"8.11.1","dependencies":{"dot-prop":"^4.2.0","vali-date":"^1.0.0","lodash.isequal":"^4.5.0","@sindresorhus/is":"^0.8.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"*","nyc":"^11.2.1","tslint":"^5.9.1","codecov":"^3.0.0","del-cli":"^1.1.0","typedoc":"^0.11.1","webpack":"^4.3.0","tslint-xo":"^0.7.0","typescript":"^2.8.1","@types/node":"^10.0.0","webpack-cli":"^2.0.13","@types/dot-prop":"^4.2.0","@types/vali-date":"^1.0.0","@types/highlight.js":"^9.12.2","@types/lodash.isequal":"^4.5.2","license-webpack-plugin":"^1.1.1","awesome-typescript-loader":"^5.0.0","add-module-exports-webpack-plugin":"^0.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ow_0.1.1_1524903245936_0.22701477925877556","host":"s3://npm-registry-packages"}},"0.2.0":{"name":"ow","version":"0.2.0","keywords":["type","types","check","checking","guard","guards","assert","assertion","predicate","predicates","is","validate","validation","utility","util","typeof","instanceof","object"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"ow@0.2.0","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/ow#readme","bugs":{"url":"https://github.com/sindresorhus/ow/issues"},"nyc":{"exclude":["dist/test"]},"dist":{"shasum":"24484e04a37564547eb9f355ff3516d3bc635b2b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ow/-/ow-0.2.0.tgz","fileCount":26,"integrity":"sha512-hHghVDUVbcaJ/fUebN8KHsRduZgJosobKDgXlA4+0mzKpvquKCdwDcJdxtCSMPwBRTEjTMUCqpCZ8iTN2s2yZw==","signatures":[{"sig":"MEYCIQDSUC24NyAfyl99/hCJ6VOA9DQAPZvpXB7AeAdRayXlFwIhAJ+CcikPP4Dhbl1+8qkEKK59JOkkEiRjas95jKyZEx6L","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":228891,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa5ZdpCRA9TVsSAnZWagAAvwAP+QFQLOlAAuDDvvfN6uvq\nTEJjnQ25p4BGG45R9DeKirZMy7jBVrRtsY06y0lHR8NlyRZwJhwYcwiGB7s2\nBeHamJaQoSl1YKmgqXGfX0bDrgBbrr+pqypS3MnlJDGtI1e6rjsOoyuSaqmk\nx8dPnrxFOokZns6lvBrB7BHCvhjdNzjIKrX56CwtKs5KOwM1epF1NvQAPNDD\nR/UY52ZcU2h8okKG2xzaKGMyEPfknDIByHx7WJrxpu/OvkG5KXfwLFvsIzCl\nqNs3VJZOiIPOJ0g4DyzIpQ1QRDhkb+YhZG1IkCkFewcYmZ5y/v+CoOEM89Tn\n53e5eH42BKZ9rruqH+lyRsx64k4p5R3rIO7wT13fmIY54hHqb3O/obhcl/AQ\nR3n39ZZrMSDqAEZDzaEudlL0NP9hb2ee3zQEz2TWfNyt3DfqFYFJxV/U92xt\nf6V1XhQIqEguuWLivMwDDiN7r2+OFKhJ3KJ0vjleilDpol6FqeCSUdi3vcC0\nROIZbrWxMESqtfY8wtjC9aULrHT2kH9mbqYiRo2yV64KdLSb3Lq9D/dQpnEp\nS+7rPNY0DEDlwvhiAz1LjYGbBjhwaszwADVlGhPEygz2Ckl3a+RP/6/Ne8jN\ndsAFGrhY9dLXnrxmrYpJRcQCh6paR9b+seCty2SK6KS8aOng9d4t1lwr2r1N\n1xnl\r\n=dDa8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","files":["dist"],"engines":{"node":">=6"},"gitHead":"9166a0fc092159dbad9d6ef4c8e174afb789291f","scripts":{"docs":"typedoc source","lint":"tslint --format stylish --project .","test":"npm run lint && nyc ava dist/test","build":"npm run clean && webpack","clean":"del dist","compile":"npm run clean && tsc","pretest":"npm run compile -- --sourceMap","prepublishOnly":"npm run build"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/ow.git","type":"git"},"_npmVersion":"5.6.0","description":"Argument type validation","directories":{},"_nodeVersion":"8.11.1","_hasShrinkwrap":false,"devDependencies":{"ava":"*","nyc":"^11.2.1","tslint":"^5.9.1","codecov":"^3.0.0","del-cli":"^1.1.0","typedoc":"^0.11.1","webpack":"^4.3.0","dot-prop":"^4.2.0","tslint-xo":"^0.7.0","vali-date":"^1.0.0","typescript":"^2.8.1","@types/node":"^10.0.0","webpack-cli":"^2.0.13","lodash.isequal":"^4.5.0","@types/dot-prop":"^4.2.0","@sindresorhus/is":"^0.8.0","@types/vali-date":"^1.0.0","@types/highlight.js":"^9.12.2","@types/lodash.isequal":"^4.5.2","license-webpack-plugin":"^1.1.1","awesome-typescript-loader":"^5.0.0","add-module-exports-webpack-plugin":"^0.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ow_0.2.0_1524995944627_0.006060979730256877","host":"s3://npm-registry-packages"}},"0.3.0":{"name":"ow","version":"0.3.0","keywords":["type","types","check","checking","guard","guards","assert","assertion","predicate","predicates","is","validate","validation","utility","util","typeof","instanceof","object"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"ow@0.3.0","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/ow#readme","bugs":{"url":"https://github.com/sindresorhus/ow/issues"},"nyc":{"exclude":["dist/test"]},"dist":{"shasum":"411079ba831edbbe7fc72fb0280dc25dfa39270b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ow/-/ow-0.3.0.tgz","fileCount":26,"integrity":"sha512-PxCMWLK/5hfSw4vsEXqNTxbdj/bmpbmLpLaB7ZUrp3Lhsz1MpeXNUdsOKi3Cd5IjUBFyCyzf0NG2K5Iw5vkpaw==","signatures":[{"sig":"MEQCIDTquejM6Qlh07Ppr16Lp/9isFf8ufpFBlzgzjK0qE9GAiAt40WSGH9a2YoLQmqkBUQ0EQ1iyDLdbtyTF6K3Ed0zsw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":229345,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa6gh0CRA9TVsSAnZWagAAtnsQAJBGJDYAUD5ICZOROymC\neR3bYJ9H0xAtMZqa5COVej2mInvt4wrmIcRxf+6FUvo1MyjlUXVd5D3WRS9z\nynW8AJPZY67ahWMde3wabcDRMpU1arVdjIhoUhtJD2FBh1uqIu7G9uLNEJ+H\ncAdrTOYF711Jw7ComdfenMHeEIwTk/S1Kw1DdeHDeP8B4ZLTepGyTheO1Aj3\nLl9cLevrb9YIDoUYDHDFrHuxp65OWHeIm+6hf5cl5KqcIkLaMGureX4DHM9t\nCNEol9CifBifX+6EhX5CgFcAAS+CSCssAYCOOyd5XAWxG68YNPGT+dhkQzR7\ntD8/UBhaUEtS7k0oIBeA+zS9hcZhARzAKr96U5WiuYWQxgez9tX5StJojVN4\nC29gjlAjBrG12NHeElbneALsoM44TL7Dlv4NhljmL4iB6U555OUcAbIJ8fg9\nyW16GXpdbBNtEUdwhETgZ+dNPq34xIWxSnOAqyetwfRpw7JsH65VlFCoCYTx\nio/hGtSKmDkWvRE8IoJ3kY5Ef5OQKBUXXMCkJLb9wMtXZB84Bn7qHWiee/8g\nJ/dvG6qQPUDwNXfbVOJ33tiBMwn0ptzF6E8c4N7C9mfxKVmrvGUnwthjaBUO\nJIR2+dEjyDmpcW23JQtP+rIcL3DRSXGYUhl+7nU2yXqioQKecgZ5l+okFfLF\nJtmt\r\n=+WOE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","files":["dist"],"engines":{"node":">=6"},"gitHead":"03bc459d6e8f472410a29cb2b642420ff6831a62","scripts":{"docs":"typedoc source","lint":"tslint --format stylish --project .","test":"npm run lint && nyc ava dist/test","build":"npm run clean && webpack","clean":"del dist","compile":"npm run clean && tsc","pretest":"npm run compile -- --sourceMap","prepublishOnly":"npm run build"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/ow.git","type":"git"},"_npmVersion":"5.6.0","description":"Function argument validation for humans","directories":{},"_nodeVersion":"8.11.1","_hasShrinkwrap":false,"devDependencies":{"ava":"*","nyc":"^11.2.1","tslint":"^5.9.1","codecov":"^3.0.0","del-cli":"^1.1.0","typedoc":"^0.11.1","webpack":"^4.3.0","dot-prop":"^4.2.0","tslint-xo":"^0.7.0","vali-date":"^1.0.0","typescript":"^2.8.1","@types/node":"^10.0.0","webpack-cli":"^2.0.13","lodash.isequal":"^4.5.0","@types/dot-prop":"^4.2.0","@sindresorhus/is":"^0.8.0","@types/vali-date":"^1.0.0","@types/highlight.js":"^9.12.2","@types/lodash.isequal":"^4.5.2","license-webpack-plugin":"^1.1.1","awesome-typescript-loader":"^5.0.0","add-module-exports-webpack-plugin":"^0.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ow_0.3.0_1525287027672_0.9112688316017052","host":"s3://npm-registry-packages"}},"0.4.0":{"name":"ow","version":"0.4.0","keywords":["type","types","check","checking","guard","guards","assert","assertion","predicate","predicates","is","validate","validation","utility","util","typeof","instanceof","object"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"ow@0.4.0","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/ow#readme","bugs":{"url":"https://github.com/sindresorhus/ow/issues"},"nyc":{"exclude":["dist/test"]},"dist":{"shasum":"119a846d23738ce11677331fef8a3fbe019eb05b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ow/-/ow-0.4.0.tgz","fileCount":26,"integrity":"sha512-kJNzxUgVd6EF5LoGs+s2/etJPwjfRDLXPTCfEgV8At77sRrV+PSFA8lcoW2HF15Qd455mIR2Stee/2MzDiFBDA==","signatures":[{"sig":"MEYCIQDUsGxla8Pm9e3A6Q+0YNO/t2K/NafkCJkCgvSvctQ50AIhAKhUEsRcL/WFZDuc1agTY7cr2AOhe4jg5NEFDOo56FNy","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":242324,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbDV2WCRA9TVsSAnZWagAA/qcP/2YhCzVsuW9fqzdcWyoh\nDjb/VdqwOJtWCM5wFGaBnF+Z5dIz6tP2Tou6Ip0PfFEAZTLMmbUVC+4pGSwT\nzzvN34NG8WTmjtXIDDef1TxS7QGn/GE6nHLBr9g/Zo4+Zh5M8h1fphAR4I48\nc8ldpEDlRQ659/caTVgxXwVE1RLlqBcWCNwQTybzcWH21sfSv0tqfAezE19A\n0rAVmYRSgAg4MSdHbdHVGTGEkFEJxaPuD+SiNr6sMrmcG2TAQVqR6X1yaAhc\nKVCbSJbySeWAcVTI/Mgn5y2c7yr8aVOZvY3o9uP9CooX4WACX2E1uhVo7pjk\n93bbqYLJcSSgEuJx8ULMDz5ZIvFa5HhycUNucj7dycMcM2jieLtea+oPfGMe\nw/9fp5ZRZu7xAZgbnWd3Qj7yv3PyiJXr5spO1raYUTepbRIeJVZzJjkclkgW\nU1dgiSfMPSgJFaV4XV0ch0q7foo0mCAX/n1WMKyvBLRW5oK3lX1cKgFHy62M\n/zqYbcdg3Qw52AjyHoHBb5ZFI2on91ABJMmzKECO4DKD2lDT/eVCwIRxgTU2\nIvkWbLLs8AybAYF5PaH3/DrvSSA/57r7rDY1j7iX3Vh+kJSLilumchFTfaLI\nJNkiVNaez0t1WJKPn2NAlOgFPx90FGaRLc1rxgfu1BlR94BBzyA1xuJxbw6C\nUgi/\r\n=bqWe\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","files":["dist"],"engines":{"node":">=6"},"gitHead":"2bb175e460a718eafa217be27400aa7b17ab1230","scripts":{"docs":"typedoc source","lint":"tslint --format stylish --project .","test":"npm run lint && nyc ava dist/test","build":"npm run clean && webpack","clean":"del dist","compile":"npm run clean && tsc","pretest":"npm run compile -- --sourceMap","prepublishOnly":"npm run build"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/ow.git","type":"git"},"_npmVersion":"5.6.0","description":"Function argument validation for humans","directories":{},"_nodeVersion":"8.11.2","_hasShrinkwrap":false,"devDependencies":{"ava":"*","nyc":"^11.2.1","tslint":"^5.9.1","codecov":"^3.0.0","del-cli":"^1.1.0","typedoc":"^0.11.1","webpack":"^4.3.0","dot-prop":"^4.2.0","tslint-xo":"^0.8.0","vali-date":"^1.0.0","typescript":"^2.8.1","@types/node":"^10.0.0","webpack-cli":"^2.0.13","lodash.isequal":"^4.5.0","@types/dot-prop":"^4.2.0","@sindresorhus/is":"^0.9.0","@types/vali-date":"^1.0.0","@types/lodash.isequal":"^4.5.2","license-webpack-plugin":"^1.1.1","awesome-typescript-loader":"^5.0.0","add-module-exports-webpack-plugin":"^0.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ow_0.4.0_1527602581769_0.11631087253016914","host":"s3://npm-registry-packages"}},"0.5.0":{"name":"ow","version":"0.5.0","keywords":["type","types","check","checking","guard","guards","assert","assertion","predicate","predicates","is","validate","validation","utility","util","typeof","instanceof","object"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"ow@0.5.0","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/ow#readme","bugs":{"url":"https://github.com/sindresorhus/ow/issues"},"nyc":{"exclude":["dist/test"]},"dist":{"shasum":"63628c538291fce1299e88d9a62c3234a6d29980","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ow/-/ow-0.5.0.tgz","fileCount":26,"integrity":"sha512-flFykgbnT8KPkrauk8Pd2nYS4Nl0E+AVDxQU8A3Ofnc9/euUGqsHV6ZS3WpxGQarS4AwhfL5On/8buE6SQUpBA==","signatures":[{"sig":"MEQCIG2Rj7d2i6b43+6uoBwIRDK/DY1OrQvNyaeicGb2Zb/MAiABiDkFdPu9ZCtv4/xpuVOD2tmp/fCCSzGyEW2eYIHB2w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":244391,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbHNgDCRA9TVsSAnZWagAALEsQAIGzAVZMJqwgiTsUHldL\n9QAzaoKLdkGb7UcZ+T+hsXigE31qcR4+9fiWj/DhXhxe4rroCpB7DiM9oktQ\nskPoSGKhg39KtGo/VgT4+PJ6jMbcIG/tAQWgxUIFUELmGt+hg6EPSNncNiVh\nl++ajtZL2+JeGOfEQbNfUlqahNVCLcj8Gpytp6e0UEcaAo9yFK9d96UiEd4c\n1sXJzBOPVOVptiiNz95c8VR9j5aksbBZchYFsueAhXFurUI4bXyCADxrshcj\nC7deJQhayCs5vR3+4tqDhEWhin51AN/Hm1+ic2L28jEKcMLra1CG2xHmzudl\nKJqnAJJkTrL2PjOiej1yxjJlRI3f2y4C+BElhJIEiIjdv4lg3g8ZQc7HO41B\nmmXFGp50K8epTFfeDQfEPYaNUg6B/Pr1ejRRAJ88nLt6Xb1RAK3+gB4QaWVu\nybaqcUr8eN50V9BffafFNrScRNLjIeBlqeOb7ausMe+bUFkbIQnF/uoTAZIW\nE0orJj3Cww/xsTwMZdN77aJnV+mF5zZ8Vo8zwfadCK6X8lJJwg3lF1SGRbON\nMX+ZQ1V8CALFpVVLbP6WcAiNL5hIj1/d231snXd1PM9cOTd96+rSivCjpRCM\n19DTTGUaQ3Wj+kJJwcFM15pzTy8Zt0Nh9gU/LDBJBMw4Qm1RCYpcuDHKeDfo\nFZB8\r\n=VLBA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","files":["dist"],"engines":{"node":">=6"},"gitHead":"be18222313fafec2cd4a66c78fb2693b7dcbb7f3","scripts":{"docs":"typedoc source","lint":"tslint --format stylish --project .","test":"npm run lint && nyc ava dist/test","build":"npm run clean && webpack","clean":"del dist","compile":"npm run clean && tsc","pretest":"npm run compile -- --sourceMap","prepublishOnly":"npm run build"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/ow.git","type":"git"},"_npmVersion":"5.6.0","description":"Function argument validation for humans","directories":{},"_nodeVersion":"8.11.2","_hasShrinkwrap":false,"devDependencies":{"ava":"*","nyc":"^12.0.1","tslint":"^5.9.1","codecov":"^3.0.0","del-cli":"^1.1.0","typedoc":"^0.11.1","webpack":"^4.3.0","dot-prop":"^4.2.0","tslint-xo":"^0.8.0","vali-date":"^1.0.0","typescript":"^2.9.0","@types/node":"^10.0.0","webpack-cli":"^2.0.13","lodash.isequal":"^4.5.0","@types/dot-prop":"^4.2.0","@sindresorhus/is":"^0.9.0","@types/vali-date":"^1.0.0","@types/lodash.isequal":"^4.5.2","license-webpack-plugin":"^1.1.1","awesome-typescript-loader":"^5.0.0","add-module-exports-webpack-plugin":"^0.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ow_0.5.0_1528616962786_0.07044985953371552","host":"s3://npm-registry-packages"}},"0.6.0":{"name":"ow","version":"0.6.0","keywords":["type","types","check","checking","guard","guards","assert","assertion","predicate","predicates","is","validate","validation","utility","util","typeof","instanceof","object"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"ow@0.6.0","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/ow#readme","bugs":{"url":"https://github.com/sindresorhus/ow/issues"},"nyc":{"exclude":["dist/test"]},"dist":{"shasum":"1371352713192a8dd54ec13ab0f0f1464b58941f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ow/-/ow-0.6.0.tgz","fileCount":26,"integrity":"sha512-CJRcySlsICcZoVH5L259wYecV7JRiGOGyxTpMF0YL2QIaETrl75ZhNpvn+jJN19HlCcUS2QyPpWJmOMya8kwCw==","signatures":[{"sig":"MEUCID4G6zXMsk+q+oI8TChAGbryt2rDlXLED0CuWBowWb2uAiEAtOLV73iq8jxz/ZOKYXZ2AcWuYd8ZxKamFQGzgKOxLUo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":247107,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbK9SSCRA9TVsSAnZWagAAS3oP/RL4Nk2FwKO1HtM7lQRr\nen1oyWZ8qJmRU7CISTZ0d2FKKisl9tpTEOMGkPHvtd8mfiIn0rXakzfx8tjc\nVU1+nqfbk0gvZQoaM+iwE1OjvZnsTAIuCdj1iQGZXJb1keiCZKraz2tKY1z4\nbREFS/3jA7SG+1w8h2aquoFPOIreLEFlqihoMTl8Qe7qUAdGgMu3K3NbSVBr\n4xD4DaJsNZXVtuvoj/7JEYBI9BrFZyEmTPXPyyvlqNhiPIgV0ltCFQvBJVz8\na9P+zKAx1H8FEvlBngyQR1UEdH6nDOiCJnz/EKIbwKhjHQd7j3aA5S7gYPLL\nJb9RX0sf9iqr9yVZD5+1mc6TMTZCIQq/u05oLdOqUdZIw0Zf4TYlxXPfR6Jb\n5MpugG9XvxgtYTfO54pdEByLdt9DnEYOJeOOaclm6BIx6ua1tCIUr6vmFDG3\nFlEt3N2EY0ffFy25IQx9yAe5VD8OLe331S+6FppZ+eqc7TRChNUmdwVeA2a6\n1c/73Rpw9L7csNN5ZdqRXY2uX3uhTUVkDuKFg93fxSARicI06yIluRAQqgNy\nF716i+QXgAuTP2QZqJ89+GDLupnInURlWWO8uebGoXI9HDCALPi36DJ7dj9C\n9SuOanBLSvUorvGVMGOR747xdsByBhyc+UvZOZQ42+0Qr0Ci1FtLXCuP0dn2\n23qg\r\n=py/b\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","files":["dist"],"engines":{"node":">=6"},"gitHead":"db4af81a7e9de6a1c61d92e02121fb03982fd6e6","scripts":{"docs":"typedoc source","lint":"tslint --format stylish --project .","test":"npm run lint && nyc ava dist/test","build":"npm run clean && webpack","clean":"del dist","compile":"npm run clean && tsc","pretest":"npm run compile -- --sourceMap","prepublishOnly":"npm run build"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/ow.git","type":"git"},"_npmVersion":"5.6.0","description":"Function argument validation for humans","directories":{},"sideEffects":false,"_nodeVersion":"8.11.2","_hasShrinkwrap":false,"devDependencies":{"ava":"*","nyc":"^12.0.1","tslint":"^5.9.1","codecov":"^3.0.0","del-cli":"^1.1.0","typedoc":"^0.11.1","webpack":"^4.3.0","dot-prop":"^4.2.0","tslint-xo":"^0.8.0","vali-date":"^1.0.0","typescript":"^2.9.0","@types/node":"^10.0.0","webpack-cli":"^2.0.13","lodash.isequal":"^4.5.0","@types/dot-prop":"^4.2.0","@sindresorhus/is":"^0.9.0","@types/vali-date":"^1.0.0","@types/lodash.isequal":"^4.5.2","license-webpack-plugin":"^1.1.1","awesome-typescript-loader":"^5.0.0","add-module-exports-webpack-plugin":"^0.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ow_0.6.0_1529599122722_0.18078784585250007","host":"s3://npm-registry-packages"}},"0.7.0":{"name":"ow","version":"0.7.0","keywords":["type","types","check","checking","guard","guards","assert","assertion","predicate","predicates","is","validate","validation","utility","util","typeof","instanceof","object"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"ow@0.7.0","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/ow#readme","bugs":{"url":"https://github.com/sindresorhus/ow/issues"},"nyc":{"exclude":["dist/test"]},"dist":{"shasum":"2c1a7f44ed4a1e3cf0eca5e2012daa20a29ccb74","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ow/-/ow-0.7.0.tgz","fileCount":26,"integrity":"sha512-GGEubNkXj0G+anoT3KyAyARRURF9Uwq+5TdlZgKuEpXoRhm7lM7ywq/41hALH8tCNBaFKhF9nlEixZRoUHP3CA==","signatures":[{"sig":"MEYCIQCxcA4Kb2TVpozFBBdNAC2eLiflHIQ8k6Ku4W6LF/nvAwIhAKQVPttzg7XgwYxqo+lztt5U6KFrlZw8hPtxwst8De3b","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":249447,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbrdMdCRA9TVsSAnZWagAAm7IP/2TPXwUmp9TD+y0oYGm1\n05DUewdDPga4MZtmwQEDf7NEkOaOlErn/gDb8gdDXWaXP4iHq5SgPC+pGRK5\nXG7MlPfKtWDAscwJGJdhTuqWB/ti8FULM/AZvrX9mrNcKCiDotvZaPf56AnG\nmRbPjyvx6fBgSTBv56y7Zuol265KhicjH1vXpl6LsrWFI9iii9oLOCb6qAuF\nzdA6MqpIWsUYqkD27WQX1M9RgeolyF7EN/7G8hnbgnKZrY0ni/tOqL1VbMkC\nGoW9kyVPoIxMj6CvbCY2AayakTU4rSAwJ4AwBxHiz9N+SFty91w1efHQQ0Le\n3bkT7Lo2hYGCaJo75vfL8VM5lR2G3QzR4I1s8uYdRNzz13J86wwczP8WiN/i\npn2RoeNynebcfoQ4VSd+S/jLMuJAkolVYDmn5Bcs7WwUElYPhsRp/rYXol2h\nMYnXsiwu/1S7jAcxLPMbgJJ8o+931mVlHtsnc+vULngs2QZBdH0KT1BW1VQz\nAxnhzbllWO5gS6Vq8jRp0kLgmvUahw303On8/Dq35t9NnPzm1Hp5F08pSZCb\nCbeeuNBkLd/64BLrc2mX793oFyZ0CkeDRuIUMSx3dEmlLdSRK7EYh1aziAMu\nqknPmixJDUfv0iB8FftqXYgsj2EOPV5ctta9pGyYRp7i6rgzMX5bs+tbHP64\nDxbH\r\n=MwwQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","engines":{"node":">=6"},"gitHead":"dd78c11ddff17683f6077c3677a3ccd1c7fb022a","scripts":{"docs":"typedoc source","lint":"tslint --format stylish --project .","test":"npm run lint && nyc ava dist/test","build":"npm run clean && webpack","clean":"del dist","compile":"npm run clean && tsc","pretest":"npm run compile -- --sourceMap","prepublishOnly":"npm run build"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/ow.git","type":"git"},"_npmVersion":"6.4.1","description":"Function argument validation for humans","directories":{},"sideEffects":false,"_nodeVersion":"8.12.0","_hasShrinkwrap":false,"devDependencies":{"ava":"^1.0.0-beta.8","nyc":"^13.0.1","tslint":"^5.9.1","codecov":"^3.1.0","del-cli":"^1.1.0","typedoc":"^0.12.0","webpack":"^4.20.2","dot-prop":"^4.2.0","tslint-xo":"^0.9.0","vali-date":"^1.0.0","typescript":"^3.1.1","@types/node":"^10.11.2","webpack-cli":"^3.1.1","lodash.isequal":"^4.5.0","@types/dot-prop":"^4.2.0","@sindresorhus/is":"^0.12.0","@types/vali-date":"^1.0.0","@types/lodash.isequal":"^4.5.2","license-webpack-plugin":"^2.0.1","awesome-typescript-loader":"^5.2.1","add-module-exports-webpack-plugin":"^0.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ow_0.7.0_1538118428492_0.9227758850146721","host":"s3://npm-registry-packages"}},"0.8.0":{"name":"ow","version":"0.8.0","keywords":["type","types","check","checking","guard","guards","assert","assertion","predicate","predicates","is","validate","validation","utility","util","typeof","instanceof","object"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"ow@0.8.0","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/ow#readme","bugs":{"url":"https://github.com/sindresorhus/ow/issues"},"nyc":{"exclude":["dist/test"]},"dist":{"shasum":"d360d779c996f4132941a596c87f86ce8e812e62","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ow/-/ow-0.8.0.tgz","fileCount":26,"integrity":"sha512-hYgYZNcRfIZ2JppSTqh6mxdU1zkUXsGlwy4eBsRG91R6CiZk7cB+AfHl+SVKBdynQvAnNHNfu0ZrtJN1jj7Mow==","signatures":[{"sig":"MEUCIQDdeGsOgj3H3gQ15JHyIg8VF8i+GfQaNo7xchytVBNNqwIgbYxQO+zLoRcxAyv8NzxsmVg9jgR2Zr0JAegR5OseCYU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":250284,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbxbtVCRA9TVsSAnZWagAAiUUP/3HCZl0sLr5FA/ulVPdH\ndQpEDoHk8bo7r0YaPOTaU0J/WdqfJ2quoDT0TUjrT68g8j9XA1hptgmdLcbr\nWbsPF/ArFXpdxLTNR3vBo5EqfKiqIN+pOuqRFl6s0Tfmn/yrrKFau+F5ErWd\nLZOACSPskxQPvqxsgBMxiS3P4VlfJaj577uThQiUTuUUenXeg0dA6mmn3so4\nTRO+qPqBS5S+wVU6/vjMPth/KGmMxKRFoBK32aNmTkWZ84uVIHkT0eApplAY\ns3UeUQOISku+J4aOy6N2qAfinp2TfJiro1mHRQNZcgjzWeNaBiqEPq36jPdU\nieKCLDXEejsFo8ZPBXEZ3KXLZX5ky2lG7nsiVwOVm3+57QWFEzWr4WWhKwnj\ntOi0eiYW8XYVgkHFjuYS44tE1pMGmUrQq+F8fet80nOcS2oeeO2035BYJvS9\nZViaz5hdfRSJigNaotHpj/zu0M7NJWbmNC+vYmsvygCTbMNfcfmYd4efqH4z\nuPMudDkaIi6eI3KO453u7mWu98XfdAkdubMEivJlurwee8dJvGoTxqt4qKmi\n5ZiZsRVhYIGlmXZtkW1FJlPZoopBQsEDd+4FxCYkVNoTqbYns9R6qJmVuc4v\nCTOwDt/cW78BC4+4Gf18g+XVNBJhei5thEOImbfmbYK2nDhx+yJ7hivn4t84\nFQ3p\r\n=hEeH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","engines":{"node":">=6"},"gitHead":"37dc5a7bcb486a7d409b687b102c43577a82ef1f","scripts":{"docs":"typedoc source","lint":"tslint --format stylish --project .","test":"npm run lint && nyc ava dist/test","build":"npm run clean && webpack","clean":"del dist","compile":"npm run clean && tsc","pretest":"npm run compile -- --sourceMap","prepublishOnly":"npm run build"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/ow.git","type":"git"},"_npmVersion":"6.4.1","description":"Function argument validation for humans","directories":{},"sideEffects":false,"_nodeVersion":"10.12.0","_hasShrinkwrap":false,"devDependencies":{"ava":"^1.0.0-rc.1","nyc":"^13.1.0","tslint":"^5.9.1","codecov":"^3.1.0","del-cli":"^1.1.0","typedoc":"^0.13.0","webpack":"^4.20.2","dot-prop":"^4.2.0","tslint-xo":"^0.9.0","vali-date":"^1.0.0","typescript":"^3.1.3","@types/node":"^10.12.0","webpack-cli":"^3.1.2","lodash.isequal":"^4.5.0","@types/dot-prop":"^4.2.0","@sindresorhus/is":"^0.12.0","@types/vali-date":"^1.0.0","@types/lodash.isequal":"^4.5.2","license-webpack-plugin":"^2.0.2","awesome-typescript-loader":"^5.2.1","add-module-exports-webpack-plugin":"^0.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ow_0.8.0_1539685204623_0.2956034744249141","host":"s3://npm-registry-packages"}},"0.9.0":{"name":"ow","version":"0.9.0","keywords":["type","types","check","checking","guard","guards","assert","assertion","predicate","predicates","is","validate","validation","utility","util","typeof","instanceof","object"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"ow@0.9.0","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/ow#readme","bugs":{"url":"https://github.com/sindresorhus/ow/issues"},"ava":{"babel":false,"compileEnhancements":false},"nyc":{"exclude":["dist/test"]},"dist":{"shasum":"7c8ae0995c10125c2379afb1e538b00d283f2c9f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ow/-/ow-0.9.0.tgz","fileCount":30,"integrity":"sha512-yPlFBOjlNZRgDzDN4EqdLsEX+x+6RhChNAfepgQAEbjdlDMJrlk/d/ux616yqDbSfYpzt6PfmE4GGzSxLQMlLA==","signatures":[{"sig":"MEUCIGSARr3aSeMM7gtwVpZ9GpbJMck+oLwfCwI6IxZYJSxPAiEAgw9zu+psYfSaOsegUUCzKkEY4MlRWOxi6fVmsEaRCOE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":258884,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcNUN5CRA9TVsSAnZWagAA25kP+QEIkshnILg8WQ7Nl21w\nG3aHTXeu5TY5gfUMCAh2chJNgY7HZWR2j23TsYd/1yuHPXfsXvXEZAIXhYit\nY6FkrNE5bsXpmfwfLEWJVjCP02ds99XzARTVdDxYA/nfR3F79Aa47+jEBfe8\nKOe8zW8whWOwILq4/Q56uNw7MEHbezqRkoidZgFfNrWm4YZaSJkO29sdObSo\nWiaRE0/3gg1UB6rfwyc8PmMovU4Zi6h9H7QJBgsltre2ElWVKu6H3+OXoD8c\nNRfUJhLLL7VwUCL0cgAfFstGnFsENKf77ytrbtrfyJOCklVaw6fdSfM2jEYk\nzG2ruvhE7PYdc7lKFxf0rKXJx4XpgdN7OKtVO79J3eIKpmE3PtmdOMBbSEvh\nqfrUXER+DVrhUcRifLP/v1PFeQr4dqFO0YRVPvL5FhVM8EsnZY4yrJ71zbd/\nk0nenGUGu6plS7xCzize4zwzzTdoqiLJYgW/nqKWRr4abrBNEGWwqMLWEU0C\nhXKOQKb1CF6ebir5uNxfanNaZv8qKix9Dy0kZBEOnKZTFHSfKjc7PIBl8DWX\n9x20wyUdNiRvguqSskB/y7bTtSLEj+wcgYHAukZQWbzNHJZ+g1eW0/eiIV4U\nTG3CJ2UgVPG1FacYjz9UPQBnEnTEULSNIJdGyIuCS6ShCj6Kwj8R/Q5myIXp\n8p25\r\n=FPih\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","engines":{"node":">=6"},"gitHead":"e634ddea5e0dc6b64dcb71bf6dadd24c5d1e4114","scripts":{"docs":"typedoc source","lint":"tslint --fix --format stylish --project .","test":"npm run lint && nyc ava dist/test","build":"npm run clean && webpack","clean":"del dist","compile":"npm run clean && tsc","pretest":"npm run compile -- --sourceMap","prepublishOnly":"npm run build"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/ow.git","type":"git"},"_npmVersion":"6.5.0","description":"Function argument validation for humans","directories":{},"sideEffects":false,"_nodeVersion":"10.13.0","_hasShrinkwrap":false,"devDependencies":{"ava":"^1.0.1","nyc":"^13.1.0","tslint":"^5.12.0","codecov":"^3.1.0","del-cli":"^1.1.0","is-node":"^1.0.2","typedoc":"^0.14.0","webpack":"^4.28.0","dot-prop":"^4.2.0","callsites":"^3.0.0","tslint-xo":"^0.11.0","vali-date":"^1.0.0","typescript":"^3.2.1","@types/node":"^10.12.17","webpack-cli":"^3.1.2","lodash.isequal":"^4.5.0","@types/dot-prop":"^4.2.0","@sindresorhus/is":"^0.14.0","@types/vali-date":"^1.0.0","@types/lodash.isequal":"^4.5.2","@sindresorhus/tsconfig":"^0.1.0","license-webpack-plugin":"^2.0.2","awesome-typescript-loader":"^5.2.1","add-module-exports-webpack-plugin":"^0.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ow_0.9.0_1546994552408_0.35059397721109065","host":"s3://npm-registry-packages"}},"0.9.1":{"name":"ow","version":"0.9.1","keywords":["type","types","check","checking","guard","guards","assert","assertion","predicate","predicates","is","validate","validation","utility","util","typeof","instanceof","object"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"ow@0.9.1","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/ow#readme","bugs":{"url":"https://github.com/sindresorhus/ow/issues"},"ava":{"babel":false,"compileEnhancements":false},"nyc":{"exclude":["dist/test"]},"dist":{"shasum":"3a35045dbf6d9746fc2ecb56ff146982d3fd88c9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ow/-/ow-0.9.1.tgz","fileCount":30,"integrity":"sha512-0cBNS4JL4z6TWPs1gxkwldc4BVyPm3ltn/H+nhYM0Cz7Izx6WVWcjlsyXHa+jtkrMC+nkJJlWKV1Wr9uF0uMdw==","signatures":[{"sig":"MEUCICxDc8eSy42O6hQO1BA+zytEEmYBRsn6k8bcli9/9aWvAiEA6Z02uAwzi3aD6c8ekmlGcvwc8N1jHlZEqyjWDP7CCF4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":259002,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcNxpaCRA9TVsSAnZWagAAvDUP/3JS7ZeL58ZjfVhTyr5x\nk6p5xYXNV3C84OgUHU1bJmWZkbV4wuhXSx5bAJwFY1/hZZsfzx7MXS+SqQLY\nHKNxS8iKUw2P7ECwqCHrLcVJ5vE3v8ArVl+awpBHga/Gk20jZVDLkKTTsly2\n99HKVQllKj2Fn0VBGvVyraYIh7nvGrTGVZsi3pm39pq/N4nprp9kKLoJv/Z1\nMl7v/M2iAESHKn9Z+B6hXUbHw/hP7weufgkxOwH+ontgPYsi9PHfqVBdVMZ/\nu0fv7J6BaIai7r0cauTHq3h2Vz2qCHX2kCUhTwJ/WQFnapcsUapRLtU5L8In\nZXkSAAMuCGEAH2+HdiWqPwrpV/qhQ/V4XRe+VHg/zH4ekp2ei6C9JlWKXH0X\n9dbGhUs8xgRMruk6jMlwpfvEuFmBXnpSMAr979mgrTk4OTsd55nNnAVPfBqC\nwKx6svpkJzBdZvu82MF5WzeW3Bw81nJ+v5EgPtY06DNUXVCGTpk7/Sbb23tm\nryFP/fbiQ/+DXtcA9/IyN58COO5UtIKyR6cdQzaS9hffIZaAkmAJHpHhq9vl\njpPbzwEPIJw6sDXRy4LUrrA2XiSxxzhq1VlhwfE5byQsQ1FYf8Pl0XQFcLkc\nAfytcVZGd+80HGJrIiMyvlkZAx5ZIePHjXnfSx0ELC6MMN9nD0vsPIAKllpd\niXOZ\r\n=kYjD\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","engines":{"node":">=6"},"gitHead":"d25fc68bc824582460ec3bdcc108262eeb6b55d0","scripts":{"docs":"typedoc source","lint":"tslint --fix --format stylish --project .","test":"npm run lint && nyc ava dist/test","build":"npm run clean && webpack","clean":"del dist","compile":"npm run clean && tsc","pretest":"npm run compile -- --sourceMap","prepublishOnly":"npm run build"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/ow.git","type":"git"},"_npmVersion":"6.5.0","description":"Function argument validation for humans","directories":{},"sideEffects":false,"_nodeVersion":"10.13.0","_hasShrinkwrap":false,"devDependencies":{"ava":"^1.0.1","nyc":"^13.1.0","tslint":"^5.12.0","codecov":"^3.1.0","del-cli":"^1.1.0","is-node":"^1.0.2","typedoc":"^0.14.0","webpack":"^4.28.0","dot-prop":"^4.2.0","callsites":"^3.0.0","tslint-xo":"^0.11.0","vali-date":"^1.0.0","typescript":"^3.2.1","@types/node":"^10.12.17","webpack-cli":"^3.1.2","lodash.isequal":"^4.5.0","@types/dot-prop":"^4.2.0","@sindresorhus/is":"^0.14.0","@types/vali-date":"^1.0.0","@types/lodash.isequal":"^4.5.2","@sindresorhus/tsconfig":"^0.1.0","license-webpack-plugin":"^2.0.2","awesome-typescript-loader":"^5.2.1","add-module-exports-webpack-plugin":"^0.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ow_0.9.1_1547115097786_0.344903882679753","host":"s3://npm-registry-packages"}},"0.10.0":{"name":"ow","version":"0.10.0","keywords":["type","types","check","checking","guard","guards","assert","assertion","predicate","predicates","is","validate","validation","utility","util","typeof","instanceof","object"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"ow@0.10.0","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/ow#readme","bugs":{"url":"https://github.com/sindresorhus/ow/issues"},"ava":{"babel":false,"compileEnhancements":false},"nyc":{"exclude":["dist/test"]},"dist":{"shasum":"aac8cf024110b4cdb1d44ed188913fc34cc1f35c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ow/-/ow-0.10.0.tgz","fileCount":30,"integrity":"sha512-bBc51JQ7LM8HXhihEQZyhs+ZWTIdm20riI6y3gLAdPkzEyAHH6tuGV7rAQvfxDjqWqj7Z/slv0AEL2Gi3lkN0Q==","signatures":[{"sig":"MEYCIQDisMeRZYlAubklPiJPTwffcB3kLWFTRXXoNWpuDAlX6gIhAJ1Cn618F8gMxobUe1v8UVvRJh2nHqkK8vuB8M5DKtUt","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":262591,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcPcYhCRA9TVsSAnZWagAA0rUP/09lTrIcvJJpChIUCP68\nR7r6+ONFac0kfqj6xPpQ/2KdlyMogshZTqiakcT0GmkMz7Ae53S6zFzKOP9k\ntksood4AxwlklIskGtP+YdTF0uxoYON33PGNEMfOk4QZdKyoqn+qEprtEbN8\nDvJ+S8KuASIKzkTxtm2ybkGffPtA+RLHH2PLLPlQXOSetWGcKcFeQ7azrXh4\nr+P/xv58apo2gDlxZOsyBwZuIYBHkclUcCBJmVqOhuT8J+ONufWLPNtlEIaL\nsWKl2kdLApxLD9DDuBGNtL0N9ShNvLci07+R+CbmmUoi0avmk65mt7NgI38y\nJhRf+4uLqgtLTeO+0OwhaNI8Q3V+E8+s0tcccVynIXjFLjlX4kemwSnnnJ+I\nCNw0ka17VKDqlXj62ztusn13DfVPpFja8wnOWlGKLKa9r3A/AAoE43Te3obr\ngoD5mZ6b49RjU8Ug4Cd4adDvPHk93KFJY6kZa/n54m+SC6vJWWvnP77bFZ3k\ns8Je+8B1MpDBMqmLc5T/sOnvmNrvB1ZA6n2PJ/gqKyQDchcJt2GvCJTLdI5m\nw0Zx2UxWzpISncM44Ybx2S/GrcI279gz3aznJ/0ZcOCDYkTubPgSbeOwffeX\nkllM+ZeOgWJBraW6/u22BsOiB+9YVXcO0lvwhsdunU9SGRIECfTYiCjz8RSN\n3uAx\r\n=APfr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","engines":{"node":">=6"},"gitHead":"e12e8d12e517cd8aff32117670fe6d7b00dae905","scripts":{"docs":"typedoc source","lint":"tslint --fix --format stylish --project .","test":"npm run lint && nyc ava dist/test","build":"npm run clean && webpack","clean":"del dist","compile":"npm run clean && tsc","pretest":"npm run compile -- --sourceMap","prepublishOnly":"npm run build"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/ow.git","type":"git"},"_npmVersion":"6.5.0","description":"Function argument validation for humans","directories":{},"sideEffects":false,"_nodeVersion":"10.13.0","_hasShrinkwrap":false,"devDependencies":{"ava":"^1.0.1","nyc":"^13.1.0","tslint":"^5.12.0","codecov":"^3.1.0","del-cli":"^1.1.0","is-node":"^1.0.2","typedoc":"^0.14.0","webpack":"^4.28.0","dot-prop":"^4.2.0","callsites":"^3.0.0","tslint-xo":"^0.11.0","vali-date":"^1.0.0","typescript":"^3.2.1","@types/node":"^10.12.17","webpack-cli":"^3.1.2","lodash.isequal":"^4.5.0","@types/dot-prop":"^4.2.0","@sindresorhus/is":"^0.14.0","@types/vali-date":"^1.0.0","@types/lodash.isequal":"^4.5.2","@sindresorhus/tsconfig":"^0.1.0","license-webpack-plugin":"^2.0.2","awesome-typescript-loader":"^5.2.1","add-module-exports-webpack-plugin":"^0.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ow_0.10.0_1547552288893_0.2741498986810498","host":"s3://npm-registry-packages"}},"0.11.0":{"name":"ow","version":"0.11.0","keywords":["type","types","check","checking","guard","guards","assert","assertion","predicate","predicates","is","validate","validation","utility","util","typeof","instanceof","object"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"ow@0.11.0","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/ow#readme","bugs":{"url":"https://github.com/sindresorhus/ow/issues"},"ava":{"babel":false,"compileEnhancements":false},"nyc":{"exclude":["dist/test"]},"dist":{"shasum":"01d9ecdcb22f4cf6fe91f9e69581cd37e7c60041","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ow/-/ow-0.11.0.tgz","fileCount":32,"integrity":"sha512-tYhh1VaAbDQnjnehzGEv1rK3roK4IEvNBBVrdJFp06dPMWzO1fA3jwijaOLq4f9QiXMz/ltMzT5U5LUykPFqmg==","signatures":[{"sig":"MEQCIBJI5B+5z0tXQ8vdDt1AfMkkcX8GC+/d84RTl3/PM1OgAiA60FavvGwYODZERqoaWocrTv6qxlZMMB8baYzY7Fg2rw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":268919,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcTfcQCRA9TVsSAnZWagAAwNkQAIlEBJ2Dt7+DajY4jTXT\nS52lh5AqjEW5pPLhgwIGUP6Rhuj/wVYwUyBYh9ETaH1XDpbhYtVjraz4lBj2\naOPPVqx/K+jQ0AqGSwKn8Q0OIzPTgDHW1kXTpV2iZ5r8I5dsSI0QerwWr/BC\no3JsczKmDGaPGEQm8Spv88zC11JP7FnR3zaeFNFgRPUGqgx/HSjsftH7i8ea\n4MDmX+F5O3gIb4ikJNUUiYqu8mHC2uyC4tvOeKLfmU6JG941P0k+SSXZONeV\nEfoA6M0GadPojTQxkaDdwbQ/4b8/aHd0ywBLR/oKTqCot+Vkg6vjxWMeBO9S\nm7O9cgLU3VHS2KRC4jQDkwKSxrpfDzlFbd0UAqLK6bz8GaDd13G50SJws+k4\nfyX9AkQnau7UA9uHzLEDffJCupwvq2GJwLWZrZR/hKGbHIf0k0KgC5pf1GXt\nSNKKA2Z02F8btrlnKVSGOTI9o9TJzuWgb2rY4tEDFNKEFjivjcoa96AABI7q\najJ6cnyodGmtOA3G5BsztlZRVnS524dpDKhKknMMnvC9qKjp+49ZJtl+iZnk\nLExRe8gdPEMMXCfwCLXMce2gLzfQTrB0zw+e35KrzE54VD+0b+j15DyeOIAH\n0WHZtaEKIjMdwUkNWvP7MH1SMFQ1SVKO3dKYX2Ff6U2QS99KCEsUE2qgWSNh\npPF0\r\n=IBdN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","engines":{"node":">=6"},"gitHead":"ab9c8f3bcb81a68645e9bcb8ca7c58e0e0aabeb1","scripts":{"docs":"typedoc source","lint":"tslint --format stylish --project .","test":"npm run lint && nyc ava dist/test","build":"npm run clean && webpack","clean":"del dist","compile":"npm run clean && tsc","pretest":"npm run compile -- --sourceMap","prepublishOnly":"npm run build"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/ow.git","type":"git"},"_npmVersion":"6.4.1","description":"Function argument validation for humans","directories":{},"sideEffects":false,"_nodeVersion":"10.15.0","_hasShrinkwrap":false,"devDependencies":{"ava":"^1.0.1","nyc":"^13.1.0","tslint":"^5.12.0","codecov":"^3.1.0","del-cli":"^1.1.0","is-node":"^1.0.2","typedoc":"^0.14.0","webpack":"^4.28.0","dot-prop":"^4.2.0","callsites":"^3.0.0","tslint-xo":"^0.11.0","vali-date":"^1.0.0","typescript":"^3.2.1","@types/node":"^10.12.17","webpack-cli":"^3.1.2","lodash.isequal":"^4.5.0","@types/dot-prop":"^4.2.0","@sindresorhus/is":"^0.14.0","@types/vali-date":"^1.0.0","@types/lodash.isequal":"^4.5.2","@sindresorhus/tsconfig":"^0.1.0","license-webpack-plugin":"^2.0.2","awesome-typescript-loader":"^5.2.1","add-module-exports-webpack-plugin":"^0.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ow_0.11.0_1548613391514_0.7093183721488048","host":"s3://npm-registry-packages"}},"0.11.1":{"name":"ow","version":"0.11.1","keywords":["type","types","check","checking","guard","guards","assert","assertion","predicate","predicates","is","validate","validation","utility","util","typeof","instanceof","object"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"ow@0.11.1","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/ow#readme","bugs":{"url":"https://github.com/sindresorhus/ow/issues"},"ava":{"babel":false,"compileEnhancements":false},"nyc":{"exclude":["dist/test"]},"dist":{"shasum":"341b672b322d3e13a43ed3cf2230e7bf7d7c753c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ow/-/ow-0.11.1.tgz","fileCount":32,"integrity":"sha512-aJpVvQ8H16HNbJDV7frfWBH57gXRfuy5ppQIdexwi20Qej19nBLVepLIccNLLThvvRg5QH9XHtSAYZRxBqE+rg==","signatures":[{"sig":"MEUCIFJYm6IiSO6Dc+1jfZW8/pBmoyrLnuAWC/mxgNKsEVMSAiEA/pa0SLFPa08397lSF26MsgEd5CJfjFoDS77OWRgYR2U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":268978,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcUEQSCRA9TVsSAnZWagAAZQIP/0lmJUxnQIw8KpafsDLM\nrujApJX+ze7PWmpPH4td7Tp7PriXv+e8D7YMhgPJb06e54gS9d/KHTrKbmBl\nQx4FU8IVR54S1fBYqudKsoUZsAygtAIHQgS211nSAAKZjmaLT6fGuIL1+qyP\nQWu+/W+pezCVcjGmehCQao4rYmSbCPZZ2oyPJqrWq8z+7JfPGthGGpSsp6nl\ntEkEVfCuh0eK1HcPREiYYSjoJLReT3EIvX/M9DrE4r4EXnlZFxhD1GvW5NIQ\nE2TCF4P9Jt+YbJOnK/epbAwf4BqHdhBffHB5tKW5NiCDiL+uApc5agbYuhPR\nujIEYThsyKEda/1a9bjB43rNQ2nsWg6zEZEKlweo7bI4iivXoJHQarqKJXAw\neZUnfoWA85lyATiy8pV6gp95vvm1Q9I+65mauBF1Ubn6ynhCyu0AChWOTFo/\nvnTNH9yc9l6rJmzdle5/sLglsbg1U5Y9mEH0tpcZnCRaE4U2d/EY4o3bk/LY\njoydD1tI82ttWhmqpdQghNoaTg+vp75RLNz+AQ5r+7H8qnWO5KNxuONc6rgl\nnSwW8VyBYx6i+/xErNIhgjToJRG475lyyXolWCRIvSOBLDLZA2t7XL1goCCa\nYzlaRpl8jvfXkqJWDmocIUTOTLYZNkcOYj4Oo52y5W820FXzJv37zH+Xy7SF\nAZCR\r\n=4MU0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","engines":{"node":">=6"},"gitHead":"3cf642138b71554200d063d868bb5d2c515aa3b3","scripts":{"docs":"typedoc source","lint":"tslint --format stylish --project .","test":"npm run lint && nyc ava dist/test","build":"npm run clean && webpack","clean":"del dist","compile":"npm run clean && tsc","pretest":"npm run compile -- --sourceMap","prepublishOnly":"npm run build"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/ow.git","type":"git"},"_npmVersion":"6.4.1","description":"Function argument validation for humans","directories":{},"sideEffects":false,"_nodeVersion":"10.15.0","_hasShrinkwrap":false,"devDependencies":{"ava":"^1.0.1","nyc":"^13.1.0","tslint":"^5.12.0","codecov":"^3.1.0","del-cli":"^1.1.0","is-node":"^1.0.2","typedoc":"^0.14.0","webpack":"^4.28.0","dot-prop":"^4.2.0","callsites":"^3.0.0","tslint-xo":"^0.11.0","vali-date":"^1.0.0","typescript":"^3.2.1","@types/node":"^10.12.17","webpack-cli":"^3.1.2","lodash.isequal":"^4.5.0","@types/dot-prop":"^4.2.0","@sindresorhus/is":"^0.14.0","@types/vali-date":"^1.0.0","@types/lodash.isequal":"^4.5.2","@sindresorhus/tsconfig":"^0.1.0","license-webpack-plugin":"^2.0.2","awesome-typescript-loader":"^5.2.1","add-module-exports-webpack-plugin":"^0.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ow_0.11.1_1548764177363_0.5945629650987057","host":"s3://npm-registry-packages"}},"0.12.0":{"name":"ow","version":"0.12.0","keywords":["type","types","check","checking","guard","guards","assert","assertion","predicate","predicates","is","validate","validation","utility","util","typeof","instanceof","object"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"ow@0.12.0","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/ow#readme","bugs":{"url":"https://github.com/sindresorhus/ow/issues"},"ava":{"babel":false,"compileEnhancements":false},"nyc":{"exclude":["dist/test"]},"dist":{"shasum":"ce3b53a81af78171a21478bd684bd9862b152b35","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ow/-/ow-0.12.0.tgz","fileCount":35,"integrity":"sha512-GWAoq5RiK3HpMbwvM/aszyYYm7UvZzNfx5QPDbCXd52lROiDVBn6x6M06DhsL/Y8BTl42djQAPWhu6adaWwZyQ==","signatures":[{"sig":"MEUCIQCSVgEdZExecN1acqBL4D+Gq0tt20BEGx531OgxW8jsPQIgWXDVTe/9H5SunhiVy4n9XczrjYTixPR+aLu3DgUO2KA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":279451,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcVAToCRA9TVsSAnZWagAAs1QP/2kDBWKD2nRJj6kf4iJJ\ndXhbbgmxujrmCdvqmv1NLir8qS9L2ipy1PQzCJ1XgF3Db5ZLbJI99CBYaS39\nKYwJpZAEw8+zkfkHG5urs/1ULyI4xjnYiFBIYHpBcc031L8syMh4R5urp06D\n/tNbZxSKZnbOKrIYkcB5k1w5Q4DEFQi0Iv1sLUqDfv/LpZWMeKngqi1D8K5u\nkdGKLLTswrp98drRdD+6/IzwIH47tmRKRK/xJsbKojrF1xAbNEih4olJlCG8\n8SMmE+1Z7+8rBhUWQaQ8f7mCswlbZ9EenbvBsyEv9fQnlMwZ+Kv2ElMUWMRd\n7nOY/QLlftK5EmQBoF3nwhSk4Nfvq/FTqq7nwg3x5Odss6wLDV04BwRaD3qp\nsyWBKOza4/Il/Qi8vsZBsdnBRn2Is2pLVhFpbF4rF+T+2gZ2SQIouGcdmqm+\nZtNrh8l30/cpLrxSTNwjZwCsMdF1KQGmhqhI0LD22VGH+i4WnxSoZOj6HXC/\nSpOfV0q8xmWRqR8L5zxdHRa4zWWu4Qv5MCToOEvfugB4Ljbwvi4LNzJ2w+xA\n5C6W+d+gB96O7lrVmTUiJS68OMqaBNcVz/SsDXNMYiN9XVHiobsbxIg9CN/M\nOJcYSAdTW1bReEIBXU1Jz1K7N/D9iaDsEk0oXKnYWRsOr4Zg9rV9byIvJ7mj\n8FzK\r\n=oIHq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","engines":{"node":">=6"},"gitHead":"6951a1643f5587fd0c21988ab5ab46a08ee6ae0c","scripts":{"docs":"typedoc source","lint":"tslint --format stylish --project .","test":"npm run lint && nyc ava dist/test","build":"npm run clean && webpack","clean":"del dist","compile":"npm run clean && tsc","pretest":"npm run compile -- --sourceMap","prepublishOnly":"npm run build"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/ow.git","type":"git"},"_npmVersion":"6.4.1","description":"Function argument validation for humans","directories":{},"sideEffects":false,"_nodeVersion":"10.15.0","_hasShrinkwrap":false,"devDependencies":{"ava":"^1.0.1","nyc":"^13.1.0","tslint":"^5.12.0","codecov":"^3.1.0","del-cli":"^1.1.0","typedoc":"^0.14.2","webpack":"^4.29.0","dot-prop":"^4.2.0","callsites":"^3.0.0","tslint-xo":"^0.13.0","vali-date":"^1.0.0","typescript":"^3.3.1","@types/node":"^10.12.21","webpack-cli":"^3.1.2","lodash.isequal":"^4.5.0","@types/dot-prop":"^4.2.0","@sindresorhus/is":"^0.14.0","@types/vali-date":"^1.0.0","@types/lodash.isequal":"^4.5.2","@sindresorhus/tsconfig":"^0.2.0","license-webpack-plugin":"^2.0.2","awesome-typescript-loader":"^5.2.1","add-module-exports-webpack-plugin":"^0.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ow_0.12.0_1549010152391_0.3425474406672322","host":"s3://npm-registry-packages"}},"0.13.0":{"name":"ow","version":"0.13.0","keywords":["type","types","check","checking","guard","guards","assert","assertion","predicate","predicates","is","validate","validation","utility","util","typeof","instanceof","object"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"ow@0.13.0","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/ow#readme","bugs":{"url":"https://github.com/sindresorhus/ow/issues"},"ava":{"babel":false,"compileEnhancements":false},"nyc":{"exclude":["dist/test"]},"dist":{"shasum":"3cea2666dd9009e13f5035991179780f83140b57","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ow/-/ow-0.13.0.tgz","fileCount":33,"integrity":"sha512-2npeB8+3F+Dr+Xzfm4zlOuzCQfIXyutaOHVPBBNMeu6JeffROkKyLVVw6bLJUF+GtD0ZBWnpTa+POLilaxDtTw==","signatures":[{"sig":"MEYCIQCNiYAzsYXaJXdvlBsFewCcZgx+6JliL6VIyiSjPIsONgIhAOZAVcnph06UQdSN4zBEOb26xPtc9BKJUEPtEneLEBTu","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":282053,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc1++9CRA9TVsSAnZWagAAnK0P/icdU60icOhrMCZ218Nl\n8uE9homrIaxK9UrimPncJBajdMKiJZwuT0p/NIVw8xF2FfoPsps+iCLQSS+f\n9ecX+WRzCnawsgNSNYh/13dgXjJVlUUXajFPZabVMUuG+TMkvcz3ZojWPgF2\np9UfhehrUymFjaYZLHR21WYd1FORGN/YiZg1fUQYlTfC5gVd6MmQ3Q+Cow3g\nTlX/xkUXO69gC+7kopI/DTqknzsXzJ9RCiQzhVaZIPVHcgIxiOq1y3lr3bK8\nPeLbqQpjEVxWxU0JTy2clY5H7U+tgnNJDLbjcSkpw388720BfB22JTtZhZ/M\n+TsOxCNP+vlgURtpqZDHM2YVrMedPmb+z7qsBOrdHzRFk9mpIFmgcfjvatMu\nSfi5e2QQheFzW1J+kWOrQ1EjOoLNgXohZf9hE72+CBpJNqK21RdhEn4nKoGq\n0aJ6dmHwOchZ/uf/SrHJogLSFHxLBUhkn+lcEwsFzY15M3McOajO3Li8Z1AB\n/7O7DC9RjhYkXMb9/AG1nCJfWcOZcu/iYI/nf9FCMp3/wUJNIEuuffk1SNpf\nKf/XXVW2kBy6pAYmeTpLUQ60LAb1gqgExToYSOiewJ66nohcnzYoHQXoHxyg\nFBVyZio/IgoW3oORoKHfUd/lxp5NJ8q88Wvbbop+VJ4QsaS10vlDHGdK05H1\n7BCD\r\n=ZVSq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/source","types":"dist","browser":{"./dist/source/utils/infer-label.js":"./dist/source/utils/infer-label.browser.js"},"engines":{"node":">=6"},"gitHead":"9f035a4a1718a6133531fe2f3e0fcf2d716aec7b","scripts":{"docs":"typedoc source","lint":"tslint --format stylish --project .","test":"npm run lint && nyc ava dist/test","build":"npm run clean && webpack","clean":"del dist","compile":"npm run clean && tsc","pretest":"npm run compile -- --sourceMap","prepublishOnly":"npm run build"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/ow.git","type":"git"},"_npmVersion":"6.9.0","description":"Function argument validation for humans","directories":{},"sideEffects":false,"_nodeVersion":"8.16.0","_hasShrinkwrap":false,"devDependencies":{"ava":"^1.0.1","nyc":"^14.1.1","tslint":"^5.12.0","codecov":"^3.1.0","del-cli":"^1.1.0","typedoc":"^0.14.2","webpack":"^4.29.0","dot-prop":"^5.0.0","callsites":"^3.0.0","tslint-xo":"^0.16.0","type-fest":"^0.4.1","vali-date":"^1.0.0","typescript":"^3.3.1","@types/node":"^12.0.0","webpack-cli":"^3.1.2","lodash.isequal":"^4.5.0","@sindresorhus/is":"^0.16.0","@types/vali-date":"^1.0.0","@types/lodash.isequal":"^4.5.2","@sindresorhus/tsconfig":"^0.3.0","license-webpack-plugin":"^2.0.2","awesome-typescript-loader":"^5.2.1","add-module-exports-webpack-plugin":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ow_0.13.0_1557655485142_0.7272002831075213","host":"s3://npm-registry-packages"}},"0.13.1":{"name":"ow","version":"0.13.1","keywords":["type","types","check","checking","guard","guards","assert","assertion","predicate","predicates","is","validate","validation","utility","util","typeof","instanceof","object"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"ow@0.13.1","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/ow#readme","bugs":{"url":"https://github.com/sindresorhus/ow/issues"},"ava":{"babel":false,"compileEnhancements":false},"nyc":{"exclude":["dist/test"]},"dist":{"shasum":"b49c25d9c63a68a6cb12b4129da4bff9d8d9331d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ow/-/ow-0.13.1.tgz","fileCount":33,"integrity":"sha512-CBwKTukuwrLXG77UuQHYomXCu76I3hc/g2Qhz3CGXSBrzedlNTgIGDGliw4Ewz8Y/ibXq6qGcOR4mAn+sZ4N9Q==","signatures":[{"sig":"MEYCIQCpsDCRk7qVyk9Cq652951dytqPtb8SRgPY1Q84s1m68AIhAMhz1kJwEeW7RNedlwq5YqMeIH87N0coCgG0n4seeinH","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":282060,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc2YRGCRA9TVsSAnZWagAAHjoP/1SsVXNLMTT+Tl4GHgqf\ntHKWSYCUhMJ740fkIc8E9pJeBYRGpLHt5eIpHVE8XEpe9FxaKgyrgaBr6Pb9\n/yGaIOplxrg41h9wdsWJ/+Tgu5ZdkvKMLQ1C+5OfaD7QRCV3i8YltrAFsvEt\nryxHotDtVhRKFoQc+nQNm6R14lrldNcCB5qIR+DLATYSXin1CUqhSsF4U8eL\n53sZbL3hQjYd9l83M0vb2ZM/9Xl0Eum+trq8xuLAI+XRQjyn2pNbPWp0YLvg\nu7LWfTC6/BouhzL18wR/3HkMtIqGK+nyVlC/zsrcmHhI9c00LfBT6glzkYMI\nvS3jW1a8497kfIy4NqBRFqYTtskOkvuTUtYfvk8hslBXAAbh0aBEnQeBiQIp\n8q+I1s30ZRHxj99J/za9D00FGE8UXwwOby4jEO6mzKMtDocAKLdkgto+9ULQ\n0RnVa9bWY8CosRdO7cY9M21o4ra8tbUd+rIMb57Ba0WCxCTAmB2cE/KNJTLG\ngSn+ozrfrmMMZ2Rw2zSiuIZxef1UMfrK/IEUjGF3bjbqRFHieWTdvG72EZ5A\nzxSiw9ew7Ukf1MpSImQj6sDE5DiszmNxOzYkQdN1hELhRJb30i4HxIVup/4R\n0GatK42u7I7oJtv8VrTOnnuOWIYsww0LmqCf3NvpfMwZeycEuPh3+K3v7hML\no0iM\r\n=/Xi5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/source","types":"dist/source","browser":{"./dist/source/utils/infer-label.js":"./dist/source/utils/infer-label.browser.js"},"engines":{"node":">=6"},"gitHead":"5666e0f978f4794df57cae88d53e0e2b0a47cbdd","scripts":{"docs":"typedoc source","lint":"tslint --format stylish --project .","test":"npm run lint && nyc ava dist/test","build":"npm run clean && webpack","clean":"del dist","compile":"npm run clean && tsc","pretest":"npm run compile -- --sourceMap","prepublishOnly":"npm run build"},"_npmUser":{"name":"anonymous","email":"sam.verschueren@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/ow.git","type":"git"},"_npmVersion":"6.8.0","description":"Function argument validation for humans","directories":{},"sideEffects":false,"_nodeVersion":"10.15.1","_hasShrinkwrap":false,"devDependencies":{"ava":"^1.0.1","nyc":"^14.1.1","tslint":"^5.12.0","codecov":"^3.1.0","del-cli":"^1.1.0","typedoc":"^0.14.2","webpack":"^4.29.0","dot-prop":"^5.0.0","callsites":"^3.0.0","tslint-xo":"^0.16.0","type-fest":"^0.4.1","vali-date":"^1.0.0","typescript":"^3.3.1","@types/node":"^12.0.0","webpack-cli":"^3.1.2","lodash.isequal":"^4.5.0","@sindresorhus/is":"^0.16.0","@types/vali-date":"^1.0.0","@types/lodash.isequal":"^4.5.2","@sindresorhus/tsconfig":"^0.3.0","license-webpack-plugin":"^2.0.2","awesome-typescript-loader":"^5.2.1","add-module-exports-webpack-plugin":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ow_0.13.1_1557759045425_0.43778821531471834","host":"s3://npm-registry-packages"}},"0.13.2":{"name":"ow","version":"0.13.2","keywords":["type","types","check","checking","guard","guards","assert","assertion","predicate","predicates","is","validate","validation","utility","util","typeof","instanceof","object"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"ow@0.13.2","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/ow#readme","bugs":{"url":"https://github.com/sindresorhus/ow/issues"},"ava":{"babel":false,"compileEnhancements":false},"nyc":{"exclude":["dist/test"]},"dist":{"shasum":"375e76d3d3f928a8dfcf0cd0b9c921cb62e469a0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ow/-/ow-0.13.2.tgz","fileCount":33,"integrity":"sha512-9wvr+q+ZTDRvXDjL6eDOdFe5WUl/wa5sntf9kAolxqSpkBqaIObwLgFCGXSJASFw+YciXnOVtDWpxXa9cqV94A==","signatures":[{"sig":"MEYCIQDCTTh4L75sP7u8ADGsyEyrRy6sRpMW8mxpGQH9DWzl7QIhALkWozwXt8DYlxvsJXa9LTTHlessF0wvtvrb0hZvh+MP","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":282082,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc3uxfCRA9TVsSAnZWagAA51oP/0CgbYL3Oler6VFuBPBq\nVdtgku/7M7kneoazPLiTnrG+hZMYZBjtsBzXW133IRLt/gFOoYa1C1UW8SCq\nNk9iYczSxsSRs5SxYhB2gZSFqhs/GG0dpcaDrkHqCsaxwm50BZgt6CgQAVoI\n1O0YW7sEQvsaRoMcRrORZiLWESTUWMGkl3s0ldsV12k9zT6XvVLK9Qj3hsvH\np0yJfaZjGP/l6EARajQQK0jxxvMRCJa4PYkyA5GYhga+mmk+XOonfHXhQxbv\nV8nyGV0Dhm4oDMEY2N4D936NHW/qnEZwIlfwm9w1sijjN1D5qp+lUjnK6jX0\njtI40pHVVIA6FH3ySbW+CM0YoFF8q0qbnqX6v/T8k9RR1+pvfH0qYHbk/IB4\nXFh4xZl2k+s6En6foceDSf1DvOkMciDsIDbu3dlDcTzGC0jJlt/YfBBTerkP\nRBQQkouoTEEzpf+UTGMMLaRRf6H7A+RJUbmJqtQaeQguEnOcy61aMaGjYdRT\nHCtlVR7dv7kZiNo3IVhygCRIcx9z3JrEEAwRoM7U3W4QlvDsfz7097L38Tam\nTrXXsw4tfGAAQfZIZIY6ZVrJ+NuRVeselNjOHdQcr5Xi1fAyhZMisU+E0XyT\npvzvsHM2+BBFVnSx/1yvmtbuF3KQaBOd5vK7M5lySNlMvDFeHtqwGGhQjskx\nwZXc\r\n=Cq0A\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/source","types":"dist/source","browser":{"./dist/source/utils/infer-label.js":"./dist/source/utils/infer-label.browser.js"},"engines":{"node":">=6"},"gitHead":"c12a9b573e4b82b8ab3419e010e92b036a8853c7","scripts":{"docs":"typedoc source","lint":"tslint --format stylish --project .","test":"npm run lint && nyc ava dist/test","build":"npm run clean && webpack","clean":"del dist","compile":"npm run clean && tsc","pretest":"npm run compile -- --sourceMap","prepublishOnly":"npm run build"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/ow.git","type":"git"},"_npmVersion":"6.9.0","description":"Function argument validation for humans","directories":{},"sideEffects":false,"_nodeVersion":"8.16.0","dependencies":{"type-fest":"^0.5.1"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.0.1","nyc":"^14.1.1","tslint":"^5.12.0","codecov":"^3.1.0","del-cli":"^1.1.0","typedoc":"^0.14.2","webpack":"^4.29.0","dot-prop":"^5.0.0","callsites":"^3.0.0","tslint-xo":"^0.16.0","vali-date":"^1.0.0","typescript":"^3.3.1","@types/node":"^12.0.0","webpack-cli":"^3.1.2","lodash.isequal":"^4.5.0","@sindresorhus/is":"^0.16.0","@types/vali-date":"^1.0.0","@types/lodash.isequal":"^4.5.2","@sindresorhus/tsconfig":"^0.3.0","license-webpack-plugin":"^2.0.2","awesome-typescript-loader":"^5.2.1","add-module-exports-webpack-plugin":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ow_0.13.2_1558113374867_0.4948317717232009","host":"s3://npm-registry-packages"}},"0.14.0":{"name":"ow","version":"0.14.0","keywords":["type","types","check","checking","guard","guards","assert","assertion","predicate","predicates","is","validate","validation","utility","util","typeof","instanceof","object"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"ow@0.14.0","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/ow#readme","bugs":{"url":"https://github.com/sindresorhus/ow/issues"},"xo":{"rules":{"no-useless-return":"off","ava/no-ignored-test-files":"off","@typescript-eslint/ban-types":"off","@typescript-eslint/member-naming":"off","@typescript-eslint/no-explicit-any":"off","@typescript-eslint/generic-type-naming":"off","@typescript-eslint/strict-boolean-expressions":"off","@typescript-eslint/explicit-function-return-type":"off"},"extends":"xo-typescript","ignores":["example.js","webpack.config.js","dev-only.js"],"extensions":["ts"]},"ava":{"babel":false,"files":["dist/test/**","!dist/test/fixtures/**"],"compileEnhancements":false},"nyc":{"exclude":["dist/test"]},"dist":{"shasum":"648b5a28df784dc8189b0bb2d84507b5a1101852","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ow/-/ow-0.14.0.tgz","fileCount":33,"integrity":"sha512-6TgQxPCHsqzEJLxdLRHRiPTjeGfLvs8BuD6VvXHsKjYTDQY1CdYp6g6V1bJkTMMo38dtbq3yjYnavUbw0Bxb4g==","signatures":[{"sig":"MEQCID/gmnMGv7Fur5Aq2PA1xSEHtvhzBqCIE3V5VvnP19PCAiAMH31eoAzcONoP7sqCMa2AdpRFk6ik2rW+qN04BGVTsw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":279492,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdrEVgCRA9TVsSAnZWagAAcCUP/jJ3Ma7cw8PXan/Tb2JC\nQvjG6BBluXIXzrAyxJacr2SzVwioIsidX5sshFG+08mDBqhAGI+hvczQhBdh\nRCd2KuQDMTMWS82XtptQ6r8qRKwkxhjlqWomP6808rxO9UhrnEIxVawWn2AV\ni8mEBpsii/kv+FpD7TMOQ1W7Tw03QYqiG+mniWmJP61lhOxFKt4/Dh9UHQn6\n6ByO7qRxW+O/eO1TOcadzRaeKJnO9FLz/d5Kba99Qpc8dyC+IlZz385mwjb8\nyAHn2lXPxQrE/qMoSIrOyHRY0AKBSw1Ii7B8PGMgQTbyHqBisDGu/gMFsUOR\nohj6H5VqBKz9z5PO6SUAkTK51wfZdtPG6ZwkZJrQhfTcsCZBRCEawrLS1DN5\nRtSeR1TAGzndGmeZanJVo+N55CNXZgekJH/TCJqU3yx1HpM7JXgrbafXjMMw\nK/iMFc8n0qyWYJqwcXP6dB909rE663k3bJr9eYavdiydHugA421Xpazatpts\nNj7cnUe7TpW4tjdBYnAFMe2KVw408G8i/l9IEAtEd35rj29rDwnbcbbKg7F5\ntGP8UbdfGUfD3SnBLwRK0AjBNjiIsYs6g1ZA5zMBNJ8my1xZX/v1ynkgHw6m\npLZ8vIUkJoKjHzTx961kCnGAyzMR0eaHJ/HuOBZE+syRuUHZNidDJCfWrRIN\nqc7m\r\n=A7ZK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/source","types":"dist/source","browser":{"./dist/source/utils/infer-label.js":"./dist/source/utils/infer-label.browser.js"},"engines":{"node":">=8"},"gitHead":"84b8f6c5e2e5ccb53ab6d632b4bbc93c405bd974","scripts":{"docs":"typedoc source","test":"xo && nyc ava","build":"npm run clean && webpack","clean":"del-cli dist","compile":"npm run clean && tsc","pretest":"npm run compile -- --sourceMap","prepublishOnly":"npm run build"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/ow.git","type":"git"},"_npmVersion":"6.12.0","description":"Function argument validation for humans","directories":{},"sideEffects":false,"_nodeVersion":"10.16.3","dependencies":{"type-fest":"^0.8.1"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.25.3","ava":"^2.0.0","nyc":"^14.1.1","codecov":"^3.1.0","del-cli":"^2.0.0","typedoc":"^0.15.0","webpack":"^4.33.0","dot-prop":"^5.0.1","callsites":"^3.0.0","vali-date":"^1.0.0","typescript":"^3.6.4","@types/node":"^12.0.7","webpack-cli":"^3.1.2","lodash.isequal":"^4.5.0","@sindresorhus/is":"^1.2.0","@types/vali-date":"^1.0.0","@types/lodash.isequal":"^4.5.2","@sindresorhus/tsconfig":"^0.5.0","license-webpack-plugin":"^2.0.2","@typescript-eslint/parser":"^2.0.0","awesome-typescript-loader":"^5.2.1","eslint-config-xo-typescript":"^0.19.0","@typescript-eslint/eslint-plugin":"^2.0.0","add-module-exports-webpack-plugin":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ow_0.14.0_1571571040212_0.5441516687686296","host":"s3://npm-registry-packages"}},"0.15.0":{"name":"ow","version":"0.15.0","keywords":["type","types","check","checking","guard","guards","assert","assertion","predicate","predicates","is","validate","validation","utility","util","typeof","instanceof","object"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"ow@0.15.0","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/ow#readme","bugs":{"url":"https://github.com/sindresorhus/ow/issues"},"xo":{"rules":{"no-useless-return":"off","ava/no-ignored-test-files":"off","@typescript-eslint/ban-types":"off","@typescript-eslint/member-naming":"off","@typescript-eslint/no-explicit-any":"off","@typescript-eslint/generic-type-naming":"off","@typescript-eslint/explicit-function-return-type":"off"},"extends":"xo-typescript","ignores":["example.js","webpack.config.js","dev-only.js"],"extensions":["ts"]},"ava":{"babel":false,"files":["dist/test/**","!dist/test/fixtures/**"],"compileEnhancements":false},"nyc":{"exclude":["dist/test"]},"dist":{"shasum":"0d928046989422d7b06f0d6f20017016a0373df5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ow/-/ow-0.15.0.tgz","fileCount":34,"integrity":"sha512-iHHqr8OXsZzBjUkOVxfSR8opBhEhdQUGE4mxZEWehQawHxhCcnnGXrfu6+HhLG3XTK+oHRD/dlfGwNdY9HTHxQ==","signatures":[{"sig":"MEUCIQCxqxHOfvmtRNmw61zp422NzHxMcHzgcN3sZ0gqAfLIjQIgUBg6tJY8J8ZG4Bj9+UM5Hzsuorl+3eyY4KKnH+Nn2Ck=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":283802,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdylluCRA9TVsSAnZWagAA4F8P/Arn6Li+IOqPinMmNE9q\nKDPbcWngZ2qjtmTHFbME2kvGXXwlxoMBMih56QWW+DH+0ipL2ajxNR6zTUxv\ndihviXZ/n0IYC00W3D4yxhLdJ73HQerHWNO7XvBAA9DrbuoBTWoTrAAqUjmv\na3iv4mHZZ46qHHQL3G2dz7zzdugRuwFoN1Y3uCDRZJWPyAgrDDGgz2/+jFiE\nQUgrk/cLMjwkb0rW9/l4RBYVV+jhof3rtUUHpgfChKv9POoYalCczK7C3xSi\nhYIsRLp3l3cqeF9n4Rb1JsHzs4roG6rqmAok0Eyw2RqTRtaKJcL95FWVO2eC\n+3nrz9pAKmK+nYAGtAl8C3AIiMYq6cfJlpVXlgydjuLB4wIXmeMbfbwJFPT6\ntupA7VzqrneCBPDj8p/+N3dyGpXUxuOVwae7ir6QLLeSNJoIboOpljRcQe1n\nB06Vb1aQVsQJ6r9TdHU9DU+SbMGj+AWuAM2ky1nSLSp4FXFmuUVjAkfOBfxM\ngnmZV/xtRvXbDqP9UOO2GSljZNqOSd5XzAFLSHLd2WsIVF0ettFhfdsJrE4A\nyA81gDqkalwwQhxaJ6F2+wh7fa7ggptAwcueRcQ892EGsi0QeeDq/iQsEd2v\nznzC4z5TjcQEsxnvoPbhAtVImqthHrhnHgbF6kLTMLHQ5xxm35aP7TFZTRL3\nopw+\r\n=2nJz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/source","types":"dist/source","browser":{"./dist/source/utils/infer-label.js":"./dist/source/utils/infer-label.browser.js"},"engines":{"node":">=8"},"gitHead":"e31673960e78d4a1921db1e94611df9b14a20693","scripts":{"docs":"typedoc source","test":"xo && nyc ava","build":"npm run clean && webpack","clean":"del-cli dist","compile":"npm run clean && tsc","pretest":"npm run compile -- --sourceMap","prepublishOnly":"npm run build"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/ow.git","type":"git"},"_npmVersion":"6.12.0","description":"Function argument validation for humans","directories":{},"sideEffects":false,"_nodeVersion":"12.13.0","dependencies":{"type-fest":"^0.8.1"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.25.3","ava":"^2.0.0","nyc":"^14.1.1","codecov":"^3.1.0","del-cli":"^2.0.0","typedoc":"^0.15.0","webpack":"^4.33.0","dot-prop":"^5.2.0","callsites":"^3.0.0","vali-date":"^1.0.0","typescript":"^3.7.2","@types/node":"^12.12.6","webpack-cli":"^3.3.10","lodash.isequal":"^4.5.0","@sindresorhus/is":"^1.2.0","@types/vali-date":"^1.0.0","@types/lodash.isequal":"^4.5.2","@sindresorhus/tsconfig":"^0.5.0","license-webpack-plugin":"^2.0.2","@typescript-eslint/parser":"^2.6.1","awesome-typescript-loader":"^5.2.1","eslint-config-xo-typescript":"^0.21.0","@typescript-eslint/eslint-plugin":"^2.6.1","add-module-exports-webpack-plugin":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ow_0.15.0_1573542253296_0.5404651630480777","host":"s3://npm-registry-packages"}},"0.15.1":{"name":"ow","version":"0.15.1","keywords":["type","types","check","checking","guard","guards","assert","assertion","predicate","predicates","is","validate","validation","utility","util","typeof","instanceof","object"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"ow@0.15.1","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/ow#readme","bugs":{"url":"https://github.com/sindresorhus/ow/issues"},"xo":{"rules":{"no-useless-return":"off","ava/no-ignored-test-files":"off","@typescript-eslint/ban-types":"off","@typescript-eslint/member-naming":"off","@typescript-eslint/no-explicit-any":"off","@typescript-eslint/no-empty-function":"off","@typescript-eslint/generic-type-naming":"off","@typescript-eslint/explicit-function-return-type":"off"},"extends":"xo-typescript","ignores":["example.js","webpack.config.js","dev-only.js"],"extensions":["ts"]},"ava":{"babel":false,"files":["dist/test/**","!dist/test/fixtures/**"],"compileEnhancements":false},"nyc":{"exclude":["dist/test"]},"dist":{"shasum":"ad21bb4d4c46d4478b948522e36b214f6f13039d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ow/-/ow-0.15.1.tgz","fileCount":35,"integrity":"sha512-rwiuvCnk3Ug9T4s5oKzw3QXQSiTXlTUiQgHmZ9Ozw/37YzeX8LycosVKOtO3v5+fuARGmCgz9rVhaBJeGV+2bQ==","signatures":[{"sig":"MEYCIQC03+Y/IWG9dhzTS0ClIKQCTRRa4Dwoy5eYfTWgDz1oKQIhAK1+NH7p7YQbuSThzVfttx3jYxk9x8E9MoM2Cp79Zb1w","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":283719,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeLDNECRA9TVsSAnZWagAAJYMP/0dsPvdbxnbYi39cb4LO\naiNYobUYEbJx62fu6WQ+khoYNlgWIQvIWEBOeMNZPErZgLqbziufqPDUVCcO\n9hc7Y7pC9kH7jDrTeM2LKQY2PlSDM8vd86hO9NpHqPjN2b0GiZ7erT7BUm5v\npeQ47eY4h64AiXVTfPPEI4N0rPlaNg1HO9eEzuC2eKWemnq6w6TcWwg0RrQy\nY7a6/sGGVrveBw2TzXMvqVihgE/DsOMg/CL0s1JhFaJiXnJNjVDcy8CGWOXD\nnBqR1dhwe3dQDYQ2LoHUt3qpdqUnsOj78sUx0mumI1WOfS0XDJQL6Djq+EYV\nAWGTorUpS8CziojElFV2RAVZnA3MXRUOk9B8aoTELY64fIBbM13pdKeCAIqK\nfb54ssAxKnDHy+XWV+Apzhem/po6ceLl2iujFjADbJWbB7z9pnn2SfFwZs62\nM12ceXBIT3EuCXEJPbbsze3cntNTssD7lQM48+cGr1Y9Ey2twGXdpu1fL9wv\ntt0qyr6K3UleejNptbfkHMH0o5v29959TySZonup7Z4nG2njyGsJttHEHwPN\niRcqlwPOuQbDL7OiJ0DVeViPtdo67vpZmKI8NEOwalFKW9IjjeBjeIsoEWGI\nlrucMSs8TXD21MIIZcCv7gckqQn/25BlrnzqXvegqnrfuBkrxktmmNiR5YfF\n1Z0r\r\n=PGmh\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/source","types":"dist/source","browser":{"./dist/source/utils/infer-label.js":"./dist/source/utils/infer-label.browser.js"},"engines":{"node":">=8"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"c8312b779a5a61bc39191faee74dd2742985d414","scripts":{"docs":"typedoc source","test":"xo && nyc ava","build":"npm run clean && webpack","clean":"del-cli dist","compile":"npm run clean && tsc","pretest":"npm run compile -- --sourceMap","prepublishOnly":"npm run build"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/ow.git","type":"git"},"_npmVersion":"6.11.3","description":"Function argument validation for humans","directories":{},"sideEffects":false,"_nodeVersion":"10.17.0","dependencies":{"type-fest":"^0.8.1"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.25.3","ava":"^2.0.0","nyc":"^14.1.1","codecov":"^3.1.0","del-cli":"^2.0.0","typedoc":"^0.15.0","webpack":"^4.33.0","dot-prop":"^5.2.0","callsites":"^3.0.0","vali-date":"^1.0.0","typescript":"^3.7.2","@types/node":"^12.12.6","webpack-cli":"^3.3.10","lodash.isequal":"^4.5.0","@sindresorhus/is":"^1.2.0","@types/vali-date":"^1.0.0","@types/lodash.isequal":"^4.5.2","@sindresorhus/tsconfig":"^0.5.0","license-webpack-plugin":"^2.0.2","@typescript-eslint/parser":"^2.6.1","awesome-typescript-loader":"^5.2.1","eslint-config-xo-typescript":"^0.21.0","@typescript-eslint/eslint-plugin":"^2.6.1","add-module-exports-webpack-plugin":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ow_0.15.1_1579955011965_0.1834267783268193","host":"s3://npm-registry-packages"}},"0.16.0":{"name":"ow","version":"0.16.0","keywords":["type","types","check","checking","guard","guards","assert","assertion","predicate","predicates","is","validate","validation","utility","util","typeof","instanceof","object"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"ow@0.16.0","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/ow#readme","bugs":{"url":"https://github.com/sindresorhus/ow/issues"},"xo":{"rules":{"no-useless-return":"off","ava/no-ignored-test-files":"off","@typescript-eslint/ban-types":"off","@typescript-eslint/member-naming":"off","@typescript-eslint/no-explicit-any":"off","@typescript-eslint/no-empty-function":"off","@typescript-eslint/generic-type-naming":"off","@typescript-eslint/explicit-function-return-type":"off","@typescript-eslint/restrict-template-expressions":"off"},"extends":"xo-typescript","ignores":["example.js","webpack.config.js","dev-only.js"],"extensions":["ts"]},"ava":{"babel":false,"files":["dist/test/**","!dist/test/fixtures/**"],"compileEnhancements":false},"nyc":{"exclude":["dist/test"]},"dist":{"shasum":"c096cfbee8fe447577099598e8f04e002f2fc391","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ow/-/ow-0.16.0.tgz","fileCount":36,"integrity":"sha512-pJAkOEbRT7vhJZlkyKp/rQKR4YQ3qqdek6f3MnHMs7MRBKm5RfZq6GiLnqMRbQeYTwhMFXsTFuyhDrFuPu+yFQ==","signatures":[{"sig":"MEUCIEaHDG7lwR9aWuaNgRca4+OpRW2go0uR23R31pAHOb6AAiEAlRnvQj28v27e2IWWfBbscrAHnjDAwyfN5UbiBUAq47I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":302135,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeRZ4iCRA9TVsSAnZWagAAFU0P/jfqMtQltuOofUubygp0\nqZn5pApBiqvEaKqZiQ9h/MVza7XXbYXBXqOKUGzfz/XVbj00OKan8PiTPSFu\nUZBGC1kdlVJPJBbINXPXdSYTeBBrB4QDcokGGmECLLDMeKF0usn9CgBXis3X\nzXbkoMhfT7njz2j60JqsNQqvuB4a6/8NEyC3I+pd2v2rgit1rP1q0HvcH8CA\nwksKN8mXWlwrLzjH0Zx+e1Z3OvjrIjhqF1RyUe62tXcxbJ51xKul9WJH4wfB\nJ7PyPgB9dsHoQYidrWQ10RD6ObVAQTTQMqILxQkeehqpkHcB5+XOB7EWcXgJ\n0RPh2XmtHB5VIUN3AHsv05sjcbUrwzuLK6bKJmoCQYdr7Jfk/Rny3ZY0sVgv\nUGMBEN03Rcb+kM7LnyDFX3KRCzhICa8ahivVemEAikSuLQb0VqXhIGgznIfK\nRLlnbCZz6hGuWVUS3AaL1dcAMiHv9XEEMNuxKyzvJ8WhhRbYTGcgKZL1tGzG\n3TFY1v01gH0kIGMhYJUTbronctffALoo7MRb+SqkA3PBUCyeol1cs+GiYqOG\n2b3vs01ang9LB6LQTGFqt6zMm2cLSnoICPIuzN6FdPSrLAhq3xso+5OoJqK6\n+36nTF2DL6LZOqURWH8SQUUWAy98Ltuy08lDnumoerZwhVErSkBQ6xq38FX/\nk2yg\r\n=3vl8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/source","types":"dist/source","browser":{"./dist/source/utils/infer-label.js":"./dist/source/utils/infer-label.browser.js"},"engines":{"node":">=10"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"816e66c4837fc93ceb92c0480752020625e3b68d","scripts":{"docs":"typedoc source","test":"xo && nyc ava","build":"npm run clean && webpack","clean":"del-cli dist","compile":"npm run clean && tsc","pretest":"npm run compile -- --sourceMap","prepublishOnly":"npm run build"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/ow.git","type":"git"},"_npmVersion":"6.13.4","description":"Function argument validation for humans","directories":{},"sideEffects":false,"_nodeVersion":"10.18.1","dependencies":{"type-fest":"^0.8.1"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.26.0","ava":"^2.0.0","nyc":"^15.0.0","codecov":"^3.1.0","del-cli":"^3.0.0","typedoc":"^0.16.9","webpack":"^4.33.0","dot-prop":"^5.2.0","callsites":"^3.0.0","vali-date":"^1.0.0","typescript":"^3.7.2","@types/node":"^13.7.1","webpack-cli":"^3.3.10","lodash.isequal":"^4.5.0","@sindresorhus/is":"^2.0.0","@types/vali-date":"^1.0.0","@types/lodash.isequal":"^4.5.2","@sindresorhus/tsconfig":"^0.7.0","license-webpack-plugin":"^2.0.2","add-asset-webpack-plugin":"^1.0.0","@typescript-eslint/parser":"^2.6.1","awesome-typescript-loader":"^5.2.1","eslint-config-xo-typescript":"^0.26.0","@typescript-eslint/eslint-plugin":"^2.6.1","add-module-exports-webpack-plugin":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ow_0.16.0_1581620769899_0.6948358773860677","host":"s3://npm-registry-packages"}},"0.17.0":{"name":"ow","version":"0.17.0","keywords":["type","types","check","checking","guard","guards","assert","assertion","predicate","predicates","is","validate","validation","utility","util","typeof","instanceof","object"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"ow@0.17.0","maintainers":[{"name":"anonymous","email":"sam.verschueren@gmail.com"},{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/ow#readme","bugs":{"url":"https://github.com/sindresorhus/ow/issues"},"xo":{"rules":{"no-useless-return":"off","ava/no-ignored-test-files":"off","@typescript-eslint/ban-types":"off","@typescript-eslint/member-naming":"off","@typescript-eslint/no-explicit-any":"off","@typescript-eslint/no-empty-function":"off","@typescript-eslint/generic-type-naming":"off","@typescript-eslint/explicit-function-return-type":"off","@typescript-eslint/restrict-template-expressions":"off"},"extends":"xo-typescript","ignores":["example.js","webpack.config.js","dev-only.js"],"extensions":["ts"]},"ava":{"babel":false,"files":["dist/test/**","!dist/test/fixtures/**"],"compileEnhancements":false},"nyc":{"exclude":["dist/test"]},"dist":{"shasum":"4f938999fed6264c9048cd6254356e0f1e7f688c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ow/-/ow-0.17.0.tgz","fileCount":39,"integrity":"sha512-i3keDzDQP5lWIe4oODyDFey1qVrq2hXKTuTH2VpqwpYtzPiKZt2ziRI4NBQmgW40AnV5Euz17OyWweCb+bNEQA==","signatures":[{"sig":"MEUCIFpnWbQproozkkLLvHW+cOYfheetzevvzu3Y2VL66W6yAiEAgMpudEzHU/YftQiIBy6O6wH+veOBgjk9W9b46oRpB/M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":320040,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeURdrCRA9TVsSAnZWagAA+wYQAJIR0sBErodEkrjgjqHc\nEqYMsjF/Lxw6069Vce4XrmfGPj4pMRebAGDm2V16C1Pv5CjFYD/SzjhnACaO\nMZLp0yKlc900KxrZoulUU++ZiEgXDuGaf5pNaSqiXez57RMF3hsEDmkUSKU2\nancycdMmx0CrPOkiEr5TqqbBmRW3PA/R8qlYApVstBlX+dIEya17vfRIiidO\n+Lqzg/AYrzOOpkCg2TKpFImHfdwIYiL7bzBdN/59H4/gvMZ4mXy30OisGVBN\nh0h9eeBfwaQ8dE6BwVov/xYrZdQb8WfTfGnRkF3kMM2eQnbmidL2+puQCojC\nre6mIF+tmNDpDDDX4KfIVrxx/vK1y8B+qV6oCI2+CXDrS3RCa3oYkUsjoAcq\ng52N0g6pbcX/C9USwpmSwUher/iysQteJ5CiPm3MkN+EnpZoGVeMhm3PtFfI\nA2T+MhokiKg0UF2wToevisXGJ1DP5L/ayRJ7m6A3U7mbJA5F36d7PrxIKGiS\nMu8KZgULa70A/f0EmB9vpEnKtWJmQP8GefkC09mnrBADO4lVoJ/leIU5F8D1\n853A8H1SJRiZ6GvByVTdCwSrYoct1UTgEeLpn1b3NaglckhaF7ggQ4KN6zAy\ntsm84Y/Ksarb8pDB/kTceIIjQmGzWvJDRBNyD+A5RHjVYwi5A5K83NlnG11J\nW7mn\r\n=aRpx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/source","types":"dist/source","browser":{"./dist/source/utils/infer-label.js":"./dist/source/utils/infer-label.browser.js"},"engines":{"node":">=10"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"0e6c644cafbfa88008dc42f8a5b1626eb7a63bd1","scripts":{"docs":"typedoc source","test":"xo && nyc ava","build":"npm run clean && webpack","clean":"del-cli dist","compile":"npm run clean && tsc","pretest":"npm run compile -- --sourceMap","prepublishOnly":"npm run build"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/ow.git","type":"git"},"_npmVersion":"6.13.4","description":"Function argument validation for humans","directories":{},"sideEffects":false,"_nodeVersion":"10.18.1","dependencies":{"type-fest":"^0.11.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.26.1","ava":"^2.0.0","nyc":"^15.0.0","codecov":"^3.1.0","del-cli":"^3.0.0","typedoc":"^0.16.10","webpack":"^4.33.0","dot-prop":"^5.2.0","callsites":"^3.0.0","vali-date":"^1.0.0","typescript":"~3.8.2","@types/node":"^13.7.4","webpack-cli":"^3.3.10","lodash.isequal":"^4.5.0","@sindresorhus/is":"^2.1.0","@types/vali-date":"^1.0.0","@types/lodash.isequal":"^4.5.2","@sindresorhus/tsconfig":"^0.7.0","license-webpack-plugin":"^2.0.2","add-asset-webpack-plugin":"^1.0.0","@typescript-eslint/parser":"^2.20.0","awesome-typescript-loader":"^5.2.1","eslint-config-xo-typescript":"^0.26.0","@typescript-eslint/eslint-plugin":"^2.20.0","add-module-exports-webpack-plugin":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ow_0.17.0_1582372715278_0.3041977797416866","host":"s3://npm-registry-packages"}},"0.18.0":{"name":"ow","version":"0.18.0","keywords":["type","types","check","checking","guard","guards","assert","assertion","predicate","predicates","is","validate","validation","utility","util","typeof","instanceof","object"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"ow@0.18.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"}],"homepage":"https://github.com/sindresorhus/ow#readme","bugs":{"url":"https://github.com/sindresorhus/ow/issues"},"xo":{"rules":{"no-useless-return":"off","ava/no-ignored-test-files":"off","@typescript-eslint/ban-types":"off","@typescript-eslint/no-unused-vars":"off","@typescript-eslint/no-explicit-any":"off","import/no-anonymous-default-export":"off","@typescript-eslint/no-empty-function":"off","@typescript-eslint/explicit-function-return-type":"off","@typescript-eslint/restrict-template-expressions":"off"},"extends":"xo-typescript","ignores":["example.js","webpack.config.js","dev-only.js"],"extensions":["ts"]},"ava":{"babel":false,"files":["dist/test/**","!dist/test/fixtures/**"],"compileEnhancements":false},"nyc":{"exclude":["dist/test"]},"dist":{"shasum":"68fbd5747c932db398e8be1334408ef4b1f00708","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ow/-/ow-0.18.0.tgz","fileCount":39,"integrity":"sha512-2Rc7sTon3MDhWsrMB4mbppPA6ldQmGtDQadpE03RQw3ebcgsuNw43IYa1eDWwrSdWglCikduZC8cuBLnA34Teg==","signatures":[{"sig":"MEQCIB01MqGSELrT/byCy8cFh/DKE+VQJcYqCQvDl2j0AK4DAiBwIObAUZ5io6H+s1LBI9jaK/k7/dHV4g3zpwKwqtZBjw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":328249,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfdHs0CRA9TVsSAnZWagAADPkP/jTVtsRV3qof0wU4/55Y\nArDbIx8VsdhJlknbAdkPrjJkkd15VqvKPZuQqFLOi0wK/X4LHYaVLwxYokpU\nnH10jYSkyuHDjW8CGKcjiHcrkENZu9vErcP9ujsRokx6D2hgAjZNaETiOzAa\na1uVmUEt3VihuiLvWvWgIvqx8G6vW3HMnXp84QH4lGABS8ZYlpo9mUZ+KLpo\n1SiJdIST/H19C2wB37+VcGk8sWkdNlZY4/HoBiIYW0v7Rbd+33Bc70w3F44b\nNK+JHnfDaS0Q5h+Zk0+AaDhfQwV3w8aGVMqW9ZMU6SFTMnyVlapy6ol7CYBZ\niznxZJaqXl0TgHrtu3g6oFGDS6o4GlZUM63Cd0Y1Q4aTkpz45o1wVoge11tT\nYS7flW3+73mafyRKlgEnp90xyrqUMDyR8nlS4mTMrNvI17OEc8z3uTT29aRU\nSOZxxXld082ZOshHQ4Ain89w5ELkedu4fBGxAc7vYJNHs9QAaeiHMYrqy8W7\n3TndG2k3h15eNJtIScrHlBEbfy0snD77LxPSh6xGEL9Grwz5OGgDM7MI1vB5\nJhGou8gbhvRdw36xsx5v6GdpSE8V4I7QGnC4Fv5PknqHYH5qowgu8FFl23a6\nwyF/Km3j06S3mPHD4HMkXChWIaBNEoFVz0NkiQ1ZBZbBQ2zLzgs1wM/AkdCv\nvYR3\r\n=ijdj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/source","types":"dist/source","browser":{"./dist/source/utils/infer-label.js":"./dist/source/utils/infer-label.browser.js"},"engines":{"node":">=10"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"109379b275d424480b8d0f68435eea7887c6ac83","scripts":{"docs":"typedoc source","test":"xo && nyc ava","build":"npm run clean && webpack","clean":"del-cli dist","compile":"npm run clean && tsc","pretest":"npm run compile -- --sourceMap","prepublishOnly":"npm run build"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/ow.git","type":"git"},"_npmVersion":"6.14.8","description":"Function argument validation for humans","directories":{},"sideEffects":false,"_nodeVersion":"14.11.0","dependencies":{"type-fest":"^0.17.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.33.1","ava":"^2.0.0","nyc":"^15.0.0","codecov":"^3.1.0","del-cli":"^3.0.0","typedoc":"^0.19.2","webpack":"^4.33.0","dot-prop":"^5.2.0","callsites":"^3.0.0","vali-date":"^1.0.0","typescript":"~4.0.3","@types/node":"^14.11.2","webpack-cli":"^3.3.10","lodash.isequal":"^4.5.0","@sindresorhus/is":"^3.1.2","@types/vali-date":"^1.0.0","@types/lodash.isequal":"^4.5.2","@sindresorhus/tsconfig":"^0.7.0","license-webpack-plugin":"^2.0.2","add-asset-webpack-plugin":"^1.0.0","@typescript-eslint/parser":"^4.3.0","awesome-typescript-loader":"^5.2.1","eslint-config-xo-typescript":"^0.33.0","@typescript-eslint/eslint-plugin":"^4.3.0","add-module-exports-webpack-plugin":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ow_0.18.0_1601469235572_0.9790621723969222","host":"s3://npm-registry-packages"}},"0.19.0":{"name":"ow","version":"0.19.0","keywords":["type","types","check","checking","guard","guards","assert","assertion","predicate","predicates","is","validate","validation","utility","util","typeof","instanceof","object"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"ow@0.19.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"}],"homepage":"https://github.com/sindresorhus/ow#readme","bugs":{"url":"https://github.com/sindresorhus/ow/issues"},"xo":{"rules":{"no-useless-return":"off","ava/no-ignored-test-files":"off","@typescript-eslint/ban-types":"off","@typescript-eslint/no-unused-vars":"off","@typescript-eslint/no-explicit-any":"off","import/no-anonymous-default-export":"off","@typescript-eslint/no-empty-function":"off","@typescript-eslint/explicit-function-return-type":"off","@typescript-eslint/restrict-template-expressions":"off"},"extends":"xo-typescript","ignores":["example.js","webpack.config.js","dev-only.js"],"extensions":["ts"]},"ava":{"babel":false,"files":["dist/test/**","!dist/test/fixtures/**"],"compileEnhancements":false},"nyc":{"exclude":["dist/test"]},"dist":{"shasum":"7f1c818b929a715904819fbb70cb539307b360aa","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ow/-/ow-0.19.0.tgz","fileCount":39,"integrity":"sha512-xv/vJrp5Pnt4kOVxwR9QniIzr4Ktd5LfnayoUhPYJbW2A6EZ6rPKWJLYySOxU4wjghEn0eg5/GFTAlnl3HEVcA==","signatures":[{"sig":"MEUCIQDOv1R9O3ht53C+hpfawX0REv+936PmgHcIHLbwUVaHLwIgYx+RwD6lzi+cVAWQjC5P0JeW4i9ExELZhUKPAzPvWyo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":323428,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfm1FaCRA9TVsSAnZWagAAexUP/jwnS1dPYCLnrlqXa4TY\nML1GbESWHPc3bQM1O95/ikzpfszRDn/qa2qgjSJI9hoFeHYc3SlrWyhPINLB\nUFinUeXiBjAQ0hJqRjjeTRhoqWT1efP6LMqxDEia71FsmI3gR6GovmRbJrI3\nxFIh9kET9ObltnuuBpFPwhfJP90yhh7bMpCh5Zgs95HVVOEkzocyj+Mnk9WO\n7IteaZPjSbT91+RMFnJdM1R/8oD982nJWzDZlL4auJa9quLqgk8BebrFs+GB\nfCTOCdOu/m0NFm22lI4ppG3MF5iP0k1aCLQ27Qi9FRUg3x9JqdZjFEsKfo7z\nzqdlJsp//cnhVzD/+SLNPCeuUFtoeOGco49QFyHwP3wVZksEnsuqFOOxenEh\nOT1yVDpizETllZhaDgsMMJrff5TUwFNjpDmpSE3an2WIIVvW8FG+T0Yl97bB\n+sgk3r4ZG9GtC22oG60C8gsYxqAeNQuCA529Hgb19OPqmuUXSRIsMMNYMzGm\n01VBbsqFRWs5qb+a9RctCUOZQDRTf+e4B4gRfsUbDZTlWLmTabfYVFfjHeOb\nZCjwxmMju7hy+p2+KrEUqWQKzNzjr9FIZUuAvUnEzlpe08P6FosTDMX3jSOY\na5zk/wtim7Edc9lnhT98pAVKkOhiEC+62+1DOWxKy/BJh2mwTJHTGLnNp0F4\nzDO2\r\n=T/Jp\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/source","types":"dist/source","browser":{"./dist/source/utils/infer-label.js":"./dist/source/utils/infer-label.browser.js"},"engines":{"node":">=10"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"bbe9c23a55bf4291f390cf5b078dd10847272e78","scripts":{"docs":"typedoc source","test":"xo && nyc ava","build":"npm run clean && webpack","clean":"del-cli dist","compile":"npm run clean && tsc","pretest":"npm run compile -- --sourceMap","prepublishOnly":"npm run build"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/ow.git","type":"git"},"_npmVersion":"6.14.8","description":"Function argument validation for humans","directories":{},"sideEffects":false,"_nodeVersion":"14.11.0","dependencies":{"type-fest":"^0.18.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.34.1","ava":"^2.0.0","nyc":"^15.1.0","codecov":"^3.8.0","del-cli":"^3.0.1","typedoc":"^0.19.2","webpack":"^5.3.1","dot-prop":"^6.0.0","callsites":"^3.1.0","vali-date":"^1.0.0","typescript":"~4.0.5","@types/node":"^14.14.6","webpack-cli":"^4.1.0","lodash.isequal":"^4.5.0","@sindresorhus/is":"^4.0.0","@types/vali-date":"^1.0.0","@types/lodash.isequal":"^4.5.5","@sindresorhus/tsconfig":"^0.7.0","license-webpack-plugin":"^2.3.1","add-asset-webpack-plugin":"^1.0.0","@typescript-eslint/parser":"^4.6.0","awesome-typescript-loader":"^5.2.1","eslint-config-xo-typescript":"^0.35.0","@typescript-eslint/eslint-plugin":"^4.6.0","add-module-exports-webpack-plugin":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ow_0.19.0_1604014426032_0.7596183106279522","host":"s3://npm-registry-packages"}},"0.20.0":{"name":"ow","version":"0.20.0","keywords":["type","types","check","checking","guard","guards","assert","assertion","predicate","predicates","is","validate","validation","utility","util","typeof","instanceof","object"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"ow@0.20.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"}],"homepage":"https://github.com/sindresorhus/ow#readme","bugs":{"url":"https://github.com/sindresorhus/ow/issues"},"xo":{"rules":{"no-useless-return":"off","ava/no-ignored-test-files":"off","@typescript-eslint/ban-types":"off","@typescript-eslint/no-unused-vars":"off","@typescript-eslint/no-explicit-any":"off","import/no-anonymous-default-export":"off","@typescript-eslint/no-empty-function":"off","@typescript-eslint/explicit-function-return-type":"off","@typescript-eslint/restrict-template-expressions":"off"},"ignores":["example.js","dev-only.js","source/utils/infer-label.browser.ts"],"parserOptions":{"project":"./tsconfig.xo.json"}},"ava":{"babel":false,"files":["test/**","!test/fixtures/**"],"require":["ts-node/register"],"extensions":["ts"],"compileEnhancements":false},"dist":{"shasum":"b61447bfbe887b92e4a3be7a19fd9c9c51c9bdf4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ow/-/ow-0.20.0.tgz","fileCount":68,"integrity":"sha512-jZNOCxOhz8OBNHp24PcII4oyIe9M9X9RZth0pflVT0OkAVLsZLWXKrFGC1QrlNJXsawCdSWkGfm7TRhyjx5+nQ==","signatures":[{"sig":"MEYCIQDCCk353BW42SB/FtbfzcimeNo70lqKoGK0tKGJ03k5YgIhAPpMCE2V7J0akiVOc2/8BxuYNjO/GPMsmklXNamoNflS","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":126984,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfwgKcCRA9TVsSAnZWagAAVLUQAKL+i+o99yLNLnZOBJsp\nRBDfbXLPXXURWdOlyEHhCcfnh1T77ZMxK/BG1ZT3UWI/8ExcOLE1j+cDhc1x\nvJRbHw+l3PBP7dlQxLfAIGNgkrMG9aKW4AygVaNbCIs8nwnJwUqmKPcwl1PG\nYdJx5MO6GKira7Ng44Hu9e4W34MCfP0vr7EEBS34U15L09O8RGIZi3VevH5V\nuGdy5O0e/v21b7MxTFwjrYZwIL/aWkWG7N4If9Uq8VNq1tOldZe0OjQ8Toa9\n+b72pjxzAj4A1MqeiX88ZKQHxP+oWI45A/w4/6vcvKcoen+11AaMJl67FM9P\nYrbhFeAaKcI/T/D6ubrOzD2YRwN6XHvy2NVjRn8LEs1Fnpb/oD/fW+GrcwTX\n4DuTmC3rTiXne8ohv1a4qo81gp/XsUBtzfu6VePDVWgy8PVGiVFPkGB0wLZA\nWklAxfAsg4M3d/dfJoDKzTvlvvnwDezVD+xfCm95ifuxPlby+F8ASAdqP0vJ\nBxtQF/51wdMlF+KVVGKQHFtT62lejnR/lJIBdNMhSROYpzHG7pge3IWj/4bB\nDIc0fUpuqxuDofNwMw94VelG1nOIj84NOzOa8lp1xN5LML4c+denPOmtKoQU\n4ucgcdQActO+zOTJseMIGG95n06RHEx3Yd+AQyp2XW4zCgvVSWrz2cel+Bgg\ny+ZX\r\n=9IUB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","types":"dist","browser":{"./dist/utils/infer-label.js":"./dist/utils/infer-label.browser.js"},"engines":{"node":">=10"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"72c1463a74853ecc6adf41f5aca1b9d7162f43b9","scripts":{"docs":"typedoc source","test":"xo && nyc ava","build":"del-cli dist && tsc","example":"npm run build && node example.js","prepublishOnly":"npm run build"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/ow.git","type":"git"},"_npmVersion":"6.14.9","description":"Function argument validation for humans","directories":{},"sideEffects":false,"_nodeVersion":"10.22.1","dependencies":{"dot-prop":"^6.0.1","callsites":"^3.1.0","type-fest":"^0.20.2","vali-date":"^1.0.0","lodash.isequal":"^4.5.0","@sindresorhus/is":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.35.0","ava":"^2.0.0","nyc":"^15.1.0","del-cli":"^3.0.1","ts-node":"^9.0.0","typedoc":"^0.19.2","typescript":"~4.1.2","@types/node":"^14.14.10","@types/vali-date":"^1.0.0","@types/lodash.isequal":"^4.5.5","@sindresorhus/tsconfig":"^0.8.0"},"_npmOperationalInternal":{"tmp":"tmp/ow_0.20.0_1606550171593_0.914625277280513","host":"s3://npm-registry-packages"}},"0.21.0":{"name":"ow","version":"0.21.0","keywords":["type","types","check","checking","guard","guards","assert","assertion","predicate","predicates","is","validate","validation","utility","util","typeof","instanceof","object"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"ow@0.21.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"}],"homepage":"https://github.com/sindresorhus/ow#readme","bugs":{"url":"https://github.com/sindresorhus/ow/issues"},"xo":{"rules":{"no-useless-return":"off","ava/no-ignored-test-files":"off","@typescript-eslint/ban-types":"off","@typescript-eslint/no-unused-vars":"off","@typescript-eslint/no-explicit-any":"off","import/no-anonymous-default-export":"off","@typescript-eslint/no-empty-function":"off","@typescript-eslint/explicit-function-return-type":"off","@typescript-eslint/restrict-template-expressions":"off"},"ignores":["example.js","dev-only.js","source/utils/infer-label.browser.ts"],"parserOptions":{"project":"./tsconfig.xo.json"}},"ava":{"babel":false,"files":["test/**","!test/fixtures/**"],"require":["ts-node/register"],"extensions":["ts"],"compileEnhancements":false},"dist":{"shasum":"c2df2ad78d1bfc2ea9cdca311b7a6275258df621","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ow/-/ow-0.21.0.tgz","fileCount":68,"integrity":"sha512-dlsoDe39g7mhdsdrC1R/YwjT7yjVqE3svWwOlMGvN690waBkgEZBmKBdkmKvSt5/wZ6E0Jn/nIesPqMZOpPKqw==","signatures":[{"sig":"MEQCIAGQgPDMXbO+OSLTVclKHUIvkbA+fpz/O+lYakhvry8GAiBv46oruLP3MI0Hy//XNjOlewpcq/pJ5Z+DTZuLGfRv1Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":128690,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf3jhGCRA9TVsSAnZWagAA9+QP/0wCkgIWTSipehAUXOcG\nfmgD2RqN5tZnSxfGRrUr7pLHv3i8BA5wGCpZNgBCy0TPhCZD4TAU1LzX8fom\n+Z5JIA6r32GvG2R+4cBPT5z48tCegwHk8IX+MPolMfiw9tsgev8RyoqlQIIX\nbGCUG7XYxMb2N80beK8Ht27Ml6XaOfeuRK7D/N9op7dxXOnMptXbmKWkbgnC\n8cUHLJBYBqqGMnsR8BUCtbvGlz1FadVUto9e0l9ys3/FXcKFAeQ7t+P/NtPy\nf2liM3xdwl6IbwzmXNHFR32ysErotb6U0WR+JW4B398LV3E7laK5gkqH3jR3\n1YMh7m9+NFC8LNwfjlOvmaBLH4ojmEEJIyZ4C0miOTRlHrQmrH7KstvH8Dd2\naAKBg2JngX+SvWP52p9DmmW5SCOGBIK8jFLTLZH5nFxB3Pa4gOvvjfyNWIr7\neJF7SnGOzaUfrRhuEZs41Zb0VsM8gGYQYS4rTJ2VNOWfiDHr1bre/yEzjrjf\nrJwIqf2AQ+BR2hC72by9BTbvzz94FzKpJ157VHRiu56dZAsNFbM2V/vb063/\n44JZoL4oqqTPY0+uRN+/hZDCL9KJbsgBhBU2F2GK5YuF9VujdhRHLB38aNGq\n3HG1Gny0zidNNlAeQgZJOqrDrCzaSc2anrbaU4a1ENOABROdROKaGC7cmd0m\nGQwK\r\n=wvO6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","types":"dist","browser":{"./dist/utils/infer-label.js":"./dist/utils/infer-label.browser.js"},"engines":{"node":">=10"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"9b6679c4b925443a890122d04804b2766290b4d9","scripts":{"docs":"typedoc source","test":"xo && nyc ava","build":"del-cli dist && tsc","example":"npm run build && node example.js","prepublishOnly":"npm run build"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/ow.git","type":"git"},"_npmVersion":"6.14.9","description":"Function argument validation for humans","directories":{},"sideEffects":false,"_nodeVersion":"10.22.1","dependencies":{"dot-prop":"^6.0.1","callsites":"^3.1.0","type-fest":"^0.20.2","vali-date":"^1.0.0","lodash.isequal":"^4.5.0","@sindresorhus/is":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.36.1","ava":"^2.0.0","nyc":"^15.1.0","del-cli":"^3.0.1","ts-node":"^9.1.1","typedoc":"^0.19.2","typescript":"~4.1.3","@types/node":"^14.14.14","expect-type":"^0.11.0","@types/vali-date":"^1.0.0","@types/lodash.isequal":"^4.5.5","@sindresorhus/tsconfig":"^0.8.0"},"_npmOperationalInternal":{"tmp":"tmp/ow_0.21.0_1608398917938_0.28864061587811873","host":"s3://npm-registry-packages"}},"0.22.0":{"name":"ow","version":"0.22.0","keywords":["type","types","check","checking","guard","guards","assert","assertion","predicate","predicates","is","validate","validation","utility","util","typeof","instanceof","object"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"ow@0.22.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"}],"homepage":"https://github.com/sindresorhus/ow#readme","bugs":{"url":"https://github.com/sindresorhus/ow/issues"},"xo":{"rules":{"no-useless-return":"off","ava/no-ignored-test-files":"off","@typescript-eslint/ban-types":"off","@typescript-eslint/no-unused-vars":"off","@typescript-eslint/no-explicit-any":"off","import/no-anonymous-default-export":"off","@typescript-eslint/no-empty-function":"off","@typescript-eslint/explicit-function-return-type":"off","@typescript-eslint/restrict-template-expressions":"off"},"ignores":["example.js","dev-only.js","source/utils/infer-label.browser.ts"],"parserOptions":{"project":"./tsconfig.xo.json"}},"ava":{"babel":false,"files":["test/**","!test/fixtures/**"],"require":["ts-node/register"],"extensions":["ts"],"compileEnhancements":false},"nyc":{"reporter":["text","lcov"]},"dist":{"shasum":"d83637055b6aebb40a3bcb51447d2825ecb375bc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ow/-/ow-0.22.0.tgz","fileCount":72,"integrity":"sha512-VZpjntwsFxg+oM2pZ0Km8p6+FLAugD86TQWHmz0Ldm/rfSs6qezggArumK+FrBUFAXodWULJrbV5ie0LkhWJdQ==","signatures":[{"sig":"MEQCIBorrQ8ABZEivFGfPm1vKJJ1mfoRRzfJBBOFIVdomvXxAiBsBQ1MatnQhatsTzgFSk2/sFxmyu18+OAOFwIjhlV5gg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":134509,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf+JsACRA9TVsSAnZWagAA7Z4P/R2ZYf3oGT5Ve5mORmMP\nMs9WcrLYYy7u9+mXxyzfAcFEZMQa8LBatV6uvGGOIdBoQho1Rpe+DrI7PQBs\niwX8ARj7qILNaY0JGC2wvS0/oQHluPM7klpO2KKAV+MtFx3cXcXI8iP0O1Bw\nk/Yr56kJ/Bng+n3wf3A/N1OKkVwMWfqfDbde26udAFKKtkxgThMriPQ2blLn\nD+j+BBDX44o8pfSM3U78jgjdsDv61uxcVUj5sifTQ0dMj1MBDCe7fZuaG4UV\nL3PaaubGbHYSEGjzb+//Os7rj5MsFyYITKGTAlHkuDd0b8WZCEQaBerA83SE\nkM8wOk6UQ5wdMuWQXLb+cRrmyP/JmB+VmirRhyo0gdrdnv+U08NbJjq4Nl2S\nnStBWHkO/KgAV6gwtjIFtUJGtcTBLdoTjAiJa0iedExo2ukT0x4PjtaOw12o\ngNezMbcoP5fhriYnrQ2E4LwgwFUTGnhbW/Rk17dYbW7Mo2NgfZiHyMXorgPl\nI6+9xubqSQgdm9B67jtqcixhX0sClADDqNSM9Mkw304DvwmhJiBFS77eK0hl\nBS/FpQs478bzG+IkyZfVnmnktCxTQbxKfYboYMpZ90bExKHm9kfNdKbd1Vlf\nuz8hlyrpOHwUBlz3R8Fdvm6AtSPAc832RSrZsxgSmHBoSAblegwJEO1q1lz/\nR7Xk\r\n=/DoE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","types":"dist","browser":{"./dist/utils/infer-label.js":"./dist/utils/infer-label.browser.js"},"engines":{"node":">=10"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"716b70f6932682fb846c675d25ab1b3654cb466c","scripts":{"docs":"typedoc source/index.ts","test":"xo && nyc ava","build":"del-cli dist && tsc","example":"npm run build && node example.js","prepublishOnly":"npm run build"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/ow.git","type":"git"},"_npmVersion":"6.14.10","description":"Function argument validation for humans","directories":{},"sideEffects":false,"_nodeVersion":"15.5.0","dependencies":{"dot-prop":"^6.0.1","callsites":"^3.1.0","type-fest":"^0.20.2","vali-date":"^1.0.0","lodash.isequal":"^4.5.0","@sindresorhus/is":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.37.1","ava":"^2.4.0","nyc":"^15.1.0","del-cli":"^3.0.1","ts-node":"^9.1.1","typedoc":"^0.20.13","typescript":"~4.1.3","@types/node":"^14.14.20","expect-type":"^0.11.0","@types/vali-date":"^1.0.0","@types/lodash.isequal":"^4.5.5","@sindresorhus/tsconfig":"^0.8.0"},"_npmOperationalInternal":{"tmp":"tmp/ow_0.22.0_1610128127674_0.7734660048954887","host":"s3://npm-registry-packages"}},"0.23.0":{"name":"ow","version":"0.23.0","keywords":["type","types","check","checking","guard","guards","assert","assertion","predicate","predicates","is","validate","validation","utility","util","typeof","instanceof","object"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"ow@0.23.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"}],"homepage":"https://github.com/sindresorhus/ow#readme","bugs":{"url":"https://github.com/sindresorhus/ow/issues"},"xo":{"rules":{"no-useless-return":"off","ava/no-ignored-test-files":"off","@typescript-eslint/ban-types":"off","@typescript-eslint/no-unused-vars":"off","@typescript-eslint/no-explicit-any":"off","import/no-anonymous-default-export":"off","@typescript-eslint/no-empty-function":"off","@typescript-eslint/explicit-function-return-type":"off","@typescript-eslint/restrict-template-expressions":"off"},"ignores":["example.js","dev-only.js","source/utils/infer-label.browser.ts"],"parserOptions":{"project":"./tsconfig.xo.json"}},"ava":{"babel":false,"files":["test/**","!test/fixtures/**"],"require":["ts-node/register"],"extensions":["ts"],"compileEnhancements":false},"nyc":{"reporter":["text","lcov"]},"dist":{"shasum":"2c3b270adad96886b4c916a38458a3586648993e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ow/-/ow-0.23.0.tgz","fileCount":72,"integrity":"sha512-aAM7+00uoPXPIE1cmyh/3WJpzu2vihxymGYjpZl/MZ0OsCgVizJbCD4B5gm+/iMHvOmbdDCEIqtvSMqS9DLYcQ==","signatures":[{"sig":"MEQCIEXO93eYaEfIDjZm+6blQXp/o0095AaTtfDPGiLuAh5DAiAyquwmd9JMzTmn1Wdp1AZTA/6FNY7gSkqgiYeUYzt60Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":135186,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgCAEtCRA9TVsSAnZWagAAesYQAJcIRk1/bQoS9RpX1W93\nWlIWXMydNiE7FlJhTVtkb7WiqAhd67fJbHdCL90lWeJMaSzvPdYSEAYRpAYs\n73hZgbFKhSxXZW0rB2gwpYr+ioP4bbSRjD4/HbP5ABKQ99yXPza45t2sWhHh\nmFhyryOXdsBkvn/mU+ahhWNdVN6YpqD39wZsz8aei2HWr6LODSKeP2L3drwI\n+KKAFwKR6lSiSJqLbRNk9CLP7WkcQgekkLKfio7xZ0ijHP6yrTDhCqaZs8Nu\ndYi22TqIK7hJFFscRY2fe7X19OEoX49X+Lh/fwOoOjvbii0Gb63sd0gGGTe5\nClkyXnODrr6yje0pwFY4rUGCC432bQdhpFrbbp2XdQ4NunLWuK19Tah+jiNC\nGtiDiTrsEjkO+1pbJV47dFmCWTzNuD9JTxgjjRqTPhrKlqZEz5iV2sTNocFw\ny3ancfLMZ0oLJcFE2hf4tU+ycl+d4/TQ43lmafmNw39RnwBrAlh+Ugl4Qsu9\nkRA9XaUyRvdPe66zibw+Pq89vDZ0v5gsBPlPLmKg+nyI6vTONWovcQ3T5vVC\noB8kPxID6vdMdNqbElel4t4FsrvB/PzE15mTItYgsb7Y+n27shAkUkwzgYxc\n2aD8psL4YEWYeUePtutnoG02nucJysySY9rDYpzW8chYB/KD5hB096avUxmh\nqn6K\r\n=N7kK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","types":"dist","browser":{"./dist/utils/infer-label.js":"./dist/utils/infer-label.browser.js"},"engines":{"node":">=10"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"7798207f23c1553b07dab4dd75c7b42035d869ac","scripts":{"docs":"typedoc source/index.ts","test":"xo && nyc ava","build":"del-cli dist && tsc","example":"npm run build && node example.js","postpublish":"gh-pages --dist docs --no-history --message \"Deploy documentation\"","prepublishOnly":"npm run build"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/ow.git","type":"git"},"_npmVersion":"6.14.10","description":"Function argument validation for humans","directories":{},"sideEffects":false,"_nodeVersion":"12.20.1","dependencies":{"dot-prop":"^6.0.1","callsites":"^3.1.0","type-fest":"^0.20.2","vali-date":"^1.0.0","lodash.isequal":"^4.5.0","@sindresorhus/is":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.37.1","ava":"^2.4.0","nyc":"^15.1.0","del-cli":"^3.0.1","ts-node":"^9.1.1","typedoc":"^0.20.13","gh-pages":"^3.1.0","typescript":"~4.1.3","@types/node":"^14.14.20","expect-type":"^0.11.0","@types/vali-date":"^1.0.0","@types/lodash.isequal":"^4.5.5","@sindresorhus/tsconfig":"^0.8.0"},"_npmOperationalInternal":{"tmp":"tmp/ow_0.23.0_1611137325325_0.17456035835368744","host":"s3://npm-registry-packages"}},"0.23.1":{"name":"ow","version":"0.23.1","keywords":["type","types","check","checking","guard","guards","assert","assertion","predicate","predicates","is","validate","validation","utility","util","typeof","instanceof","object"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"ow@0.23.1","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"}],"homepage":"https://github.com/sindresorhus/ow#readme","bugs":{"url":"https://github.com/sindresorhus/ow/issues"},"xo":{"rules":{"no-useless-return":"off","ava/no-ignored-test-files":"off","@typescript-eslint/ban-types":"off","@typescript-eslint/no-unused-vars":"off","@typescript-eslint/no-explicit-any":"off","import/no-anonymous-default-export":"off","@typescript-eslint/no-empty-function":"off","@typescript-eslint/explicit-function-return-type":"error","@typescript-eslint/restrict-template-expressions":"off"},"ignores":["example.js","dev-only.js","source/utils/infer-label.browser.ts"],"parserOptions":{"project":"./tsconfig.xo.json"}},"ava":{"babel":false,"files":["test/**","!test/fixtures/**"],"require":["ts-node/register"],"extensions":["ts"],"compileEnhancements":false},"nyc":{"reporter":["text","lcov"]},"dist":{"shasum":"f70af10b5bc99ca3996c1c3a8f219b0a4bbabc16","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ow/-/ow-0.23.1.tgz","fileCount":72,"integrity":"sha512-tU9NCFp5bFTPf4FytkimLv0RE2ej20R2HPgk6ZMgBg4yuERKxqjPMk0OXZbbX5vnB6k1TXL4qKJqhRTkUBtGPA==","signatures":[{"sig":"MEUCIDDuVywox05+pVaRAYWwM/TTaqdfLTBIZfScPTSEzYvhAiEAxPZFS0H2XRFd8kSnI9MdTXuYFcEhdGCrA6WovCL4cBc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":135350,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgubrQCRA9TVsSAnZWagAAUG0P/RQfjjUwl5ICAkQ3PTT6\n/Wh8lex0IVW7WgeDU3x1HIAPFBv/QLgtJ7uegRSTs0X6VXdMxpib2bexNVxI\n/RucoU9rWzeq/G+Y8pdjMqVqB4JjnYanYbY4wX2dzpZy/MNuFSkD2xkI0jvm\nw4vSWkCiKOTkJ5bWUM+eD1scRlJaiBjV5WilH3nPaQR//k2QhpDJxIkH1P4E\nQEVadIyKAGaupI0suwXpXraYJi4+DkYVXT9ldfNvcFoFT35zT7bk5r0C+eHu\nEOzkSCoO9RN/IlJi2UQ8gjscFmTAVcbhRoktZX1YH1c7l8bzm/V75AwgVK1D\nWO+d7sQIPFHdyMZm5ipNIuBQGsID3XW6gtcrk6yclPKiKr+rEI2tDTVLYPeL\nYW348qUmn8KfKbhNIzk6ZgOyyImm5f6ZirBHqoq4YAjFpGV7YEMLA1DB2hmW\n9cUdBZT6bG4WzgddJ46Uj/gXZLRKxAGAX9jHgFio9pp3Iv24U3sCNR2Vk/DN\n5CdnJPSIxaihTMyZX8/2tGSJFgi0pAlBAAYsyJekmCTSacwPmUUzkfOGpJsm\noeBmPxNN7CcvS04DJWL0bhxodYikC420BqhLNBoVVIEXeZ32T8eLSe1z/Ntu\n8qJ6HaEk6XauHLVMRXZJQBwx2ijxSKOf4KHr4f/Hxr/Bp5t19CHBQX2RSArk\nWIno\r\n=r75B\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","types":"dist","browser":{"./dist/utils/infer-label.js":"./dist/utils/infer-label.browser.js"},"engines":{"node":">=10"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"909b670d75c11e04151d9fe16d052d7f42f57cb6","scripts":{"docs":"typedoc source/index.ts","test":"xo && nyc ava","build":"del-cli dist && tsc","example":"npm run build && node example.js","prepare":"npm run build","// postpublish":"npm run docs && gh-pages --dist docs --no-history --message \"Deploy documentation\""},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/ow.git","type":"git"},"_npmVersion":"7.10.0","description":"Function argument validation for humans","directories":{},"sideEffects":false,"_nodeVersion":"16.2.0","dependencies":{"dot-prop":"^6.0.1","callsites":"^3.1.0","type-fest":"^1.2.0","vali-date":"^1.0.0","lodash.isequal":"^4.5.0","@sindresorhus/is":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.38.2","ava":"^2.4.0","nyc":"^15.1.0","del-cli":"^3.0.1","ts-node":"^10.0.0","gh-pages":"^3.2.0","typescript":"^4.3.2","@types/node":"^15.6.2","expect-type":"^0.11.0","@types/vali-date":"^1.0.0","@types/lodash.isequal":"^4.5.5","@sindresorhus/tsconfig":"^0.8.0"},"_npmOperationalInternal":{"tmp":"tmp/ow_0.23.1_1622784719913_0.8730005411935644","host":"s3://npm-registry-packages"}},"0.24.0":{"name":"ow","version":"0.24.0","keywords":["type","types","check","checking","guard","guards","assert","assertion","predicate","predicates","is","validate","validation","utility","util","typeof","instanceof","object"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"ow@0.24.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"}],"homepage":"https://github.com/sindresorhus/ow#readme","bugs":{"url":"https://github.com/sindresorhus/ow/issues"},"xo":{"rules":{"no-useless-return":"off","ava/no-ignored-test-files":"off","@typescript-eslint/ban-types":"off","@typescript-eslint/no-unused-vars":"off","@typescript-eslint/no-explicit-any":"off","import/no-anonymous-default-export":"off","@typescript-eslint/no-empty-function":"off","@typescript-eslint/explicit-function-return-type":"error","@typescript-eslint/restrict-template-expressions":"off"},"ignores":["example.js","dev-only.js","source/utils/infer-label.browser.ts"],"parserOptions":{"project":"./tsconfig.xo.json"}},"ava":{"babel":false,"files":["test/**","!test/fixtures/**"],"require":["ts-node/register"],"extensions":["ts"],"compileEnhancements":false},"nyc":{"reporter":["text","lcov"]},"dist":{"shasum":"f81c601a8818fae597d87f5c65ce43dc29aca1c4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ow/-/ow-0.24.0.tgz","fileCount":74,"integrity":"sha512-aZxLOP7GWcp5zLnH+ZyriN2bHYPfwRgJI1YwAvJIO7yJeREbuHAzZq8DGnQn8vV7/YGrQOiasIc48ryo10qAJw==","signatures":[{"sig":"MEUCIQD/NHqO/0rviKVCRnU0afg6mglPZ6/cwyRs2DcWcO9biQIgfjxOv4xfF8YPgTSSpOyWrh1Wc/eZzMO6cXQhoGGupJI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":135853,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgu0dsCRA9TVsSAnZWagAADZAQAJx5FCwR8luiYvDXLYhw\nTeL5edXv8cIcfcmGukoANPWN3AuIcf0N4GjAqRwnP3te9+u3KO3vd2D/OLlc\nQzy1JpLPR5/409f3G+QUWwAkI8THKtX/njAl0rlF/gAuTdS36Y2Xbz/JS78R\nlopjS4iTVn7L3GuQhOQaEMRi7P3qGN+rkgwpQozkCWzfrlX/xv5hobEIp24J\n/mFNw+qYZEO5x3TqEZH+He5Mzb3/Vpp71XN/o0OeIk07D6H/GUc51LFB+bFP\nPbt765KBeNRbduYrVTbu40SivNJxtNWzpw/tVCI4rKPLAOK9GtIoAlpqaYex\nwUpjpqyk1RZXcf3PqSCN657ww0Z4bTLz9l9uas4XIaa1bI4QEr76CImUc41d\nFt4vTH5UV/2StW+8/fWqx9lDl0xUKrr3NsM7dwSL6bfG3RrMQQMw72q1AQBY\nSiKdpA0HAKLi6psZCAj/7xjvh/piZ3Je7mWBEcyGIQ4vjlUc7LZyFVsLLk3Z\ngquWeTYv3y29oQEP85B8hi77J6W8s7mJae7xXJRa9An+Y1ORN83EaXSiZkyI\nAyDp4AxwMGCGTm7ZO+E0qb0SAd6kdUj9c9kBAeBV2eej/o79ohfzexm5fJUI\nFOsOLZUDsid96oFiN5vIiwnAaIdRt1Xb/FX549zFEnGozITXVMW28gmcbvJp\nH8tl\r\n=Ca5U\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","types":"dist","browser":{"./dist/utils/infer-label.js":"./dist/utils/infer-label.browser.js"},"engines":{"node":">=12"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"fddbd2707fa237f2d42a24222b25fdaa1da05cbd","scripts":{"docs":"typedoc source/index.ts","test":"xo && nyc ava","build":"del-cli dist && tsc","example":"npm run build && node example.js","prepare":"npm run build","// postpublish":"npm run docs && gh-pages --dist docs --no-history --message \"Deploy documentation\""},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/ow.git","type":"git"},"_npmVersion":"7.10.0","description":"Function argument validation for humans","directories":{},"sideEffects":false,"_nodeVersion":"16.2.0","dependencies":{"dot-prop":"^6.0.1","callsites":"^3.1.0","type-fest":"^1.2.0","vali-date":"^1.0.0","lodash.isequal":"^4.5.0","@sindresorhus/is":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.38.2","ava":"^2.4.0","nyc":"^15.1.0","del-cli":"^3.0.1","ts-node":"^10.0.0","gh-pages":"^3.2.0","typescript":"^4.3.2","@types/node":"^15.6.2","expect-type":"^0.11.0","@types/vali-date":"^1.0.0","@types/lodash.isequal":"^4.5.5","@sindresorhus/tsconfig":"^0.8.0"},"_npmOperationalInternal":{"tmp":"tmp/ow_0.24.0_1622886252189_0.7155076839643353","host":"s3://npm-registry-packages"}},"0.24.1":{"name":"ow","version":"0.24.1","keywords":["type","types","check","checking","guard","guards","assert","assertion","predicate","predicates","is","validate","validation","utility","util","typeof","instanceof","object"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"ow@0.24.1","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"}],"homepage":"https://github.com/sindresorhus/ow#readme","bugs":{"url":"https://github.com/sindresorhus/ow/issues"},"xo":{"rules":{"no-useless-return":"off","ava/no-ignored-test-files":"off","@typescript-eslint/ban-types":"off","@typescript-eslint/no-unused-vars":"off","@typescript-eslint/no-explicit-any":"off","import/no-anonymous-default-export":"off","@typescript-eslint/no-empty-function":"off","@typescript-eslint/explicit-function-return-type":"error","@typescript-eslint/restrict-template-expressions":"off"},"ignores":["example.js","dev-only.js","source/utils/infer-label.browser.ts"],"parserOptions":{"project":"./tsconfig.xo.json"}},"ava":{"babel":false,"files":["test/**","!test/fixtures/**"],"require":["ts-node/register"],"extensions":["ts"],"compileEnhancements":false},"nyc":{"reporter":["text","lcov"]},"dist":{"shasum":"d6012cdb0a0f7a25311eace46c9053749cb939f0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ow/-/ow-0.24.1.tgz","fileCount":74,"integrity":"sha512-RblFPB9PV1U0dNaQKmvnq3RkPb+B0lQjou1YakpAPxy8pQXIZqIfXtqvcft8KRKPgTJjtYQTYy1JvxzAviN1mA==","signatures":[{"sig":"MEUCIQCP6sGB6CbzvlqoRA5pKizXuul9fykJA3Pj9L+JE8S2AAIgdfcxPhq/kIi57n4n4/AFnHIbisCZON4nmdUh5OdBFn4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":134219,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgu0n6CRA9TVsSAnZWagAAYyMP/jBcUkpeormTYDys5mEJ\npMdiVtACT/OuxyfYmNLCrYtqVI21Eyl9IphCbAZZNJo57hrNmdQc5OWJC7RI\nLsLqEUDg6iZLlnhQ6T1DDOQpQiHdn76MFy3wAfx6xM1s7+p8N0qRc5JYuGES\nKpJBzSAbA0a5AnBVY2TGj8kZMlxNiuOiexDZTBOR8vTiNc3ROzNi7x5Wk0K3\nn7SVP/jd4M4Iuqg2FXxZR0Rbt42KxtwAfnpInaJQN/5kqKvng2219EVvU6Tn\n5YZ0XjNTzl8XQW2f654lVnR0PXr9ZjnX6vsyoj3ZjHnvLiyQuVimwrtH/yFO\naBlZXaXkOxbBFDynRwag0SFG9sBcBft6mvRBna+8Q49Cczz1SH8axhRERQ2M\n+lALuU5OfPGAkBMZ2CZx2tj/KXaMLT6yi4r5DrFNhK7ub9vuFI3Xm/+zdU97\ngnojI1dzhoyeBh0fYlkrj3wiSpZwFnFoUqgG3mFY5DQBkYmQ9d1JSDMVSPH3\nFM7jx2LdWnFpRKIvb7RrEdn3NSNUhXWpzmffe9Sw4uNWwWcrK2hE+wO6QgQ2\nB6f6p+wZEcdmOllkn2TiosIhXNkYeORol6ZhZuIxJtqPmL5Lc2k4ljHz8ty0\nVqK1+SNjeXMdKMWOIsZirLmVr5MLn7/UuvqOjZQhq608qFCq6h0WisBoyxTr\n81vc\r\n=LTau\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","types":"dist","browser":{"./dist/utils/infer-label.js":"./dist/utils/infer-label.browser.js"},"engines":{"node":">=12"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"49841a260cd431985b91d319b091dd59096775a3","scripts":{"docs":"typedoc source/index.ts","test":"xo && nyc ava","build":"del-cli dist && tsc","example":"npm run build && node example.js","prepare":"npm run build","// postpublish":"npm run docs && gh-pages --dist docs --no-history --message \"Deploy documentation\""},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/ow.git","type":"git"},"_npmVersion":"7.10.0","description":"Function argument validation for humans","directories":{},"sideEffects":false,"_nodeVersion":"12.22.1","dependencies":{"dot-prop":"^6.0.1","callsites":"^3.1.0","type-fest":"^1.2.0","vali-date":"^1.0.0","lodash.isequal":"^4.5.0","@sindresorhus/is":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.38.2","ava":"^2.4.0","nyc":"^15.1.0","del-cli":"^3.0.1","ts-node":"^10.0.0","gh-pages":"^3.2.0","typescript":"^4.3.2","@types/node":"^15.6.2","expect-type":"^0.11.0","@types/vali-date":"^1.0.0","@types/lodash.isequal":"^4.5.5","@sindresorhus/tsconfig":"^0.8.0"},"_npmOperationalInternal":{"tmp":"tmp/ow_0.24.1_1622886906626_0.010921300880564422","host":"s3://npm-registry-packages"}},"0.25.0":{"name":"ow","version":"0.25.0","keywords":["type","types","check","checking","guard","guards","assert","assertion","predicate","predicates","is","validate","validation","utility","util","typeof","instanceof","object"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"ow@0.25.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"}],"homepage":"https://github.com/sindresorhus/ow#readme","bugs":{"url":"https://github.com/sindresorhus/ow/issues"},"xo":{"rules":{"no-useless-return":"off","ava/no-ignored-test-files":"off","@typescript-eslint/ban-types":"off","@typescript-eslint/no-unused-vars":"off","@typescript-eslint/no-explicit-any":"off","import/no-anonymous-default-export":"off","@typescript-eslint/no-empty-function":"off","@typescript-eslint/explicit-function-return-type":"error","@typescript-eslint/restrict-template-expressions":"off"},"ignores":["example.js","dev-only.js","source/utils/infer-label.browser.ts"],"parserOptions":{"project":"./tsconfig.xo.json"}},"ava":{"babel":false,"files":["test/**","!test/fixtures/**"],"require":["ts-node/register"],"extensions":["ts"],"compileEnhancements":false},"nyc":{"reporter":["text","lcov"]},"dist":{"shasum":"7236800c256a2aa8dadbe445d50442d8671a5f84","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ow/-/ow-0.25.0.tgz","fileCount":74,"integrity":"sha512-b5W5LK8u76y2NGBFNye0Gy2CtpFYT/K4VD1hKzg2DqTmhSCgQlZl8OuYe8rh9mEG3N+86TBN6Rc6EXc+O6QAUQ==","signatures":[{"sig":"MEUCIQCG7BrL8RxNkD7MjTAkUr3SITu7pB8iVTJVkI0yuu+4dwIgQ2kgN6s8cUNbJVzeADLeJNmzg7RAXcXOD60qXXWg+nk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":135253,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg1wZDCRA9TVsSAnZWagAAeU8P/15V1vE7plkibMahjjk5\nRScuEojMMyUQu9xG7ifaGO0gNG2lGkoY+7qRM3fAd580EK7VP/g0HFt7E/U7\npnPTfVy14gfQGJusDy9FtQNXkYfLQHNforL+8FkPeALQ37R89GFTtPQAmZ/B\nEidDLr106CxMjjMusLq3lewqD8MHdkhufpCDXinJ1D9jpKtMR9bxsE4adg9c\n1dBknJZig+HLpSTcACPXAsQormWhua5p0rfsfUuHcUZuPrA06txQnFsqSMG/\n558wzLSI2NuHr2SFz50++/UwtICw/IG2p/oRlKdeEngEK8T34a6jpbaFTfRh\n6u/IxIJHr/U3TIJzZlBMjK6hMjOLT9saaWVoBYOUEmQGY7QSGFnDjEZLBQnq\nwGrU1lZqtJT+QCotlmWecIObmvm7A9fy7cxl79RYFQsRa1fx1nvUauwGRSoP\nFZJfyUTZ88KGmwGJw+ra5hbuEJCj1xgGvDIcLz2Hau/okMVFJBqwApmKZUR1\nUQBzp0ZlazgODcZP0ba0Hu6q7Kws+JHILk09g0ZROILyd38MGAkZuuZ7J+/W\nOhA0f7mjW3aDmfgTNKzRLUOanUgBXK1Dv3p4DRuazdd9P6py6Htc77cBbfCz\nUV8hZ2y/pCDblRpeg2DYkdNNGp3DqN6cv5at7Egv54xlqwBTpEyQZV+epKh0\nEVLC\r\n=447/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","types":"dist","browser":{"./dist/utils/infer-label.js":"./dist/utils/infer-label.browser.js"},"engines":{"node":">=12"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"0de7258a07acba6757029895f0379715c26949a1","scripts":{"docs":"typedoc source/index.ts","test":"xo && nyc ava","build":"del-cli dist && tsc","example":"npm run build && node example.js","prepare":"npm run build","postpublish":"npm run docs && gh-pages --dist docs --no-history --message \"Deploy documentation\""},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/ow.git","type":"git"},"_npmVersion":"7.10.0","description":"Function argument validation for humans","directories":{},"sideEffects":false,"_nodeVersion":"12.22.1","dependencies":{"dot-prop":"^6.0.1","callsites":"^3.1.0","type-fest":"^1.2.1","vali-date":"^1.0.0","lodash.isequal":"^4.5.0","@sindresorhus/is":"^4.0.1"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.38.2","ava":"^2.4.0","nyc":"^15.1.0","del-cli":"^4.0.0","ts-node":"^10.0.0","gh-pages":"^3.2.3","typescript":"^4.3.4","@types/node":"^15.12.4","expect-type":"^0.11.0","@types/vali-date":"^1.0.0","@types/lodash.isequal":"^4.5.5","@sindresorhus/tsconfig":"^0.8.0"},"_npmOperationalInternal":{"tmp":"tmp/ow_0.25.0_1624704578643_0.40933762090345316","host":"s3://npm-registry-packages"}},"0.26.0":{"name":"ow","version":"0.26.0","keywords":["type","types","check","checking","guard","guards","assert","assertion","predicate","predicates","is","validate","validation","utility","util","typeof","instanceof","object"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"ow@0.26.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"}],"homepage":"https://github.com/sindresorhus/ow#readme","bugs":{"url":"https://github.com/sindresorhus/ow/issues"},"xo":{"rules":{"no-useless-return":"off","ava/no-ignored-test-files":"off","@typescript-eslint/ban-types":"off","@typescript-eslint/no-unused-vars":"off","@typescript-eslint/no-explicit-any":"off","import/no-anonymous-default-export":"off","@typescript-eslint/no-empty-function":"off","@typescript-eslint/explicit-function-return-type":"error","@typescript-eslint/restrict-template-expressions":"off"},"ignores":["example.js","dev-only.js","source/utils/infer-label.browser.ts"],"parserOptions":{"project":"./tsconfig.xo.json"}},"ava":{"babel":false,"files":["test/**","!test/fixtures/**"],"require":["ts-node/register"],"extensions":["ts"],"compileEnhancements":false},"nyc":{"reporter":["text","lcov"]},"dist":{"shasum":"5b8f61221ab31431f964caa6eaa0ed574e21a56e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ow/-/ow-0.26.0.tgz","fileCount":74,"integrity":"sha512-22YUQW9d6oUSCpIQuBV25djtC1uMtpWqmtUYnuh2UHWeNMpppCFCvq3eSBIWWMDbe2UVq26kWYvBHDzOIu5NYg==","signatures":[{"sig":"MEQCIGjCjY6G0nu3YD1bscKFCs9GpMyrgprTKb3gQOODsexVAiAxDe5bA+HKl1NrZoNZzCIzR0hi8zKQxbnDmulk9z+/Xg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":134921,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg3xEpCRA9TVsSAnZWagAAooEQAJb5BPb2N9KSoBXTZmp3\nqbaaeZNFRDKzjXP/agwPQbFiyQqRS7GD2CdDZrdyj8842U970DeTmHfx03Yv\ni3R+4bMDyXyzJJ8K9TEu81nNH3RzLJqRWJE6BbUfv4t16VbmKHFgPAti1URA\nEXWEpOT3rnVxMAkMGe0I4vca8YnRXpmB65KMwSV5AlrAWS5LeecykNH7C5zk\nc+ebhgmfbIlZPAvtN6IOobwYRICE/b3oc+N+YQNBfxCxLv7xdKKFkBNA3kI/\nBvrt4baLTNThuJtQHIBONQXXmOhuxlNlu6ywXC4GTtVIda07GDZTeLG+0VN0\nC4+sOH8IUQ6JLyuNQb9OCaYcB2C7I3GyfFz8dX0kUvAIYVUyqGIgDhe1/Q26\nyFRCVIYUeohJ8/sQ7X15ovijcO/UaCb2QrOWGJa+hKKxfPkHBNhgrSpEPsJT\njblYBpDp6YLOAKaSTwsoTYw21kGOxGUPN5qLTBLo35ypGyOpeAEttDoPJbJ4\npxft3VJxrBy5WGBkTQ0bN5grknrtLhj2Abtykw7/dS2XVLKrAT4uxeZUUBSC\nN+wnEF4BqK6MBdWOHLkHB7XbeCUlmv2xXaYgE1F+SHuOG+C7Srs5mKBbMYuU\nyVRDAG5qHjo7M9ZfqQ1GRYEjcnb9bVqrvMJCV+IaSiLdyqf5b7mzTtLyg53e\nSA8h\r\n=/qBI\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","types":"dist","browser":{"./dist/utils/infer-label.js":"./dist/utils/infer-label.browser.js"},"engines":{"node":">=12"},"funding":{"url":"https://github.com/sponsors/sindresorhus"},"gitHead":"a32e354e1d02ffba2591223730780ced2ee82483","scripts":{"docs":"typedoc source/index.ts","test":"xo && nyc ava","build":"del-cli dist && tsc","example":"npm run build && node example.js","prepare":"npm run build","postpublish":"npm run docs && gh-pages --dist docs --no-history --message \"Deploy documentation\""},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/ow.git","type":"git"},"_npmVersion":"7.10.0","description":"Function argument validation for humans","directories":{},"sideEffects":false,"_nodeVersion":"12.22.1","dependencies":{"dot-prop":"^6.0.1","callsites":"^3.1.0","type-fest":"^1.2.1","vali-date":"^1.0.0","lodash.isequal":"^4.5.0","@sindresorhus/is":"^4.0.1"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.38.2","ava":"^2.4.0","nyc":"^15.1.0","del-cli":"^4.0.0","ts-node":"^10.0.0","typedoc":"^0.21.1","gh-pages":"^3.2.3","typescript":"^4.3.4","@types/node":"^15.12.4","expect-type":"^0.11.0","@types/vali-date":"^1.0.0","@types/lodash.isequal":"^4.5.5","@sindresorhus/tsconfig":"^0.8.0"},"_npmOperationalInternal":{"tmp":"tmp/ow_0.26.0_1625231656271_0.8600478247527652","host":"s3://npm-registry-packages"}},"0.27.0":{"name":"ow","version":"0.27.0","keywords":["type","types","check","checking","guard","guards","assert","assertion","predicate","predicates","is","validate","validation","utility","util","typeof","instanceof","object"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"ow@0.27.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"}],"homepage":"https://github.com/sindresorhus/ow#readme","bugs":{"url":"https://github.com/sindresorhus/ow/issues"},"xo":{"rules":{"no-useless-return":"off","ava/no-ignored-test-files":"off","@typescript-eslint/ban-types":"off","@typescript-eslint/no-unused-vars":"off","@typescript-eslint/no-explicit-any":"off","import/no-anonymous-default-export":"off","@typescript-eslint/no-empty-function":"off","@typescript-eslint/explicit-function-return-type":"error","@typescript-eslint/restrict-template-expressions":"off"},"ignores":["example.js","dev-only.js","source/utils/infer-label.browser.ts"],"parserOptions":{"project":"./tsconfig.xo.json"}},"ava":{"babel":false,"files":["test/**","!test/fixtures/**"],"require":["ts-node/register"],"extensions":["ts"],"compileEnhancements":false},"nyc":{"reporter":["text","lcov"]},"dist":{"shasum":"d44da088e8184fa11de64b5813206f9f86ab68d0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ow/-/ow-0.27.0.tgz","fileCount":74,"integrity":"sha512-SGnrGUbhn4VaUGdU0EJLMwZWSupPmF46hnTRII7aCLCrqixTAC5eKo8kI4/XXf1eaaI8YEVT+3FeGNJI9himAQ==","signatures":[{"sig":"MEQCIEJPccva7BIG3n5S9nadLlK9CafPUbV2BAd88zo14malAiAvkn+KJ5XaANo+365t2PCQQHKHZPF4Zfvt9YJVVfF9vw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":134649,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg8abyCRA9TVsSAnZWagAAUr8P/1im9zorGTdXWeUddQyB\nCjHLWsm+KBnTFXWcQTOEcR6ka7+S5ucjiotHDotD4Udtq6Fvo+DnIKDbXa8J\nw3IGxyB7LJo5K3FhyWzNmPoFAAWsNmmoJxMUXt94Lw8TUdDmf8r3vDjqRGWH\neQCQdTW6bfiGpw7FUqPmJ1a/RLJoBsLthSsPUwkpP3UpoJ6nLIXXma6F+enr\npdNigaNAeQLXAgAsV/fkdfnHqmUd7w6K7n/zXtzDnafxyj2xBwIiTjeamRUR\nKHOgzknVlPdJEJ+MWIZRe4DmS6EWypt5l8jAxUwIfBqa+IPyR8xgNCTCQoDm\nofoDLz4/Gb2+AA1io2YXyPqfrXU8WtFdWIwHsnlBniMWhzKzXsoI5I0W/Bjn\nyKVb51EM5WJ1WG58tfSG7LNtfc2knqO/TwfLZOSNQDn1Cb2jPPHxfE5aqSKi\nWmIEOaJiX+KGy88wz9QJk9NrxRt0INqjREHZAfRWDfyTkCV1HmeAQ8m58Hz/\nhN6USx8+cPvDuCC0KOsmv173mK5ek9pp0h4HLDvVMORwO3dveyCn3lqZ7KUI\n+6vqbsELlF4N9F+7OKpuNRkP96OknDeT7lY46DXFtdMOSPATvoZo47zMgXTs\nVdqvqxDzHPPcWK3l7QYm8oe7ppCOMyTsxu1HMWCeF3BJ/qG8f7NWla3k5CvZ\nSkxA\r\n=CCrV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","types":"dist","browser":{"./dist/utils/infer-label.js":"./dist/utils/infer-label.browser.js"},"engines":{"node":">=12"},"funding":{"url":"https://github.com/sponsors/sindresorhus"},"gitHead":"9a25124271e2a9267a8b439158d599447b2bcf4f","scripts":{"docs":"typedoc source/index.ts","test":"xo && nyc ava","build":"del-cli dist && tsc","example":"npm run build && node example.js","prepare":"npm run build","postpublish":"npm run docs && gh-pages --dist docs --no-history --message \"Deploy documentation\""},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/ow.git","type":"git"},"_npmVersion":"7.10.0","description":"Function argument validation for humans","directories":{},"sideEffects":false,"_nodeVersion":"14.16.1","dependencies":{"dot-prop":"^6.0.1","callsites":"^3.1.0","type-fest":"^1.2.1","vali-date":"^1.0.0","lodash.isequal":"^4.5.0","@sindresorhus/is":"^4.0.1"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.38.2","ava":"^2.4.0","nyc":"^15.1.0","del-cli":"^4.0.0","ts-node":"^10.0.0","typedoc":"^0.21.1","gh-pages":"^3.2.3","typescript":"^4.3.4","@types/node":"^15.12.4","expect-type":"^0.11.0","@types/vali-date":"^1.0.0","@types/lodash.isequal":"^4.5.5","@sindresorhus/tsconfig":"^0.8.0"},"_npmOperationalInternal":{"tmp":"tmp/ow_0.27.0_1626449650566_0.19000439439019168","host":"s3://npm-registry-packages"}},"0.28.0":{"name":"ow","version":"0.28.0","keywords":["type","types","check","checking","guard","guards","assert","assertion","predicate","predicates","is","validate","validation","utility","util","typeof","instanceof","object"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"ow@0.28.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"}],"homepage":"https://github.com/sindresorhus/ow#readme","bugs":{"url":"https://github.com/sindresorhus/ow/issues"},"xo":{"rules":{"no-useless-return":"off","ava/no-ignored-test-files":"off","@typescript-eslint/ban-types":"off","@typescript-eslint/no-unused-vars":"off","@typescript-eslint/no-explicit-any":"off","import/no-anonymous-default-export":"off","@typescript-eslint/no-empty-function":"off","@typescript-eslint/explicit-function-return-type":"error","@typescript-eslint/restrict-template-expressions":"off"},"ignores":["example.js","dev-only.js","source/utils/infer-label.browser.ts"],"parserOptions":{"project":"./tsconfig.xo.json"}},"ava":{"babel":false,"files":["test/**","!test/fixtures/**"],"require":["ts-node/register"],"extensions":["ts"],"compileEnhancements":false},"nyc":{"reporter":["text","lcov"]},"dist":{"shasum":"3fddb547ccbafa52ab96026a9d24458989b55e11","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ow/-/ow-0.28.0.tgz","fileCount":74,"integrity":"sha512-s80IUkWGIGp68KUcd9IKefaPYD8RIdKfJPuvPewZ0smLENo1+tehc2YIphkFAvSzWn8Fdy6QhI15d9f0XetKgA==","signatures":[{"sig":"MEYCIQCnOCb1jG590trTYMNrbxOKo4Qt9Oh+xQ7X117ZvOwsmQIhAL2XX3Z/DTuI5GNSXuhFDmvBpkFD7gT1FKo34Q3M3SBT","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":135421},"main":"dist/index.js","types":"dist","browser":{"./dist/utils/infer-label.js":"./dist/utils/infer-label.browser.js"},"engines":{"node":">=12"},"funding":{"url":"https://github.com/sponsors/sindresorhus"},"gitHead":"3384c4eb1b9093a5efc0ea8ad7077e0e4a21f3b8","scripts":{"docs":"typedoc source/index.ts","test":"xo && nyc ava","build":"del-cli dist && tsc","example":"npm run build && node example.js","prepare":"npm run build","postpublish":"npm run docs && gh-pages --dist docs --no-history --message \"Deploy documentation\""},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/ow.git","type":"git"},"_npmVersion":"7.20.3","description":"Function argument validation for humans","directories":{},"sideEffects":false,"_nodeVersion":"16.9.1","dependencies":{"dot-prop":"^6.0.1","callsites":"^3.1.0","type-fest":"^2.3.4","vali-date":"^1.0.0","lodash.isequal":"^4.5.0","@sindresorhus/is":"^4.0.1"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.38.2","ava":"^2.4.0","nyc":"^15.1.0","del-cli":"^4.0.0","ts-node":"^10.0.0","typedoc":"^0.22.4","gh-pages":"^3.2.3","typescript":"^4.4.3","@types/node":"^16.9.6","expect-type":"^0.12.0","@types/vali-date":"^1.0.0","@types/lodash.isequal":"^4.5.5","@sindresorhus/tsconfig":"^0.8.0"},"_npmOperationalInternal":{"tmp":"tmp/ow_0.28.0_1632310750994_0.6825622317387603","host":"s3://npm-registry-packages"}},"0.28.1":{"name":"ow","version":"0.28.1","keywords":["type","types","check","checking","guard","guards","assert","assertion","predicate","predicates","is","validate","validation","utility","util","typeof","instanceof","object"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"ow@0.28.1","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"}],"homepage":"https://github.com/sindresorhus/ow#readme","bugs":{"url":"https://github.com/sindresorhus/ow/issues"},"xo":{"rules":{"no-useless-return":"off","ava/no-ignored-test-files":"off","@typescript-eslint/ban-types":"off","@typescript-eslint/no-unused-vars":"off","@typescript-eslint/no-explicit-any":"off","import/no-anonymous-default-export":"off","@typescript-eslint/no-empty-function":"off","@typescript-eslint/explicit-function-return-type":"error","@typescript-eslint/restrict-template-expressions":"off"},"ignores":["example.js","dev-only.js","source/utils/infer-label.browser.ts"],"parserOptions":{"project":"./tsconfig.xo.json"}},"ava":{"babel":false,"files":["test/**","!test/fixtures/**"],"require":["ts-node/register"],"extensions":["ts"],"compileEnhancements":false},"nyc":{"reporter":["text","lcov"]},"dist":{"shasum":"e7cf19a0994a4ace78f38976f11f2a080f51a570","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ow/-/ow-0.28.1.tgz","fileCount":74,"integrity":"sha512-1EZTywPZeUKac9gD7q8np3Aj+V54kvfIcjNEVNDSbG2Ys5xA5foW2HquvMMqgyWGLqIFMlc0Iq/HmyMHqN48sA==","signatures":[{"sig":"MEUCIAg3EU+l7WifVbNW6uJUrnRgkp3MEmSYQkev31rg7sXaAiEAyOg6oKl2DQxzPwTv24jjfZZWD9+PnOkxnYnzR+mJ9Vo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":136040},"main":"dist/index.js","types":"dist","browser":{"./dist/utils/infer-label.js":"./dist/utils/infer-label.browser.js"},"engines":{"node":">=12"},"funding":{"url":"https://github.com/sponsors/sindresorhus"},"gitHead":"f1c83bb6acae8ad757f08a1d9681f8126543811a","scripts":{"docs":"typedoc source/index.ts","test":"xo && nyc ava","build":"del-cli dist && tsc","example":"npm run build && node example.js","prepare":"npm run build","postpublish":"npm run docs && gh-pages --dist docs --no-history --message \"Deploy documentation\""},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/ow.git","type":"git"},"_npmVersion":"7.20.3","description":"Function argument validation for humans","directories":{},"sideEffects":false,"_nodeVersion":"12.22.1","dependencies":{"dot-prop":"^6.0.1","callsites":"^3.1.0","type-fest":"^2.3.4","vali-date":"^1.0.0","lodash.isequal":"^4.5.0","@sindresorhus/is":"^4.2.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.38.2","ava":"^2.4.0","nyc":"^15.1.0","del-cli":"^4.0.0","ts-node":"^10.2.1","typedoc":"^0.22.5","gh-pages":"^3.2.3","typescript":"^4.4.3","@types/node":"^16.10.2","expect-type":"^0.12.0","@types/vali-date":"^1.0.0","@types/lodash.isequal":"^4.5.5","@sindresorhus/tsconfig":"^0.8.0"},"_npmOperationalInternal":{"tmp":"tmp/ow_0.28.1_1633336400355_0.30273909955313716","host":"s3://npm-registry-packages"}},"1.0.0":{"name":"ow","version":"1.0.0","keywords":["type","types","check","checking","guard","guards","assert","assertion","predicate","predicates","is","validate","validation","utility","util","typeof","instanceof","object"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"ow@1.0.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"}],"homepage":"https://github.com/sindresorhus/ow#readme","bugs":{"url":"https://github.com/sindresorhus/ow/issues"},"c8":{"reporter":["text","lcov"]},"xo":{"rules":{"no-useless-return":"off","ava/no-ignored-test-files":"off","@typescript-eslint/ban-types":"off","@typescript-eslint/no-unused-vars":"off","@typescript-eslint/no-explicit-any":"off","@typescript-eslint/no-empty-function":"off","@typescript-eslint/explicit-function-return-type":"error","@typescript-eslint/restrict-template-expressions":"off"},"ignores":["example.js","dev-only.js","source/utils/infer-label.browser.ts"]},"ava":{"files":["test/**","!test/fixtures/**"],"extensions":{"ts":"module"},"nodeArguments":["--loader=ts-node/esm"]},"dist":{"shasum":"d09b8e6e5735450c7554a9a3e29dfa8749ae02d6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ow/-/ow-1.0.0.tgz","fileCount":74,"integrity":"sha512-e7Bu8LOhWACzlx89dZb64K2p3KusY0s4BhkVLewsVuKA4Pp1lq+Nxicp0k6ZP4G5GO3YdkVVd6+qUclQRcl6fg==","signatures":[{"sig":"MEUCIHYM3qZmfAJox+RTv3OnoYeK+F6DBGOLtF40G1IDYDzmAiEAl+v3eHsnWTSmzi1/iS6fJ87QOsbE9r22sA3DzQTfFto=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":130188,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJipxVCACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrSXA//V+kVRfyNDy0JTwVpz6i8dQX4fpJND09fNQuQE04/yI/gJnVB\r\nifoQilUa8zux6pnV8rgioCqsKGPMlm7G0ou50UxXsU8s0YevAjo/g4vhSis0\r\nw16CGW6t4GUFD7CHrq622p3Cvq4HvYldKmBSHionoqjt4QaWUk9464CACkne\r\nzgtndmxOq262w2HX1dTkB0DCqEDGHVTuidlIPqqy2CRAe44pzsLvD6x5i8+X\r\n/zkiKwVPTplTRkQhamlwdV94SyL8HEX23swwip5UMwaoFvx2x34CIR1VHSR7\r\ngL4/0zUTU48gijpEQ6lcaot95b13I7yd3aLl8AyESsDaG9D6QnwxnGKF5TmP\r\nODKYmSdCcdISswh7gYUmzyzl7XkCdlQkkVn7k94EIV2+WASyQnJlVhcPYzp3\r\n4g0nsgdZQwifnBYVVieh25OGW8d1TToYAj0xfhNH9luVkiWR3DLMshbexGm0\r\nxHdsqfcK6uEe1B7k5sKRElpetK0ghjw8SUyeo+skmJ/1sEzSHTzbbzBxJuLR\r\n4u7mhdArLl+eSuCumIMg+BMAK2+Q/prF06TEOblOxGrllJifqePgGNJkrZiT\r\n/VyKNFqM6HFGnR+rTHdbwHOamH/e23V35jFbYFLkd6HhqOyiJbiH8Tqx6WOe\r\nPY9S4khMmTr8QpjOsxsoLvzVLtmVCbofnU0=\r\n=6h9M\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","browser":{"./dist/utils/infer-label.js":"./dist/utils/infer-label.browser.js"},"engines":{"node":">=14.16"},"exports":{".":{"node":"./dist/index.js","types":"./dist/index.d.ts"},"./dev-only":{"node":"./dev-only.js","types":"./dist/index.d.ts"}},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"abab4cf39a9e58c4e6181a8a129870c33790876d","scripts":{"docs":"typedoc source/index.ts","test":"xo && c8 ava","build":"del-cli dist && tsc","example":"npm run build && node example.js","prepare":"npm run build","postpublish":"npm run docs && gh-pages --dist docs --no-history --message \"Deploy documentation\""},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/ow.git","type":"git"},"_npmVersion":"8.3.2","description":"Function argument validation for humans","directories":{},"sideEffects":false,"_nodeVersion":"14.19.2","dependencies":{"dot-prop":"^7.2.0","callsites":"^4.0.0","type-fest":"^2.13.0","vali-date":"^1.0.0","lodash.isequal":"^4.5.0","@sindresorhus/is":"^5.1.0"},"_hasShrinkwrap":false,"devDependencies":{"c8":"^7.11.3","xo":"^0.50.0","ava":"^4.3.0","del-cli":"^4.0.1","ts-node":"^10.8.1","typedoc":"^0.22.17","gh-pages":"^4.0.0","typescript":"^4.7.3","@types/node":"^17.0.42","expect-type":"^0.13.0","@types/vali-date":"^1.0.0","@types/lodash.isequal":"^4.5.6","@sindresorhus/tsconfig":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/ow_1.0.0_1655117122663_0.9628978971674664","host":"s3://npm-registry-packages"}},"0.28.2":{"name":"ow","version":"0.28.2","keywords":["type","types","check","checking","guard","guards","assert","assertion","predicate","predicates","is","validate","validation","utility","util","typeof","instanceof","object"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"ow@0.28.2","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"}],"homepage":"https://github.com/sindresorhus/ow#readme","bugs":{"url":"https://github.com/sindresorhus/ow/issues"},"xo":{"rules":{"no-useless-return":"off","ava/no-ignored-test-files":"off","@typescript-eslint/ban-types":"off","@typescript-eslint/no-unused-vars":"off","@typescript-eslint/no-explicit-any":"off","import/no-anonymous-default-export":"off","@typescript-eslint/no-empty-function":"off","@typescript-eslint/explicit-function-return-type":"error","@typescript-eslint/restrict-template-expressions":"off"},"ignores":["example.js","dev-only.js","source/utils/infer-label.browser.ts"],"parserOptions":{"project":"./tsconfig.xo.json"}},"ava":{"babel":false,"files":["test/**","!test/fixtures/**"],"require":["ts-node/register"],"extensions":["ts"],"compileEnhancements":false},"nyc":{"reporter":["text","lcov"]},"dist":{"shasum":"782b28102124e665c49ec7725e2066a129acf6bf","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ow/-/ow-0.28.2.tgz","fileCount":76,"integrity":"sha512-dD4UpyBh/9m4X2NVjA+73/ZPBRF+uF4zIMFvvQsabMiEK8x41L3rQ8EENOi35kyyoaJwNxEeJcP6Fj1H4U409Q==","signatures":[{"sig":"MEQCIGt54nZOcYsDo8CHjuGoAcWJvGaQKCIz+3jdMYy5jDoVAiAT7ancKCGAaWUByY4bnbHUiLmm7zwUXn+39jMR8Aukeg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":136453,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjOvINACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrPOA/9HbqCKTKGqYJUscWPgG0ODkZqt5WDMiOJvppvji6KnG5+m/YY\r\nPM1nlNHL43lldqLjWb5QIXi3gnswpwKKTF7G853nk2p2/o18jREOXXe9TAcJ\r\nB/y3RvhESd0UpVAzx/5yHLXyiUaZLuP9WIVetlL8bEQFvIgZSrNV2QAnCCyR\r\nudO4MhUJ7Ai5vVNJyHnLA1EhGD9AZ7hsTRhOmBQagmTxvvrO10AXRMpclm0B\r\nS65jpVEvDN6eoE5/zruCuK3+yVIlA6N5o9xNLgqSGE8A9Tpbj8a/eI8ndS34\r\nGk56XRcgJ6BrqDk5msRAQi5ewMZwr184ewM4jRoLVzQuADYY8VbYT7CEF5Ms\r\nOkjm37ULNOz9YoR6uFBVwFsAfxXyLHvhmpwKW7cyTXyVrNPhQaaKY+2ZhrQF\r\nAZWeBjmGJtY1Y+1NLnhO4K3zO+n8mhvamnJfLMI30YzHdiyIFSyfwutv22oH\r\nQR6sgG92Es00widCCwSq7pgPKHa9ohyXeKcWOWdNzR8kvJXo0hkft32ENJuR\r\nlp7YE4LVQEAigz5LLrsRHJJHce8a6ZdFf1GmBbnI23TIQ/zoxCt/bWXWYAXW\r\nI1jng9ORqWQ4LRL1uEwOkEwcoMTWgE1Q0m6awZf2w4XJ47MAMCPjev1XwEfW\r\npz/6mrODfTZrazyM8Rx/VUr9ca2rEr/VubM=\r\n=BJla\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","types":"dist","browser":{"./dist/utils/infer-label.js":"./dist/utils/infer-label.browser.js"},"engines":{"node":">=12"},"funding":{"url":"https://github.com/sponsors/sindresorhus"},"gitHead":"d5f72404f8b47d0e341379b62152f2849046dc82","scripts":{"docs":"typedoc source/index.ts","test":"xo && ava","build":"del-cli dist && tsc","example":"npm run build && node example.js","prepare":"npm run build","postpublish":"npm run docs && gh-pages --dist docs --no-history --message \"Deploy documentation\""},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/ow.git","type":"git"},"_npmVersion":"8.3.2","description":"Function argument validation for humans","directories":{},"sideEffects":false,"_nodeVersion":"12.22.1","dependencies":{"dot-prop":"^6.0.1","callsites":"^3.1.0","vali-date":"^1.0.0","lodash.isequal":"^4.5.0","@sindresorhus/is":"^4.2.0"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"xo":"^0.38.2","ava":"^2.4.0","nyc":"^15.1.0","del-cli":"^4.0.0","ts-node":"^10.2.1","typedoc":"^0.22.5","gh-pages":"^3.2.3","typescript":"^4.4.3","@types/node":"^16.10.2","expect-type":"^0.12.0","@types/vali-date":"^1.0.0","@types/lodash.isequal":"^4.5.5","@sindresorhus/tsconfig":"^0.8.0"},"_npmOperationalInternal":{"tmp":"tmp/ow_0.28.2_1664807436771_0.6130674176249558","host":"s3://npm-registry-packages"}},"1.1.0":{"name":"ow","version":"1.1.0","keywords":["type","types","check","checking","guard","guards","assert","assertion","predicate","predicates","is","validate","validation","utility","util","typeof","instanceof","object"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"ow@1.1.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"},{"name":"anonymous","email":"sam.verschueren@gmail.com"}],"homepage":"https://github.com/sindresorhus/ow#readme","bugs":{"url":"https://github.com/sindresorhus/ow/issues"},"c8":{"reporter":["text","lcov"]},"xo":{"rules":{"no-useless-return":"off","@typescript-eslint/ban-types":"off","@typescript-eslint/no-explicit-any":"off","@typescript-eslint/no-empty-function":"off","@typescript-eslint/explicit-function-return-type":"error","@typescript-eslint/restrict-template-expressions":"off"},"ignores":["example.js","dev-only.js","source/utils/infer-label.browser.ts"]},"ava":{"files":["test/**","!test/fixtures/**"],"extensions":{"ts":"module"},"nodeArguments":["--loader=ts-node/esm"]},"dist":{"shasum":"78c87857e1f473c06e85e110f114c30b3539f0ff","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ow/-/ow-1.1.0.tgz","fileCount":76,"integrity":"sha512-NB4kEnHaFum/ZWQqg1DwZ456nS1DPxYKgmipl5J9yiR3lY/S0+wJlTU8h/5fCTaedzNGTJyjdHlFZmAse6A25w==","signatures":[{"sig":"MEYCIQD0zQyDIl+55JbPYxDljplOEeLzK5JH0/zzxtGjOOIuvQIhALHFEq1NJL9Uuaw/R6QwC2bVwKl1RZAh5SK4gamS+77P","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":130518,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjOvLnACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoTPg//bO6TBPqyZgsIiCYLRM9dTTuhxCxPZ2EpLWzfEKba0ASXNXTV\r\n0jAif5D2Nqyu8S/NA29XxRCUBlR94ywq+MeKy6T2zhU0xKQptljF8eiRepC1\r\n1CdxCGmfyLAAvVWd7pYwNGvklWLM+naPvEG7S/i2l3/pTePuUtt8l0r+DRTb\r\n4SGO12Jt9342z61kUsqWdVdEMCAjR+ofZEC5eZhH9eNAlwOrsdft49ZI8XOf\r\nXWNCuP+DmQaEVQHQDTS0N7DrCwqo3tbk4aoYqpolltfrw9wFe/apteHPsS9m\r\nJNEOGsaK0QOI7S3APyomafFoszAgZEdup2sSsSWQKwt+g3TDETqQRW8MckBt\r\nEVqfyGdi6dyfsw5z+SdK/QXDXmaviNIcZSm4zPpHhGgp7ImVQ453IdETg+8N\r\nmQUx+kVM5WApQwRyq2aKqooyljr5QE/9kiUIsZR6gPn2bDuxfAMSi3og58QY\r\nezkzwmV5Hgb5obvjBE3+cUxsFqa7N1gQFyqiYN7goQe6OUMYcS3pk5U7MwAr\r\n92/IkUcyCU2MI+nJAaIIf2ra1nBuaZa28NUhL58BUafy7/GmYsqKWKxM0C+c\r\nHQ3lV3CB+cBIc/wpXXR9eKq0wHVPTwyfqF36IGEFvIi9bQyMXEUl3KtKVYX+\r\ncbhqQ6KbmQkTCJ5ugw4fKMOgSyIWSz+mwVE=\r\n=hMl8\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","browser":{"./dist/utils/infer-label.js":"./dist/utils/infer-label.browser.js"},"engines":{"node":">=14.16"},"exports":{".":{"node":"./dist/index.js","types":"./dist/index.d.ts"},"./dev-only":{"node":"./dev-only.js","types":"./dist/index.d.ts"}},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"8979ab5ebc0a3f2bd742f3c1579d2de7008570a2","scripts":{"docs":"typedoc source/index.ts","test":"xo && c8 ava","build":"del-cli dist && tsc","example":"npm run build && node example.js","prepare":"npm run build","postpublish":"npm run docs && gh-pages --dist docs --no-history --message \"Deploy documentation\""},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/ow.git","type":"git"},"_npmVersion":"8.3.2","description":"Function argument validation for humans","directories":{},"sideEffects":false,"_nodeVersion":"14.19.3","dependencies":{"dot-prop":"^7.2.0","callsites":"^4.0.0","vali-date":"^1.0.0","lodash.isequal":"^4.5.0","@sindresorhus/is":"^5.3.0"},"_hasShrinkwrap":false,"devDependencies":{"c8":"^7.12.0","xo":"^0.52.3","ava":"^4.3.3","del-cli":"^5.0.0","ts-node":"^10.9.1","typedoc":"^0.23.15","gh-pages":"^4.0.0","typescript":"^4.8.4","@types/node":"^18.8.0","expect-type":"^0.14.2","@types/vali-date":"^1.0.0","@types/lodash.isequal":"^4.5.6","@sindresorhus/tsconfig":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/ow_1.1.0_1664807655300_0.5621083503855206","host":"s3://npm-registry-packages"}},"1.1.1":{"name":"ow","version":"1.1.1","keywords":["type","types","check","checking","guard","guards","assert","assertion","predicate","predicates","is","validate","validation","utility","util","typeof","instanceof","object"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"ow@1.1.1","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/ow#readme","bugs":{"url":"https://github.com/sindresorhus/ow/issues"},"c8":{"reporter":["text","lcov"]},"xo":{"rules":{"no-useless-return":"off","@typescript-eslint/ban-types":"off","@typescript-eslint/no-explicit-any":"off","@typescript-eslint/no-empty-function":"off","@typescript-eslint/explicit-function-return-type":"error","@typescript-eslint/restrict-template-expressions":"off"},"ignores":["example.js","dev-only.js","source/utils/infer-label.browser.ts"]},"ava":{"files":["test/**","!test/fixtures/**"],"extensions":{"ts":"module"},"nodeArguments":["--loader=ts-node/esm"]},"dist":{"shasum":"354a0f7df9d8d0cf961b29116daf972ef6be1632","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ow/-/ow-1.1.1.tgz","fileCount":76,"integrity":"sha512-sJBRCbS5vh1Jp9EOgwp1Ws3c16lJrUkJYlvWTYC03oyiYVwS/ns7lKRWow4w4XjDyTrA2pplQv4B2naWSR6yDA==","signatures":[{"sig":"MEUCIQCmAiuSWtoK2PjemXuqguSik0OvKtGRKMGIvSoSitTNmAIgZQJKUeaPiaH2w/hCkLyzdJ+oG2OM+WSrsLonH1nTR74=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":128366,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj0gCGACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq4Gg//TJBXU9ba4EjkaROg7bLrlMjUgsCust0+RQxcyDmGHXylz5QE\r\nv0H9hdkxJ7UM4kBZA0REzkGCW1uoEReys0zzbseFqzEpNySd+bwnocOHRHeW\r\nDI4KO3lcUNh3Kstn4xzNnriNbzijcP+X4tItLGGKd3aYE0OATksG8cm3aNiK\r\nFiFDHq5lm6RBAOk9SGLC5Dr3S6JSUaZZhe1H+qqcHTJhFnkVvKWS2yXEDeUH\r\n/XS+UX+Dzp5YwdmBsFDQwn2R6MggoXgtv4qcbYkPdN/nDbQOb+j4OhsvrJDR\r\nW1nsNMcPQcIwBupdtnkzKL/Bw6quYMbXVV1zJx4NHUsipXiZdiCosmt4WipX\r\nTylUgXwzeeg+3/qRznr4N2FZ6gaKj7HO8ZTojXUYzfSyJcMF0b57vs2yrgfG\r\nPBL4j8f6/dbj0gwIDBpTtNxWlUEi3sMpGal/oUpsTv/9yahL7hN5Kz0XZLvN\r\nWUbc4ClCDarJ0whBhdmBwQ7JMMrJtKaj4g2/sB4vMXRKB7WVKBDzdsNAPR0D\r\nfCN7hL3GWwwZ7Khf3MkMff943y3/4Gi/xEoVtiBdp3tDB+FCcbRfAnBQlPbo\r\nv2Mvy+dA5DMWXZkFksnQ8Xc62WN++simVPj4gsEGc/55qyUFujutH9hLy2oE\r\ni1vJJxw/aXVdoNUIp4uFX0RkgKh/BNkMXlc=\r\n=EZCQ\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","browser":{"./dist/utils/infer-label.js":"./dist/utils/infer-label.browser.js"},"engines":{"node":">=14.16"},"exports":{".":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"./dev-only":{"types":"./dist/index.d.ts","default":"./dev-only.js"}},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"c2c311c5b69a5b9587064d469a56d0086f2a1698","scripts":{"docs":"typedoc source/index.ts","test":"xo && c8 ava","build":"del-cli dist && tsc","example":"npm run build && node example.js","prepare":"npm run build","postpublish":"npm run docs && gh-pages --dist docs --no-history --message \"Deploy documentation\""},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/ow.git","type":"git"},"_npmVersion":"9.2.0","description":"Function argument validation for humans","directories":{},"sideEffects":false,"_nodeVersion":"16.16.0","dependencies":{"dot-prop":"^7.2.0","callsites":"^4.0.0","vali-date":"^1.0.0","lodash.isequal":"^4.5.0","@sindresorhus/is":"^5.3.0"},"_hasShrinkwrap":false,"devDependencies":{"c8":"^7.12.0","xo":"^0.52.3","ava":"^4.3.3","del-cli":"^5.0.0","ts-node":"^10.9.1","typedoc":"^0.23.15","gh-pages":"^4.0.0","typescript":"^4.8.4","@types/node":"^18.8.0","expect-type":"^0.14.2","@types/vali-date":"^1.0.0","@types/lodash.isequal":"^4.5.6","@sindresorhus/tsconfig":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/ow_1.1.1_1674707078656_0.2623598775156317","host":"s3://npm-registry-packages"}},"2.0.0":{"name":"ow","version":"2.0.0","keywords":["type","types","check","checking","guard","guards","assert","assertion","predicate","predicates","is","validate","validation","utility","util","typeof","instanceof","object"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"ow@2.0.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/ow#readme","bugs":{"url":"https://github.com/sindresorhus/ow/issues"},"c8":{"reporter":["text","lcov"]},"xo":{"rules":{"no-useless-return":"off","@typescript-eslint/ban-types":"off","@typescript-eslint/no-explicit-any":"off","@typescript-eslint/no-unsafe-return":"off","@typescript-eslint/no-empty-function":"off","@typescript-eslint/no-unsafe-argument":"off","@typescript-eslint/explicit-function-return-type":"error","@typescript-eslint/restrict-template-expressions":"off"},"ignores":["example.js","dev-only.js","source/utils/infer-label.browser.ts"]},"ava":{"files":["test/**","!test/fixtures/**"],"extensions":{"ts":"module"},"workerThreads":false},"dist":{"shasum":"07690490ac9783b37241c4ebee32dfcab1b20ee1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ow/-/ow-2.0.0.tgz","fileCount":72,"integrity":"sha512-ESUigmGrdhUZ2nQSFNkeKSl6ZRPupXzprMs3yF9DYlNVpJ8XAjM/fI9RUZxA7PI1K9HQDCCvBo1jr/GEIo9joQ==","signatures":[{"sig":"MEUCIADqMh94VnIGyXio1uGJbalLfLwUTmLRdjJ30DhgtpToAiEAryvDyCmuJoyO8ZnnlXdLLsUVFnVNVAHdNHwoIJdc78M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":126624},"type":"module","browser":{"./dist/utils/infer-label.js":"./dist/utils/infer-label.browser.js"},"engines":{"node":">=18"},"exports":{".":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"./dev-only":{"types":"./dist/index.d.ts","default":"./dev-only.js"}},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"73b62a7b000265e4879c044ee5bdd565227cd1d2","scripts":{"docs":"typedoc source/index.ts","test":"xo && NODE_OPTIONS='--import=tsx/esm' c8 ava","build":"del-cli dist && tsc","example":"npm run build && node example.js","prepare":"npm run build","postpublish":"npm run docs && gh-pages --dist docs --no-history --message \"Deploy documentation\""},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/ow.git","type":"git"},"_npmVersion":"10.6.0","description":"Function argument validation for humans","directories":{},"sideEffects":false,"_nodeVersion":"20.12.2","dependencies":{"dot-prop":"^8.0.2","callsites":"^4.1.0","environment":"^1.0.0","fast-equals":"^5.0.1","is-identifier":"^1.0.0","@sindresorhus/is":"^6.3.0"},"_hasShrinkwrap":false,"devDependencies":{"c8":"^9.1.0","xo":"^0.58.0","ava":"^6.1.2","tsx":"^4.9.1","del-cli":"^5.1.0","typedoc":"^0.25.13","gh-pages":"^6.1.1","typescript":"^5.4.5","@types/node":"^20.12.8","expect-type":"^0.19.0","@sindresorhus/tsconfig":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ow_2.0.0_1714935613876_0.017643907247653967","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"ow","version":"3.0.0","keywords":["type","types","check","checking","guard","guards","assert","assertion","predicate","predicates","is","validate","validation","utility","util","typeof","instanceof","object"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"ow@3.0.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/ow#readme","bugs":{"url":"https://github.com/sindresorhus/ow/issues"},"c8":{"reporter":["text","lcov"]},"xo":{"rules":{"no-useless-return":"off","@typescript-eslint/ban-types":"off","@typescript-eslint/no-explicit-any":"off","@typescript-eslint/no-unsafe-return":"off","@typescript-eslint/no-empty-function":"off","@typescript-eslint/no-unsafe-argument":"off","@typescript-eslint/explicit-function-return-type":"error","@typescript-eslint/restrict-template-expressions":"off"},"ignores":["example.js","dev-only.js","source/utils/infer-label.browser.ts"]},"ava":{"files":["test/**","!test/fixtures/**"],"extensions":{"ts":"module"},"workerThreads":false},"dist":{"shasum":"0767166d585f0705501e528cbfddb226f640d85e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ow/-/ow-3.0.0.tgz","fileCount":72,"integrity":"sha512-Hud8xDH/tbY0iAdiGry4ZtaTloALVVdykLhuKgztOjYI+YRdB3NB8eqsCSn91r7oj1pZ+MZFLYB88sDhW0Od4Q==","signatures":[{"sig":"MEUCICCCO8jSzaS9BG3niOyFMrV+BFGl7qqoIvbqi+SZ0EP8AiEAy+Xcfv8ABCLd/U0rsx1xwopWpWw9Obcmr2uQGxKMeSA=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":130060},"type":"module","browser":{"./dist/utils/infer-label.js":"./dist/utils/infer-label.browser.js"},"engines":{"node":">=20"},"exports":{".":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"./dev-only":{"types":"./dist/index.d.ts","default":"./dev-only.js"}},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"4b0a9efdb843f79ea5fd5c2167c855482acb46a2","scripts":{"docs":"typedoc source/index.ts","test":"xo && NODE_OPTIONS='--import=tsx/esm' c8 ava","build":"del-cli dist && tsc","example":"npm run build && node example.js","prepare":"npm run build","postpublish":"npm run docs && gh-pages --dist docs --no-history --message \"Deploy documentation\""},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/ow.git","type":"git"},"_npmVersion":"10.9.2","description":"Function argument validation for humans","directories":{},"sideEffects":false,"_nodeVersion":"20.19.1","dependencies":{"dot-prop":"^8.0.2","callsites":"^4.1.0","environment":"^1.0.0","fast-equals":"^5.0.1","is-identifier":"^1.0.0","@sindresorhus/is":"^6.3.0"},"_hasShrinkwrap":false,"devDependencies":{"c8":"^9.1.0","xo":"^0.58.0","ava":"^6.1.2","tsx":"^4.9.1","del-cli":"^5.1.0","typedoc":"^0.25.13","gh-pages":"^6.1.1","typescript":"^5.4.5","@types/node":"^20.12.8","expect-type":"^0.19.0","@sindresorhus/tsconfig":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ow_3.0.0_1757456908227_0.8085933577518878","host":"s3://npm-registry-packages-npm-production"}},"3.1.0":{"name":"ow","version":"3.1.0","keywords":["type","types","check","checking","guard","guards","assert","assertion","predicate","predicates","is","validate","validation","utility","util","typeof","instanceof","object"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"ow@3.1.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/ow#readme","bugs":{"url":"https://github.com/sindresorhus/ow/issues"},"c8":{"reporter":["text","lcov"]},"xo":{"rules":{"no-useless-return":"off","import-x/no-mutable-exports":"off","@typescript-eslint/ban-types":"off","@typescript-eslint/no-unsafe-call":"off","@typescript-eslint/no-explicit-any":"off","@typescript-eslint/no-unsafe-return":"off","@typescript-eslint/no-base-to-string":"off","@typescript-eslint/no-empty-function":"off","@typescript-eslint/no-unsafe-argument":"off","@typescript-eslint/no-restricted-types":"off","@typescript-eslint/no-unsafe-assignment":"off","@typescript-eslint/no-unsafe-function-type":"off","@typescript-eslint/prefer-nullish-coalescing":"off","@typescript-eslint/explicit-function-return-type":"off","@typescript-eslint/restrict-template-expressions":"off"},"ignores":["example.js","dev-only.js","source/utils/infer-label.browser.ts"]},"ava":{"files":["test/**","!test/fixtures/**"],"extensions":{"ts":"module"},"workerThreads":false},"dist":{"shasum":"29069c2c1f0dc75efc1069aa29eb0ea4f376c259","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ow/-/ow-3.1.0.tgz","fileCount":72,"integrity":"sha512-0axtCQs9v2C6ff4MFbSyPT7HDLXBuebxF0JADYmazhbxQeMYv+OdUrqa64fZsfqT5c/KdGb9BvuPa7TgVi99hA==","signatures":[{"sig":"MEUCIQCGDIdsxzSAYKMSgqvik4yACPD/+HE/7oPesxX2UIE2bQIgUcxfcMe90515zs1l4NiTc7pZlzfCEAi8NeAR5yvPBDE=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":151354},"type":"module","browser":{"./dist/utils/infer-label.js":"./dist/utils/infer-label.browser.js"},"engines":{"node":">=20"},"exports":{".":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"./dev-only":{"types":"./dist/index.d.ts","default":"./dev-only.js"}},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"d27acb26f232b9ed471d3d801e42306cad7de4bf","scripts":{"docs":"typedoc source/index.ts","test":"xo && NODE_OPTIONS='--import=tsx/esm' c8 ava","build":"del-cli dist && tsc","example":"npm run build && node example.js","prepare":"npm run build","postpublish":"npm run docs && gh-pages --dist docs --no-history --message \"Deploy documentation\""},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/ow.git","type":"git"},"_npmVersion":"11.6.1","description":"Function argument validation for humans","directories":{},"sideEffects":false,"_nodeVersion":"20.19.5","dependencies":{"dot-prop":"^10.1.0","callsites":"^4.2.0","environment":"^1.1.0","fast-equals":"^5.3.2","is-identifier":"^1.0.1","@sindresorhus/is":"^7.1.0"},"_hasShrinkwrap":false,"devDependencies":{"c8":"^10.1.3","xo":"^1.2.3","ava":"^6.4.1","tsx":"^4.20.6","del-cli":"^7.0.0","typedoc":"^0.28.13","gh-pages":"^6.3.0","typescript":"^5.9.3","@types/node":"^24.7.1","expect-type":"^1.2.2","@sindresorhus/tsconfig":"^8.0.1"},"_npmOperationalInternal":{"tmp":"tmp/ow_3.1.0_1760068396233_0.4228360254901704","host":"s3://npm-registry-packages-npm-production"}},"3.1.1":{"name":"ow","version":"3.1.1","description":"Function argument validation for humans","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/ow.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"type":"module","exports":{".":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"./dev-only":{"types":"./dist/index.d.ts","default":"./dev-only.js"}},"sideEffects":false,"engines":{"node":">=20"},"scripts":{"test":"xo && NODE_OPTIONS='--import=tsx/esm' c8 ava","docs":"typedoc source/index.ts","build":"del-cli dist && tsc","prepare":"npm run build","prepublishOnly":"npm test","postpublish":"npm run docs && gh-pages --dist docs --no-history --message \"Deploy documentation\"","example":"npm run build && node example.js"},"keywords":["type","types","check","checking","guard","guards","assert","assertion","predicate","predicates","is","validate","validation","utility","util","typeof","instanceof","object"],"dependencies":{"@sindresorhus/is":"^7.1.0","callsites":"^4.2.0","dot-prop":"^10.1.0","environment":"^1.1.0","fast-equals":"^5.3.2","is-identifier":"^1.0.1"},"devDependencies":{"@sindresorhus/tsconfig":"^8.0.1","@types/node":"^24.7.1","ava":"^6.4.1","c8":"^10.1.3","del-cli":"^7.0.0","expect-type":"^1.2.2","gh-pages":"^6.3.0","tsx":"^4.20.6","typedoc":"^0.28.13","typescript":"^5.9.3","xo":"^1.2.3"},"browser":{"./dist/utils/infer-label.js":"./dist/utils/infer-label.browser.js"},"xo":{"ignores":["example.js","dev-only.js","source/utils/infer-label.browser.ts"],"rules":{"no-useless-return":"off","@typescript-eslint/explicit-function-return-type":"off","@typescript-eslint/ban-types":"off","@typescript-eslint/no-explicit-any":"off","@typescript-eslint/no-empty-function":"off","@typescript-eslint/restrict-template-expressions":"off","@typescript-eslint/no-unsafe-return":"off","@typescript-eslint/no-unsafe-argument":"off","@typescript-eslint/no-unsafe-function-type":"off","@typescript-eslint/no-unsafe-call":"off","@typescript-eslint/no-unsafe-assignment":"off","@typescript-eslint/prefer-nullish-coalescing":"off","import-x/no-mutable-exports":"off","@typescript-eslint/no-base-to-string":"off","@typescript-eslint/no-restricted-types":"off","@typescript-eslint/parameter-properties":"off","@typescript-eslint/member-ordering":"off"}},"ava":{"files":["test/**","!test/fixtures/**"],"extensions":{"ts":"module"},"workerThreads":false},"c8":{"reporter":["text","lcov"]},"gitHead":"3975eab08762ba1823f07e2aa3cb05f20c86296c","_id":"ow@3.1.1","bugs":{"url":"https://github.com/sindresorhus/ow/issues"},"homepage":"https://github.com/sindresorhus/ow#readme","_nodeVersion":"24.9.0","_npmVersion":"11.6.1","dist":{"integrity":"sha512-Hixi5roGFYZuiPV2pnnBi1hXdRG0uqifxE8rCCU6lKeCCQS+VGihuJnYxaJSffDz/clyH+xB2z1hXYRzeIcUMA==","shasum":"9133c5152a8d81164a8f7863d0846fce9c4f4c21","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ow/-/ow-3.1.1.tgz","fileCount":72,"unpackedSize":153757,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEQCIAhXTStMo4VhUbxB7pU7MKnC/o8ghAwSgetAaqb5/gq+AiAKD1yG56Q0yK7+r87aalHirIn2WVexGzMMj+Vz1rgjKA=="}]},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/ow_3.1.1_1760634610635_0.6085566848993429"},"_hasShrinkwrap":false}},"name":"ow","time":{"created":"2016-02-04T04:10:37.186Z","modified":"2025-10-16T17:10:10.996Z","0.0.0":"2016-02-04T04:10:37.186Z","0.0.1-security":"2017-09-12T18:17:32.164Z","0.0.1":"2017-09-21T18:32:36.061Z","0.1.0":"2018-04-27T07:47:31.168Z","0.1.1":"2018-04-28T08:14:06.029Z","0.2.0":"2018-04-29T09:59:04.754Z","0.3.0":"2018-05-02T18:50:27.739Z","0.4.0":"2018-05-29T14:03:01.876Z","0.5.0":"2018-06-10T07:49:22.872Z","0.6.0":"2018-06-21T16:38:42.792Z","0.7.0":"2018-09-28T07:07:08.645Z","0.8.0":"2018-10-16T10:20:04.741Z","0.9.0":"2019-01-09T00:42:32.595Z","0.9.1":"2019-01-10T10:11:37.896Z","0.10.0":"2019-01-15T11:38:09.043Z","0.11.0":"2019-01-27T18:23:11.657Z","0.11.1":"2019-01-29T12:16:17.509Z","0.12.0":"2019-02-01T08:35:52.501Z","0.13.0":"2019-05-12T10:04:45.342Z","0.13.1":"2019-05-13T14:50:45.535Z","0.13.2":"2019-05-17T17:16:15.004Z","0.14.0":"2019-10-20T11:30:40.384Z","0.15.0":"2019-11-12T07:04:13.461Z","0.15.1":"2020-01-25T12:23:32.196Z","0.16.0":"2020-02-13T19:06:10.240Z","0.17.0":"2020-02-22T11:58:35.484Z","0.18.0":"2020-09-30T12:33:55.973Z","0.19.0":"2020-10-29T23:33:46.198Z","0.20.0":"2020-11-28T07:56:11.767Z","0.21.0":"2020-12-19T17:28:38.131Z","0.22.0":"2021-01-08T17:48:47.794Z","0.23.0":"2021-01-20T10:08:45.518Z","0.23.1":"2021-06-04T05:32:00.095Z","0.24.0":"2021-06-05T09:44:12.361Z","0.24.1":"2021-06-05T09:55:06.768Z","0.25.0":"2021-06-26T10:49:38.805Z","0.26.0":"2021-07-02T13:14:16.405Z","0.27.0":"2021-07-16T15:34:10.698Z","0.28.0":"2021-09-22T11:39:11.118Z","0.28.1":"2021-10-04T08:33:20.515Z","1.0.0":"2022-06-13T10:45:22.858Z","0.28.2":"2022-10-03T14:30:37.012Z","1.1.0":"2022-10-03T14:34:15.450Z","1.1.1":"2023-01-26T04:24:38.859Z","2.0.0":"2024-05-05T19:00:14.047Z","3.0.0":"2025-09-09T22:28:28.407Z","3.1.0":"2025-10-10T03:53:16.420Z","3.1.1":"2025-10-16T17:10:10.817Z"},"readmeFilename":"readme.md","homepage":"https://github.com/sindresorhus/ow#readme"}