-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1010 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
35
36
37
38
39
40
41
42
43
{
"name": "csv-2-redis",
"version": "0.0.10",
"description": "A simple module to upload given CSV file into Redis",
"main": "./lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node ./lib/index.js",
"debugger": "node --debug-brk=5858 --nolazy ./lib/index.js"
},
"preferGlobal": "true",
"bin": {
"csv-2-redis": "./bin/index"
},
"directories": {
"bin": "./bin"
},
"repository": {
"type": "git",
"url": "https://github.com/happyvig/csv-2-redis.git"
},
"keywords": [
"csv-2-redis", "csv-to-redis"
],
"author": "Vignesh Kumar",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/happyvig/csv-2-redis/issues"
},
"devDependencies": {
"mocha": "~2.2.5",
"chai": "~2.3.0",
"jasmine": "~2.3.1"
},
"dependencies": {
"chalk": "^1.0.0",
"commander": "^2.8.1",
"csv-parse": "~0.1.1",
"redis": "~0.12.1",
"rsvp": "~3.0.18",
"underscore": "^1.8.3"
}
}