forked from martinerko/mongo-log-analyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 901 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": "mongo-log-analyzer",
"version": "0.1.0",
"description": "This tool will will give you some insights about your database queries.",
"main": "index.js",
"dependencies": {
"debug": "^2.2.0",
"event-stream": "^3.3.2",
"lodash.find": "^4.3.0",
"lodash.isobject": "^3.0.2",
"lodash.pick": "^4.2.0",
"lodash.remove": "^4.3.0",
"lodash.uniq": "^4.3.0",
"minimist": "^1.2.0",
"string-template": "^1.0.0"
},
"devDependencies": {
"assert": "^1.3.0",
"ghooks": "^1.2.1",
"jshint": "^2.9.2",
"mocha": "^2.4.5"
},
"config": {
"ghooks": {
"pre-commit": "jshint ."
}
},
"scripts": {
"test": "mocha test/*.spec.js"
},
"bin": {
"mongo-log-analyzer": "./bin/index"
},
"keywords": [
"mongo",
"mongod",
"logs",
"queries",
"statistics"
],
"author": "martinerko",
"license": "MIT"
}