-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.2 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.2 KB
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
45
46
47
48
49
50
51
52
53
54
55
{
"name": "flamongo",
"version": "2.0.5",
"description": "A tool that helps you find the most efficient indexes for your MongoDB collections",
"main": "lib/index.js",
"author": "rouanw",
"license": "MIT",
"keywords": [
"mongo",
"mongodb",
"index",
"performance",
"collection"
],
"repository": {
"type": "git",
"url": "https://github.com/rouanw/flamongo"
},
"homepage": "https://rouanw.github.io/flamongo/",
"bugs": {
"url": "https://github.com/rouanw/flamongo/issues"
},
"scripts": {
"start": "node index.js",
"test": "node test.js",
"lint": "eslint ."
},
"bin": {
"flamongo": "bin/cli.js"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm test && npm audit"
}
},
"dependencies": {
"bluebird": "^3.7.2",
"chalk": "^1.1.3",
"columnify": "^1.5.4",
"index-mixer": "^0.2.0",
"lodash": "^4.17.15",
"minimist": "^1.2.5",
"mongodb": "^3.5.2",
"randoc": "^1.0.1"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^11.3.2",
"eslint-plugin-import": "^2.20.1",
"husky": "^2.7.0",
"strip-ansi": "^4.0.0",
"tape": "^4.13.2"
}
}