-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
148 lines (148 loc) · 5.67 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
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"name": "mongosh",
"description": "The MongoDB Shell",
"main": "index.js",
"bin": {
"mongosh": "packages/cli-repl/bin/mongosh.js"
},
"homepage": "https://github.com/mongodb-js/mongosh",
"author": "Compass Team <team-compass@10gen.com>",
"scripts": {
"prebootstrap-with-chromium": "npm install",
"bootstrap-with-chromium": "lerna bootstrap --concurrency=1",
"prebootstrap": "npm install",
"bootstrap": "cross-env PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=1 lerna bootstrap --ignore-prepublish --concurrency=1",
"prebootstrap-without-compass": "npm install",
"bootstrap-without-compass": "cross-env PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=1 lerna bootstrap --ignore @mongodb-js/compass-shell --ignore-prepublish --concurrency=1",
"prebootstrap-ci": "npm ci",
"bootstrap-ci": "lerna bootstrap --ci --concurrency=1",
"clean": "lerna clean -y && rm -Rf node_modules",
"check": "lerna run check --since HEAD --exclude-dependents",
"check-ci": "lerna run check",
"clear-mlaunch": "ts-node -P config/tsconfig.base.json scripts/clear-mlaunch",
"install-mlaunch": "ts-node -P config/tsconfig.base.json scripts/install-mlaunch",
"pretest": "npm run clear-mlaunch && npm run install-mlaunch",
"pretest-ci": "npm run clear-mlaunch -- --killAllMongod && npm run install-mlaunch",
"pretest-e2e-ci": "npm run clear-mlaunch -- --killAllMongod && npm run install-mlaunch",
"posttest": "npm run clear-mlaunch",
"posttest-ci": "npm run clear-mlaunch -- --killAllMongod",
"posttest-e2e-ci": "npm run clear-mlaunch -- --killAllMongod",
"test": "rimraf .nyc_output && lerna exec -- nyc --no-clean --cwd ../.. --reporter=none npm run test && npm run report-coverage",
"test-ci": "rimraf .nyc_output && lerna exec -- nyc --no-clean --cwd ../.. --reporter=none npm run test-ci && npm run report-coverage",
"test-e2e": "lerna run test-e2e",
"test-e2e-ci": "lerna run test-e2e-ci",
"compile-ts": "lerna run compile-ts",
"compile-cli": "lerna run compile-ts --scope @mongosh/cli-repl --include-dependencies",
"prestart-cli": "npm run compile-cli",
"start-cli": "lerna exec npm start --scope @mongosh/cli-repl",
"compile-browser": "lerna run build --scope @mongosh/browser-repl",
"prestart-browser": "npm run compile-browser",
"start-browser": "lerna exec npm start --scope @mongosh/browser-repl",
"compile-compass": "npm run compile-browser && lerna run compile --scope @mongodb-js/compass-shell",
"start-compass": "lerna run start-compass --scope @mongodb-js/compass-shell",
"start": "npm run start-cli",
"precompile-exec": "npm run compile-ts",
"compile-exec": "node scripts/compile-exec.js",
"compile-all": "npm run compile-compass && npm run compile-exec",
"preevergreen-release": "npm run compile-ts",
"evergreen-release": "node scripts/evergreen-release.js",
"publish-npm": "node scripts/publish-npm.js",
"report-missing-help": "lerna run --scope @mongosh/shell-api report-missing-help",
"report-supported-api": "lerna run --scope @mongosh/shell-api report-supported-api",
"generate-homebrew-formula": "node scripts/generate-homebrew-formula",
"report-coverage": "nyc report --reporter=text --reporter=html && nyc check-coverage --lines=80"
},
"config": {
"unsafe-perm": true
},
"repository": {
"type": "git",
"url": "git://github.com/mongodb-js/mongosh.git"
},
"keywords": [
"MongoDB",
"Shell",
"Node",
"JS",
"Compass",
"Stitch"
],
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=12.18.4"
},
"devDependencies": {
"@babel/compat-data": "^7.9.0",
"@mongosh/build": "file:packages/build",
"@octokit/rest": "^17.9.0",
"@types/adm-zip": "^0.4.33",
"@types/bl": "^2.1.0",
"@types/chai": "^4.2.5",
"@types/download": "^6.2.4",
"@types/fs-extra": "^9.0.2",
"@types/gunzip-maybe": "^1.4.0",
"@types/mocha": "^5.2.7",
"@types/node": "^14.14.6",
"@types/node-fetch": "^2.5.7",
"@types/parcel-bundler": "^1.12.1",
"@types/rimraf": "^3.0.0",
"@types/semver": "^7.3.4",
"@types/sinon-chai": "^3.2.4",
"@types/tar": "^4.0.3",
"@types/tar-fs": "^2.0.0",
"@types/tmp": "^0.2.0",
"@types/which": "^1.3.2",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"adm-zip": "^0.4.14",
"aws-sdk": "^2.674.0",
"axios": "^0.19.2",
"boxednode": "^1.7.1",
"browserify": "^16.5.0",
"chai": "^4.2.0",
"command-exists": "^1.2.9",
"cross-env": "^6.0.3",
"download": "^8.0.0",
"electron-notarize": "mongodb-js/electron-notarize",
"eslint": "^6.8.0",
"eslint-config-mongodb-js": "^5.0.3",
"eslint-plugin-mocha": "^6.2.2",
"fs-extra": "^8.1.0",
"gunzip-maybe": "^1.4.2",
"handlebars": "^4.7.6",
"js-yaml": "^3.13.1",
"karma": "^4.4.1",
"karma-chrome-launcher": "^3.1.0",
"karma-cli": "^2.0.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-typescript": "^4.1.1",
"lerna": "^3.10.7",
"mocha": "^7.1.2",
"mongodb": "github:mongodb/node-mongodb-native#98ae02ce",
"mongodb-download-url": "^0.6.1",
"mongodb-js-precommit": "^2.0.0",
"node-codesign": "^0.3.2",
"node-fetch": "^2.6.1",
"nyc": "^15.1.0",
"parcel-bundler": "^1.12.4",
"pkg-deb": "^1.1.2",
"pkg-rpm": "^1.0.2",
"rimraf": "^3.0.2",
"semver": "^7.3.2",
"sinon": "^7.5.0",
"sinon-chai": "^3.4.0",
"tar": "^6.0.1",
"tar-fs": "^2.1.0",
"tmp-promise": "^3.0.2",
"ts-node": "^8.5.2",
"ts-sinon": "^1.2.0",
"typescript": "^4.0.3",
"uuid": "^3.3.3",
"which": "^2.0.2",
"yaml": "^1.10.0"
}
}