-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 4.29 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 4.29 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "@mongosh/cli-repl",
"version": "2.3.9",
"description": "MongoDB Shell CLI REPL Package",
"homepage": "https://github.com/mongodb-js/mongosh",
"author": "Compass Team <compass@mongodb.com>",
"manufacturer": "MongoDB Inc.",
"main": "lib/run.js",
"types": "lib/run.d.ts",
"bin": {
"mongosh": "bin/mongosh.js"
},
"config": {
"unsafe-perm": true
},
"repository": {
"type": "git",
"url": "git://github.com/mongodb-js/mongosh.git"
},
"scripts": {
"compile": "tsc -p tsconfig.json",
"start": "node bin/mongosh.js",
"pretest": "npm run compile",
"test": "mocha -r \"../../scripts/import-expansions.js\" --timeout 60000 -r ts-node/register --reporter \"../../configs/mocha-config-mongosh/reporter.ts\" \"./src/**/*.spec.ts\"",
"test-ci": "node ../../scripts/run-if-package-requested.js npm test",
"test-coverage": "nyc --no-clean --cwd ../.. --reporter=none npm run test",
"test-ci-coverage": "nyc --no-clean --cwd ../.. --reporter=none npm run test-ci",
"test-apistrict-ci": "cross-env MONGOSH_TEST_FORCE_API_STRICT=1 npm run test-ci",
"test-smoke": "node bin/mongosh.js --smokeTests",
"eslint": "eslint",
"lint": "npm run eslint . && npm run prettier -- --check .",
"check": "npm run lint && npm run depcheck",
"depcheck": "depcheck",
"prepublish": "npm run compile",
"webpack-build": "npm run compile && webpack --mode production && cat dist/add-module-mapping.js >> dist/mongosh.js",
"webpack-build-dev": "npm run compile && webpack --mode development && cat dist/add-module-mapping.js >> dist/mongosh.js",
"start-snapshot": "rm -f snapshot.blob && node --snapshot-blob snapshot.blob --build-snapshot dist/mongosh.js && node --snapshot-blob snapshot.blob dist/mongosh.js",
"prettier": "prettier",
"reformat": "npm run prettier -- --write . && npm run eslint --fix"
},
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.19.0"
},
"mongosh": {
"ciRequiredOptionalDependencies": {
"macos-export-certificate-and-key": [
"darwin"
],
"win-export-certificate-and-key": [
"win32"
],
"get-console-process-list": [
"win32"
],
"glibc-version": [
"linux"
]
}
},
"dependencies": {
"@mongodb-js/devtools-proxy-support": "^0.4.2",
"@mongosh/arg-parser": "3.2.0",
"@mongosh/autocomplete": "3.2.0",
"@mongosh/editor": "3.2.0",
"@mongosh/errors": "2.4.0",
"@mongosh/history": "2.4.2",
"@mongosh/i18n": "2.6.0",
"@mongosh/js-multiline-to-singleline": "2.4.2",
"@mongosh/logging": "3.2.0",
"@mongosh/service-provider-core": "3.0.2",
"@mongosh/service-provider-node-driver": "3.2.0",
"@mongosh/shell-api": "3.2.0",
"@mongosh/shell-evaluator": "3.2.0",
"@mongosh/snippet-manager": "3.2.0",
"@mongosh/types": "3.2.0",
"@segment/analytics-node": "^1.3.0",
"ansi-escape-sequences": "^5.1.2",
"askcharacter": "^2.0.4",
"askpassword": "^2.0.2",
"escape-string-regexp": "^4.0.0",
"is-recoverable-error": "^1.0.3",
"js-yaml": "^4.1.0",
"mongodb-connection-string-url": "^3.0.1",
"mongodb-log-writer": "^2.3.1",
"numeral": "^2.0.6",
"pretty-repl": "^4.0.1",
"semver": "^7.5.4",
"strip-ansi": "^6.0.0",
"text-table": "^0.2.0",
"yargs-parser": "^20.2.4",
"glibc-version": "^1.0.0"
},
"devDependencies": {
"mongodb": "^6.12.0",
"@mongodb-js/eslint-config-mongosh": "^1.0.0",
"@mongodb-js/prettier-config-devtools": "^1.0.1",
"@mongodb-js/sbom-tools": "^0.7.0",
"@mongodb-js/tsconfig-mongosh": "^1.0.0",
"@types/ansi-escape-sequences": "^4.0.0",
"@types/js-yaml": "^4.0.5",
"@types/node": "^14.14.6",
"@types/numeral": "^2.0.2",
"@types/text-table": "^0.2.1",
"@types/yargs-parser": "^15.0.0",
"@types/chai-as-promised": "^7.1.3",
"chai-as-promised": "^7.1.1",
"depcheck": "^1.4.7",
"eslint": "^7.25.0",
"mongodb-crypt-library-dummy": "^1.0.2",
"prettier": "^2.8.8",
"webpack-merge": "^5.8.0"
},
"optionalDependencies": {
"get-console-process-list": "^1.0.5",
"glibc-version": "^1.0.0",
"macos-export-certificate-and-key": "^1.2.4",
"mongodb-crypt-library-version": "^1.0.5",
"win-export-certificate-and-key": "^2.1.0"
}
}