forked from mrodrig/json-2-csv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·41 lines (41 loc) · 1.05 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
{
"author": "mrodrig",
"name": "json-2-csv",
"description": "A JSON to CSV and CSV to JSON converter that natively supports sub-documents and auto-generates the CSV heading.",
"version": "2.1.1",
"repository": {
"type": "git",
"url": "http://github.com/mrodrig/json-2-csv.git"
},
"main": "./lib/converter.js",
"scripts": {
"test": "./node_modules/.bin/mocha test/tests.js",
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- -R spec"
},
"keywords": [
"json",
"csv",
"converter",
"json2csv",
"csv2json",
"json2csv-converter",
"csv2json-converter",
"json-2-csv",
"csv-2-json"
],
"dependencies": {
"underscore": "1.8.3",
"doc-path": "1.0.8",
"bluebird": "3.5.0"
},
"devDependencies": {
"mocha": "3.3.0",
"istanbul": "0.4.5",
"should": "11.2.1",
"async": "2.3.0"
},
"engines": {
"node": "*"
},
"license": "MIT"
}