-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 749 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 749 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": "csv2jsonic",
"version": "1.0.4",
"description": "This module returns the CSV file in Json file or object.",
"author": "Jun Fujimura <sv.junic@gmail.com> (http://sv.junic.jp)",
"main": "csv2jsonic.js",
"scripts": {
"test": "mocha test/main.js"
},
"keywords": [
"node.js",
"csv",
"json"
],
"repository": {
"type": "git",
"url": "https://github.com/svjunic/csv2json.git"
},
"private": false,
"license": "MIT",
"dependencies": {
"csv": "^0.4.1",
"fs": "0.0.2",
"iconv-lite": "^0.4.10",
"lodash": "^3.3.0",
"mocha": "^2.2.5",
"node-csv": "^0.1.2"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-este-watch": "^0.1.18",
"grunt-shell": "^1.1.1"
}
}