UNPKG

jsonfieldexplorer

Version:

Node.js tool to efficiently explore and list all field paths in a JSON object. Perfect for understanding complex JSON structures, it recursively analyzes JSON data to provide a clear summary of nested fields and arrays.

11 lines (10 loc) 257 B
module.exports = { preset: "ts-jest", transform: { "^.+\\.(ts|tsx)?$": "ts-jest", "^.+\\.(cjs|js|jsx)$": "babel-jest", }, testMatch: ["**/*.test.js", "**/*.test.cjs"], testEnvironment: "node", setupFiles: ["<rootDir>/test/setup.js"], };