-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.85 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.85 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
{
"name": "@mongosh/browser-runtime-core",
"version": "3.13.0",
"description": "Mongosh browser runtime core",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"engines": {
"node": ">=14.15.1"
},
"config": {
"unsafe-perm": true
},
"repository": {
"type": "git",
"url": "git://github.com/mongodb-js/mongosh.git"
},
"scripts": {
"test": "mocha -r \"../../scripts/import-expansions.js\" --timeout 60000 -r ts-node/register \"./{src,lib}/**/*.spec.ts\" --reporter \"../../configs/mocha-config-mongosh/reporter.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",
"eslint": "eslint",
"lint": "npm run eslint . && npm run prettier -- --check .",
"check": "npm run lint && npm run depcheck",
"depcheck": "depcheck",
"preprepublish": "rimraf ./lib",
"prepublish": "npm run compile",
"compile": "tsc -p tsconfig.json",
"prettier": "prettier",
"reformat": "npm run prettier -- --write . && npm run eslint --fix"
},
"author": "",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"mongosh": {
"unitTestsOnly": true
},
"devDependencies": {
"@mongodb-js/eslint-config-mongosh": "^1.0.0",
"@mongodb-js/prettier-config-devtools": "^1.0.1",
"@mongodb-js/tsconfig-mongosh": "^1.0.0",
"@mongodb-js/mongodb-ts-autocomplete": "^0.3.4",
"@mongosh/types": "3.8.0",
"bson": "^6.10.3",
"depcheck": "^1.4.7",
"eslint": "^7.25.0",
"prettier": "^2.8.8",
"rimraf": "^3.0.2"
},
"dependencies": {
"@mongosh/autocomplete": "^3.13.0",
"@mongosh/service-provider-core": "3.3.3",
"@mongosh/shell-api": "^3.13.0",
"@mongosh/shell-evaluator": "^3.13.0"
}
}