-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1 KB
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
{
"name": "streamcsvjson",
"version": "0.0.7",
"main": "lib/streamcsvjson.js",
"description": "Reads a CSV file and outputs JSON",
"homepage": "https://github.com/hybrisCole/streamcsvjson.git",
"bugs": "https://github.com/hybrisCole/streamcsvjson/issues",
"author": {
"name": "Alberto Cole",
"email": "acpii2005@gmail.com",
"url": "https://github.com/hybrisCole"
},
"repository": {
"type": "git",
"url": "https://github.com/hybrisCole/streamcsvjson"
},
"license": "MIT",
"files": [
"lib"
],
"keywords": [],
"devDependencies": {
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-nodeunit": "^0.3.3",
"grunt-contrib-watch": "^0.6.1",
"load-grunt-tasks": "^0.4.0",
"time-grunt": "^0.3.1",
"jshint-stylish": "^0.2.0"
},
"dependencies":{
"commander":"2.2.0",
"lodash-node":"2.4.1",
"moment":"2.6.0",
"node-promise":"0.5.10"
},
"scripts": {
"test": "grunt"
},
"bin": {
"streamcsvjson" : "lib/streamcsvjson.js"
}
}