-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.12 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.12 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
{
"name": "@mongodb-js/devtools-connect",
"version": "3.16.3",
"description": "A connection establishment utility for MongoDB developer tools",
"homepage": "https://github.com/mongodb-js/devtools-shared/tree/main/packages/devtools-connect",
"repository": {
"type": "git",
"url": "https://github.com/mongodb-js/devtools-shared.git"
},
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/mongodb-js/devtools-shared/issues"
},
"main": "dist/index.js",
"exports": {
"require": "./dist/index.js",
"import": "./.esm-wrapper.mjs"
},
"files": [
"LICENSE",
"dist",
"package.json",
"README.md",
".esm-wrapper.mjs"
],
"scripts": {
"bootstrap": "npm run compile",
"prepublishOnly": "npm run compile",
"compile": "npm run compile-ts && gen-esm-wrapper . ./.esm-wrapper.mjs",
"typecheck": "tsc --noEmit",
"eslint": "eslint src/**/*.ts",
"prettier": "prettier",
"lint": "npm run eslint . && npm run prettier -- --check .",
"depcheck": "depcheck",
"check": "npm run typecheck && npm run lint && npm run depcheck",
"check-ci": "npm run check",
"testonly": "nyc mocha --colors --register ts-node/register src/**/*.spec.ts",
"test": "npm run lint && npm run compile && npm run testonly",
"test-cov": "nyc -x \"**/*.spec.*\" --reporter=lcov --reporter=text --reporter=html npm run test",
"test-watch": "npm run test -- --watch",
"test-ci": "npm run test-cov",
"reformat": "npm run prettier -- --write .",
"prepack": "npm run compile",
"compile-ts": "tsc -p tsconfig.json"
},
"license": "Apache-2.0",
"dependencies": {
"@mongodb-js/oidc-http-server-pages": "1.2.12",
"@mongodb-js/devtools-proxy-support": "^0.7.14",
"lodash.merge": "^4.6.2",
"mongodb-connection-string-url": "^3.0.1 || ^7.0.0",
"socks": "^2.7.3"
},
"peerDependencies": {
"@mongodb-js/oidc-plugin": "^2.0.8",
"mongodb": "^6.9.0 || ^7.0.0",
"mongodb-log-writer": "^2.5.13"
},
"devDependencies": {
"@mongodb-js/oidc-plugin": "^2.0.8",
"@mongodb-js/saslprep": "^1.4.11",
"@types/lodash.merge": "^4.6.7",
"@types/mocha": "^9.1.1",
"@types/node": "^22.15.30",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"chai": "^4.5.0",
"eslint": "^7.25.0 || ^8.0.0",
"eslint-config-semistandard": "^17.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"gen-esm-wrapper": "^1.1.3",
"mocha": "^8.4.0",
"mongodb": "^7.2.0",
"mongodb6": "npm:mongodb@^6.9.0",
"mongodb-log-writer": "^2.5.13",
"mongodb-runner": "^6.7.12",
"nyc": "^15.1.0",
"os-dns-native": "^2.0.1",
"resolve-mongodb-srv": "^1.1.7",
"sinon-chai": "^4.0.1",
"ts-node": "^10.9.2",
"ts-sinon": "^2.0.1",
"typescript": "^5.9.3",
"prettier": "^3.8.1"
},
"optionalDependencies": {
"kerberos": "^2.1.0 || ^7.0.0",
"mongodb-client-encryption": "^6.5.0 || ^7.0.0",
"os-dns-native": "^2.0.1",
"resolve-mongodb-srv": "^1.1.7"
}
}