-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 839 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 839 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
{
"name": "mongolike",
"version": "0.1.3",
"description": "MongoDB Clone on top of Postgres",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git://github.com/JerrySievert/mongolike.git"
},
"keywords": [
"mongo",
"mongodb",
"postgres",
"pg",
"db",
"database"
],
"author": "Jerry Sievert <code@legitimatesounding.com> (http://legitimatesounding.com/blog/)",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/JerrySievert/mongolike/issues"
},
"dependencies": {
"pg": "~2.8.3",
"optimist": "~0.6.0",
"ansi-color": "~0.2.1"
},
"preferGlobal": "true",
"bin": {
"mongolike-install": "./bin/mongolike-install"
}
}