-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.33 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "jsonfieldexplorer",
"version": "0.1.4",
"description": " 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.",
"main": "index.js",
"type": "module",
"scripts": {
"test": "jest",
"generate-benchmark": "node ./generate-benchmark.js",
"benchmark": "node ./generate-benchmark.js && node benchmark.js"
},
"bin": {
"jfe": "./index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cnille/jsonfieldexplorer.git"
},
"keywords": [
"json",
"field-explorer",
"path-finder",
"json-structure",
"json-analysis",
"data-mapping",
"json-tool",
"nested-json",
"json-traversal",
"json-utility",
"structure-visualization",
"json-path",
"json-parser",
"developer-tools",
"json-navigator"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/cnille/jsonfieldexplorer/issues"
},
"homepage": "https://github.com/cnille/jsonfieldexplorer#readme",
"devDependencies": {
"@babel/preset-env": "^7.24.4",
"@faker-js/faker": "^8.4.1",
"babel-jest": "^29.7.0",
"benchmark": "^2.1.4",
"jest": "^29.7.0",
"ts-jest": "^29.1.2"
}
}