-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 892 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 892 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
{
"name": "index-factory",
"version": "0.0.1",
"description": "Automatically generates indices for MongoDb based on previous usage. Reads slow queries from the profiling info collection, parses, optimizes and prints a list of createIndex commands.",
"main": "server.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "node tests/collectionTests.js && node tests/mongoIndexTests.js",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tomleibo/IndexFactory.git"
},
"keywords": [
"Mongo",
"MongoDB",
"Index"
],
"author": "Tom Leibovich",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/tomleibo/IndexFactory/issues"
},
"homepage": "https://github.com/tomleibo/IndexFactory#readme",
"dependencies": {
"express": "^4.16.2",
"mongodb": "^2.2.33"
}
}