-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1010 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
{
"name": "mongo-slow-queries",
"version": "2.1.0",
"description": "Utility for identifying slow queries in Mongo",
"main": "src/index.js",
"scripts": {
"ci": "npm run lint && npm test",
"lint": "eslint .",
"test": "jasmine"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mixmaxhq/mongo-slow-queries.git"
},
"keywords": [
"mongo",
"slow-query",
"query",
"db"
],
"author": "Trey Tacon <[email protected]> (https://mixmax.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mixmaxhq/mongo-slow-queries/issues"
},
"homepage": "https://github.com/mixmaxhq/mongo-slow-queries#readme",
"devDependencies": {
"@mixmaxhq/prettier-config": "^1.0.0",
"eslint": "^6.8.0",
"eslint-config-mixmax": "^4.6.0",
"jasmine": "^2.5.3",
"pre-commit": "^1.2.2",
"prettier": "^1.19.1"
},
"dependencies": {
"promise-callbacks": "^3.2.2",
"underscore": "^1.8.3"
},
"pre-commit": [
"lint"
]
}