Changeset 79a0317 for imaps-frontend/node_modules/json-schema-traverse
- Timestamp:
- 01/21/25 03:08:24 (3 days ago)
- Branches:
- main
- Parents:
- 0c6b92a
- 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 5 5 rules: 6 6 block-scoped-var: 2 7 complexity: [2, 1 3]7 complexity: [2, 15] 8 8 curly: [2, multi-or-nest, consistent] 9 9 dot-location: [2, property] -
imaps-frontend/node_modules/json-schema-traverse/README.md
r0c6b92a r79a0317 2 2 Traverse JSON Schema passing each schema object to callback 3 3 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) 7 7 8 8 … … 79 79 80 80 81 ## Enterprise support 82 83 json-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 88 To report a security vulnerability, please use the 89 [Tidelift security contact](https://tidelift.com/security). 90 Tidelift will coordinate the fix and disclosure. Please do NOT report security vulnerability via GitHub issues. 91 92 81 93 ## License 82 94 -
imaps-frontend/node_modules/json-schema-traverse/index.js
r0c6b92a r79a0317 22 22 additionalProperties: true, 23 23 propertyNames: true, 24 not: true 24 not: true, 25 if: true, 26 then: true, 27 else: true 25 28 }; 26 29 … … 33 36 34 37 traverse.propsKeywords = { 38 $defs: true, 35 39 definitions: true, 36 40 properties: true, -
imaps-frontend/node_modules/json-schema-traverse/package.json
r0c6b92a r79a0317 1 1 { 2 2 "name": "json-schema-traverse", 3 "version": " 0.4.1",3 "version": "1.0.0", 4 4 "description": "Traverse JSON Schema passing each schema object to callback", 5 5 "main": "index.js", 6 "types": "index.d.ts", 6 7 "scripts": { 7 8 "eslint": "eslint index.js spec", … … 25 26 "homepage": "https://github.com/epoberezkin/json-schema-traverse#readme", 26 27 "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", 31 31 "pre-commit": "^1.2.2" 32 32 },
Note:
See TracChangeset
for help on using the changeset viewer.