forked from jupe/csv-json
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (33 loc) · 824 Bytes
/
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
{
"name": "csv-json",
"version": "0.0.2",
"preferGlobal": false,
"description": "Node.js module for read csv file and reorganize it to json-object",
"preferGlobal": "true",
"main": "lib/csv-json.js",
"author": "Jussi Vatjus-Anttila <jussiva@gmail.com>",
"contributors": [
{
"name": "Jussi Vatjus-Anttila",
"email": "jussiva@gmail.com"
}
],
"keywords": ["json", "csv"],
"repository" : {
"type": "git",
"url": "https://github.com/jupe/csv-json.git"
},
"dependencies": {
"csv": ">=0.3.0"
},
"devDependencies": {
"csv": ">=0.3.0",
"mocha": "*",
"chai": "*"
},
"license": "MIT",
"engines": { "node": ">=0.8.0" },
"scripts": {
"test": "mocha -R list test"
}
}