forked from zemirco/json2csv
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (42 loc) · 957 Bytes
/
package.json
File metadata and controls
43 lines (42 loc) · 957 Bytes
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
{
"name": "json2csv",
"preferGlobal": "true",
"version": "2.2.1",
"description": "Convert json to csv with column titles",
"keywords": [
"json",
"to",
"csv",
"export",
"convert",
"parse"
],
"author": {
"name": "Mirco Zeiss",
"email": "mirco.zeiss@gmail.com",
"twitter": "zeMirco"
},
"bin": {
"json2csv": "./bin/json2csv.js"
},
"main": "./lib/json2csv.js",
"repository": {
"type": "git",
"url": "https://github.com/zeMirco/json2csv"
},
"scripts": {
"test": "./node_modules/.bin/mocha --reporter spec",
"format": "node ./node_modules/js-beautify/js/bin/js-beautify.js lib/json2csv.js test/test.js package.json -r --config js-beautify.json"
},
"dependencies": {
"commander": "~1.0.5",
"cli-table": "~0.2.0",
"async": "~0.2.9"
},
"devDependencies": {
"mocha": "~1.14.0",
"should": "~2.0.2",
"async": "~0.2.9",
"js-beautify": "~1.4.2"
}
}