package.json
2.72 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"_from": "json2csv",
"_id": "json2csv@4.1.3",
"_inBundle": false,
"_integrity": "sha512-a6d9A8ulhTR+DyMfZN15xPJPXDCVGF27rK8wkUmH1lRbZ/TsHXH6W/E4G/GxGzurtnfludIsACsO2OSIIGMVOA==",
"_location": "/json2csv",
"_phantomChildren": {},
"_requested": {
"type": "tag",
"registry": true,
"raw": "json2csv",
"name": "json2csv",
"escapedName": "json2csv",
"rawSpec": "",
"saveSpec": null,
"fetchSpec": "latest"
},
"_requiredBy": [
"#USER",
"/"
],
"_resolved": "https://registry.npmjs.org/json2csv/-/json2csv-4.1.3.tgz",
"_shasum": "6e68c0142b99d09e76950ec57f96fa2e791c8527",
"_spec": "json2csv",
"_where": "/Users/ganghyeontae/Desktop/R_BACKEND/backend",
"author": {
"name": "Mirco Zeiss",
"email": "mirco.zeiss@gmail.com"
},
"bin": {
"json2csv": "./bin/json2csv.js"
},
"browser": "dist/json2csv.umd.js",
"bugs": {
"url": "https://github.com/zemirco/json2csv/issues"
},
"bundleDependencies": false,
"dependencies": {
"cli-table2": "^0.2.0",
"commander": "^2.8.1",
"jsonparse": "^1.3.1",
"lodash.clonedeep": "^4.5.0",
"lodash.get": "^4.4.0",
"lodash.set": "^4.3.0"
},
"deprecated": false,
"description": "Convert JSON to CSV",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-preset-es2015-rollup": "^3.0.0",
"coveralls": "^3.0.0",
"docpress": "^0.7.0",
"eslint": "^4.16.0",
"git-update-ghpages": "^1.3.0",
"in-publish": "^2.0.0",
"nyc": "^11.4.1",
"rollup": "^0.56.3",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^8.3.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.1.0",
"rollup-plugin-node-resolve": "^3.0.3",
"standard-version": "^4.0.0",
"tap-spec": "^4.1.1",
"tape": "^4.8.0"
},
"homepage": "https://github.com/zemirco/json2csv#readme",
"keywords": [
"json",
"to",
"csv",
"export",
"convert",
"parse"
],
"license": "MIT",
"main": "dist/json2csv.cjs.js",
"module": "dist/json2csv.esm.js",
"name": "json2csv",
"preferGlobal": "true",
"repository": {
"type": "git",
"url": "git+https://github.com/zemirco/json2csv.git"
},
"scripts": {
"before:publish": "npm test && npm run build && npm run deploy:docs",
"build": "rollup -c",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"deploy:docs": "docpress b && git-update-ghpages zemirco/json2csv _docpress",
"dev": "rollup -c -w",
"lint": "eslint bin lib test",
"prepublish": "in-publish && npm run before:publish || not-in-publish",
"release": "standard-version",
"test": "node test | tap-spec",
"test-with-coverage": "nyc --reporter=text node test | tap-spec"
},
"version": "4.1.3"
}