This commit is contained in:
duan
2024-09-10 16:51:56 +08:00
parent 842a5ce7ab
commit 6ebcb6e00d
36 changed files with 2485 additions and 3135 deletions

View File

@@ -1,35 +1,55 @@
{
"name": "json-schema-traverse",
"version": "1.0.0",
"description": "Traverse JSON Schema passing each schema object to callback",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"eslint": "eslint index.js spec",
"test-spec": "mocha spec -R spec",
"test": "npm run eslint && nyc npm run test-spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/epoberezkin/json-schema-traverse.git"
},
"keywords": [
"JSON-Schema",
"traverse",
"iterate"
"_args": [
[
"json-schema-traverse@1.0.0",
"C:\\Users\\asus\\Desktop\\cashier_admin_app"
]
],
"author": "Evgeny Poberezkin",
"license": "MIT",
"_development": true,
"_from": "json-schema-traverse@1.0.0",
"_id": "json-schema-traverse@1.0.0",
"_inBundle": false,
"_integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
"_location": "/json-schema-traverse",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "json-schema-traverse@1.0.0",
"name": "json-schema-traverse",
"escapedName": "json-schema-traverse",
"rawSpec": "1.0.0",
"saveSpec": null,
"fetchSpec": "1.0.0"
},
"_requiredBy": [
"/ajv"
],
"_resolved": "https://registry.npmmirror.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
"_spec": "1.0.0",
"_where": "C:\\Users\\asus\\Desktop\\cashier_admin_app",
"author": {
"name": "Evgeny Poberezkin"
},
"bugs": {
"url": "https://github.com/epoberezkin/json-schema-traverse/issues"
},
"homepage": "https://github.com/epoberezkin/json-schema-traverse#readme",
"description": "Traverse JSON Schema passing each schema object to callback",
"devDependencies": {
"eslint": "^7.3.1",
"mocha": "^8.0.1",
"nyc": "^15.0.0",
"pre-commit": "^1.2.2"
},
"homepage": "https://github.com/epoberezkin/json-schema-traverse#readme",
"keywords": [
"JSON-Schema",
"traverse",
"iterate"
],
"license": "MIT",
"main": "index.js",
"name": "json-schema-traverse",
"nyc": {
"exclude": [
"**/spec/**",
@@ -39,5 +59,16 @@
"lcov",
"text-summary"
]
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/epoberezkin/json-schema-traverse.git"
},
"scripts": {
"eslint": "eslint index.js spec",
"test": "npm run eslint && nyc npm run test-spec",
"test-spec": "mocha spec -R spec"
},
"types": "index.d.ts",
"version": "1.0.0"
}