Ignore:
Timestamp:
01/21/25 03:08:24 (3 days ago)
Author:
stefan toskovski <stefantoska84@…>
Branches:
main
Parents:
0c6b92a
Message:

F4 Finalna Verzija

Location:
imaps-frontend/node_modules/json-schema-traverse
Files:
4 added
4 edited

Legend:

Unmodified
Added
Removed
  • imaps-frontend/node_modules/json-schema-traverse/.eslintrc.yml

    r0c6b92a r79a0317  
    55rules:
    66  block-scoped-var: 2
    7   complexity: [2, 13]
     7  complexity: [2, 15]
    88  curly: [2, multi-or-nest, consistent]
    99  dot-location: [2, property]
  • imaps-frontend/node_modules/json-schema-traverse/README.md

    r0c6b92a r79a0317  
    22Traverse JSON Schema passing each schema object to callback
    33
    4 [![Build Status](https://travis-ci.org/epoberezkin/json-schema-traverse.svg?branch=master)](https://travis-ci.org/epoberezkin/json-schema-traverse)
    5 [![npm version](https://badge.fury.io/js/json-schema-traverse.svg)](https://www.npmjs.com/package/json-schema-traverse)
    6 [![Coverage Status](https://coveralls.io/repos/github/epoberezkin/json-schema-traverse/badge.svg?branch=master)](https://coveralls.io/github/epoberezkin/json-schema-traverse?branch=master)
     4[![build](https://github.com/epoberezkin/json-schema-traverse/workflows/build/badge.svg)](https://github.com/epoberezkin/json-schema-traverse/actions?query=workflow%3Abuild)
     5[![npm](https://img.shields.io/npm/v/json-schema-traverse)](https://www.npmjs.com/package/json-schema-traverse)
     6[![coverage](https://coveralls.io/repos/github/epoberezkin/json-schema-traverse/badge.svg?branch=master)](https://coveralls.io/github/epoberezkin/json-schema-traverse?branch=master)
    77
    88
     
    7979
    8080
     81## Enterprise support
     82
     83json-schema-traverse package is a part of [Tidelift enterprise subscription](https://tidelift.com/subscription/pkg/npm-json-schema-traverse?utm_source=npm-json-schema-traverse&utm_medium=referral&utm_campaign=enterprise&utm_term=repo) - it provides a centralised commercial support to open-source software users, in addition to the support provided by software maintainers.
     84
     85
     86## Security contact
     87
     88To report a security vulnerability, please use the
     89[Tidelift security contact](https://tidelift.com/security).
     90Tidelift will coordinate the fix and disclosure. Please do NOT report security vulnerability via GitHub issues.
     91
     92
    8193## License
    8294
  • imaps-frontend/node_modules/json-schema-traverse/index.js

    r0c6b92a r79a0317  
    2222  additionalProperties: true,
    2323  propertyNames: true,
    24   not: true
     24  not: true,
     25  if: true,
     26  then: true,
     27  else: true
    2528};
    2629
     
    3336
    3437traverse.propsKeywords = {
     38  $defs: true,
    3539  definitions: true,
    3640  properties: true,
  • imaps-frontend/node_modules/json-schema-traverse/package.json

    r0c6b92a r79a0317  
    11{
    22  "name": "json-schema-traverse",
    3   "version": "0.4.1",
     3  "version": "1.0.0",
    44  "description": "Traverse JSON Schema passing each schema object to callback",
    55  "main": "index.js",
     6  "types": "index.d.ts",
    67  "scripts": {
    78    "eslint": "eslint index.js spec",
     
    2526  "homepage": "https://github.com/epoberezkin/json-schema-traverse#readme",
    2627  "devDependencies": {
    27     "coveralls": "^2.13.1",
    28     "eslint": "^3.19.0",
    29     "mocha": "^3.4.2",
    30     "nyc": "^11.0.2",
     28    "eslint": "^7.3.1",
     29    "mocha": "^8.0.1",
     30    "nyc": "^15.0.0",
    3131    "pre-commit": "^1.2.2"
    3232  },
Note: See TracChangeset for help on using the changeset viewer.