File tree Expand file tree Collapse file tree 3 files changed +47
-0
lines changed Expand file tree Collapse file tree 3 files changed +47
-0
lines changed Original file line number Diff line number Diff line change
1
+ # ` mongosh `
2
+
3
+ A small wrapper module that exposes the ` mongosh ` binary for easy installation:
4
+
5
+ ```
6
+ npm i -g mongosh
7
+ ```
Original file line number Diff line number Diff line change
1
+ #!/usr/bin/env node
2
+ require ( '@mongosh/cli-repl/lib/run' ) ;
Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " mongosh" ,
3
+ "version" : " 0.4.0" ,
4
+ "description" : " MongoDB Shell CLI REPL" ,
5
+ "keywords" : [
6
+ " mongosh" ,
7
+ " mongodb" ,
8
+ " mongo" ,
9
+ " shell"
10
+ ],
11
+ "homepage" : " https://github.com/mongodb-js/mongosh/" ,
12
+ "license" : " Apache-2.0" ,
13
+ "bin" : {
14
+ "mongosh" : " bin/mongosh.js"
15
+ },
16
+ "files" : [
17
+ " bin"
18
+ ],
19
+ "repository" : {
20
+ "type" : " git" ,
21
+ "url" : " git+https://github.com/mongodb-js/mongosh.git"
22
+ },
23
+ "scripts" : {
24
+ "test" : " exit 0"
25
+ },
26
+ "bugs" : {
27
+ "url" : " https://github.com/mongodb-js/mongosh/issues"
28
+ },
29
+ "dependencies" : {
30
+ "@mongosh/cli-repl" : " ^0.4.0"
31
+ },
32
+ "publishConfig" : {
33
+ "access" : " public"
34
+ },
35
+ "engines" : {
36
+ "node" : " ^12.4.0"
37
+ }
38
+ }
You can’t perform that action at this time.
0 commit comments