mirror of
https://github.com/azure/login.git
synced 2026-06-07 16:47:08 +00:00
* Bump lodash from 4.17.15 to 4.17.19 (#52) Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.19. - [Release notes](https://github.com/lodash/lodash/releases) - [Commits](https://github.com/lodash/lodash/compare/4.17.15...4.17.19) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Amruta Kawade <65217380+AmrutaKawade@users.noreply.github.com> * Bump @actions/core from 1.1.3 to 1.2.6 (#60) Bumps [@actions/core](https://github.com/actions/toolkit/tree/HEAD/packages/core) from 1.1.3 to 1.2.6. - [Release notes](https://github.com/actions/toolkit/releases) - [Changelog](https://github.com/actions/toolkit/blob/main/packages/core/RELEASES.md) - [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/core) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Amruta Kawade <65217380+AmrutaKawade@users.noreply.github.com> * updating node_nodules * updated package-lock Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
49 lines
2.1 KiB
Markdown
49 lines
2.1 KiB
Markdown
# HAR Schema [![version][npm-version]][npm-url] [![License][npm-license]][license-url]
|
|
|
|
> JSON Schema for HTTP Archive ([HAR][spec]).
|
|
|
|
[![Build Status][travis-image]][travis-url]
|
|
[![Downloads][npm-downloads]][npm-url]
|
|
[![Code Climate][codeclimate-quality]][codeclimate-url]
|
|
[![Coverage Status][codeclimate-coverage]][codeclimate-url]
|
|
[![Dependency Status][dependencyci-image]][dependencyci-url]
|
|
[![Dependencies][david-image]][david-url]
|
|
|
|
## Install
|
|
|
|
```bash
|
|
npm install --only=production --save har-schema
|
|
```
|
|
|
|
## Usage
|
|
|
|
Compatible with any [JSON Schema validation tool][validator].
|
|
|
|
----
|
|
> :copyright: [ahmadnassri.com](https://www.ahmadnassri.com/) ·
|
|
> License: [ISC][license-url] ·
|
|
> Github: [@ahmadnassri](https://github.com/ahmadnassri) ·
|
|
> Twitter: [@ahmadnassri](https://twitter.com/ahmadnassri)
|
|
|
|
[license-url]: http://choosealicense.com/licenses/isc/
|
|
|
|
[travis-url]: https://travis-ci.org/ahmadnassri/har-schema
|
|
[travis-image]: https://img.shields.io/travis/ahmadnassri/har-schema.svg?style=flat-square
|
|
|
|
[npm-url]: https://www.npmjs.com/package/har-schema
|
|
[npm-license]: https://img.shields.io/npm/l/har-schema.svg?style=flat-square
|
|
[npm-version]: https://img.shields.io/npm/v/har-schema.svg?style=flat-square
|
|
[npm-downloads]: https://img.shields.io/npm/dm/har-schema.svg?style=flat-square
|
|
|
|
[codeclimate-url]: https://codeclimate.com/github/ahmadnassri/har-schema
|
|
[codeclimate-quality]: https://img.shields.io/codeclimate/github/ahmadnassri/har-schema.svg?style=flat-square
|
|
[codeclimate-coverage]: https://img.shields.io/codeclimate/coverage/github/ahmadnassri/har-schema.svg?style=flat-square
|
|
|
|
[david-url]: https://david-dm.org/ahmadnassri/har-schema
|
|
[david-image]: https://img.shields.io/david/ahmadnassri/har-schema.svg?style=flat-square
|
|
|
|
[dependencyci-url]: https://dependencyci.com/github/ahmadnassri/har-schema
|
|
[dependencyci-image]: https://dependencyci.com/github/ahmadnassri/har-schema/badge?style=flat-square
|
|
|
|
[spec]: https://github.com/ahmadnassri/har-spec/blob/master/versions/1.2.md
|
|
[validator]: https://github.com/ahmadnassri/har-validator
|