forked from once-ler/json2csv-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.json
executable file
·82 lines (82 loc) · 2.06 KB
/
test.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[
{
"name": "json.human",
"numberTest": 101,
"nestedNumber": {
"donald": 101
},
"description": "Convert\n JSON to human readable\r HTML",
"tags": ["DOM", "HTML", "JSON", "Pretty Print"],
"version": "0.1.0",
"main": "json.human.js",
"license": "MIT",
"dependencies": {
"crel": "1.0.0"
},
"bugs": {
"url": "http://github.com/marianoguerra/json.human.js/issues"
},
"contributors": ["Mickey"],
"config": {
"what?": "this object is just to show some extra stuff",
"transformization?": ["transformize the css prefix", "change the css file"],
"integer": 42,
"float": 12.3,
"bool": false,
"emptyString": "",
"emptyArray": [],
"emptyObject": {},
"arrayWithMixed": [{
"type": "car",
"name": "ferrari"
},
123,
"fibre-options", ["x", "y", 21]
],
"htmlEntities": "<meta />"
}
},
{
"name": "json.human",
"numberTest": 102,
"nestedNumber": {
"daisy": 102
},
"description": "Convert\n JSON to human readable\r HTML",
"author": "Mariano Guerra <mariano @marianoguerra.org>",
"tags": ["DOM", "HTML", "JSON", "Pretty Print"],
"version": "0.1.0",
"main": "json.human.js",
"license": "MIT",
"dependencies": {
"crel": "1.0.0"
},
"repository": {
"type": "git",
"url": "git://github.com/marianoguerra/json.human.js.git"
},
"bugs": {
"url": "http://github.com/marianoguerra/json.human.js/issues"
},
"contributors": [],
"config": {
"what?": "this object is just to show some extra stuff",
"how?": ["add json.human.js", "add json.human.css", "???", "profit!"],
"transformization?": ["transformize the css prefix", "change the css file"],
"integer": 42,
"float": 12.3,
"bool": true,
"emptyString": "",
"emptyArray": [],
"emptyObject": {},
"arrayWithMixed": [{
"type": "car",
"name": "ferrari"
},
123,
"fibre-options", [3, 12, "a"]
],
"htmlEntities": " <- trailing <em> & </em> and some html "
}
}
]