forked from Keyang/node-csvtojson
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 861 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 861 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
{
"name": "csvtojson",
"description": "A tool concentrating on converting csv data to JSON with customised parser supporting",
"author": "Keyang Xiang <keyang.xiang@gmail.com>",
"homepage": "http://keyangxiang.com/blog/csv2json/",
"bugs": "https://github.com/Keyang/node-csvtojson/issues",
"repository": {
"type": "git",
"url": "https://github.com/Keyang/node-csvtojson.git"
},
"contributors": [{
"name": "Keyang Xiang",
"email": "keyang.xiang@gmail.com"
}],
"version": "0.3.17",
"keywords": [
"csv",
"json",
"convert",
"parser",
"exntendible",
"plugin"
],
"bin": {
"csvtojson": "./bin/csvtojson"
},
"license": [{
"type": "MIT",
"url": "https://github.com/Keyang/node-csvtojson/blob/master/LICENSE"
}],
"engines":{
"node":">=0.10"
}
}