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
| {
| "name": "json2csv",
| "preferGlobal": "true",
| "version": "3.0.2",
| "description": "Convert JSON to CSV",
| "keywords": [
| "json",
| "to",
| "csv",
| "export",
| "convert",
| "parse"
| ],
| "author": {
| "name": "Mirco Zeiss",
| "email": "mirco.zeiss@gmail.com",
| "twitter": "zeMirco"
| },
| "license": "MIT",
| "bin": {
| "json2csv": "./bin/json2csv.js"
| },
| "main": "./lib/json2csv.js",
| "repository": {
| "type": "git",
| "url": "https://github.com/zemirco/json2csv"
| },
| "scripts": {
| "test": "eslint . && node test | tap-spec",
| "test-coverage": "istanbul cover test/index.js --report lcovonly | tap-spec"
| },
| "dependencies": {
| "cli-table": "^0.3.1",
| "commander": "^2.8.1",
| "debug": "^2.2.0",
| "lodash.get": "^3.7.0",
| "path-is-absolute": "^1.0.0"
| },
| "devDependencies": {
| "async": "^1.4.2",
| "eslint": "^1.0.0-rc-1",
| "istanbul": "^0.3.14",
| "tap-spec": "^4.1.0",
| "tape": "^4.0.0"
| }
| }
|
|