-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.83 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "mongo-gen",
"version": "0.1.3",
"description": "A command line tool to generate mongo db dummy documents given a schema and record count",
"homepage": "",
"author": {
"name": "fakespy11235",
"email": "fakespy11235@gmail.com",
"url": ""
},
"files": [
"dist"
],
"bin": {
"mongo-gen": "dist/index.js"
},
"keywords": [
"mongo",
"dummy",
"auto-generate"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^6.1.2",
"babel-preset-es2015": "6.9.0",
"babel-register": "^6.26.0",
"del": "^6.1.1",
"eslint": "^8.18.0",
"eslint-config-xo-space": "^0.33.0",
"eslint-plugin-babel": "^5.3.1",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-coveralls": "^0.1.4",
"gulp-eslint": "^6.0.0",
"gulp-exclude-gitignore": "^1.2.0",
"gulp-istanbul": "^1.1.3",
"gulp-line-ending-corrector": "^1.0.3",
"gulp-mocha": "^8.0.0",
"gulp-nsp": "^3.0.1",
"gulp-plumber": "^1.2.1",
"gulp-sourcemaps": "^3.0.0",
"isparta": "^4.1.1",
"istanbul": "^0.4.5",
"istanbul-instrumenter-loader": "^3.0.1"
},
"eslintConfig": {
"extends": "xo-space",
"env": {
"mocha": true
}
},
"repository": "https://github.com/prashant11235/mongo-gen.git",
"scripts": {
"prepublish": "gulp prepublish",
"test": "gulp"
},
"license": "Apache-2.0",
"dependencies": {
"bson-objectid": "^2.0.3",
"chalk": "^5.0.1",
"clear": "0.1.0",
"clui": "^0.3.6",
"colors": "^1.4.0",
"commander": "^9.3.0",
"figlet": "^1.5.2",
"gaussian": "^1.2.0",
"inquirer": "^9.0.0",
"lodash": "^4.17.21",
"minimist": "^1.2.6",
"moment": "^2.29.3",
"mongodb": "^4.7.0",
"preferences": "^2.0.2",
"randy": "^1.5.1",
"utf8": "^3.0.0",
"winston": "^3.8.0"
}
}