-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 952 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
44
{
"name": "mongo-index-sync",
"version": "0.0.0",
"description": "Update a live MongoDB database's indexes based on files in source control",
"main": "lib/sync.js",
"bin": {
"mongo-index-sync": "bin/cli.js"
},
"scripts": {
"test": "vows"
},
"engines" : {
"node" : ">=0.10"
},
"repository": {
"type": "git",
"url": "git://github.com/brandonramirez/mongo-index-sync.git"
},
"keywords": [
"mongodb",
"index",
"dba",
"database",
"administration",
"schema",
"deploy"
],
"author": "Brandon Ramirez",
"license": "Apache v2",
"bugs": {
"url": "https://github.com/brandonramirez/mongo-index-sync/issues"
},
"homepage": "https://github.com/brandonramirez/mongo-index-sync",
"dependencies": {
"async": "^0.9.0",
"extend": "^1.2.1",
"mongodb": "^1.4.4",
"nomnom": "^1.6.2",
"underscore": "^1.6.0"
},
"devDependencies": {
"vows": "^0.7.0"
}
}