-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 913 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 913 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
35
36
37
38
39
40
41
42
{
"name": "tablespoon",
"version": "0.4.0",
"description": "A NodeJS postgres wrapper to easily create tabls from json or csv data and run queries.",
"main": "./src/tablespoon.js",
"scripts": {
"test": "node ./test/test.js"
},
"bin": {
"tablespoon": "./bin/tablespoon.js"
},
"repository": {
"type": "git",
"url": "https://github.com/ajam/tablespoon.git"
},
"keywords": [
"postgresql",
"psql",
"querying",
"json",
"sqlite",
"memory"
],
"author": "Michael Keller",
"license": "MIT",
"dependencies": {
"colors": "~0.6.2",
"dsv": "~0.0.3",
"optimist": "~0.6.0",
"pg": "~4.3.0",
"sqlite3": "~3.0.5",
"underscore": ">=1.5.2"
},
"bugs": {
"url": "https://github.com/ajam/tablespoon/issues"
},
"homepage": "https://github.com/ajam/tablespoon",
"directories": {
"example": "examples",
"test": "test"
}
}