-
Notifications
You must be signed in to change notification settings - Fork 188
/
package.json
91 lines (91 loc) · 2.92 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
{
"name": "mongodb-data-service",
"description": "MongoDB Data Service",
"author": "Durran Jordan <[email protected]>",
"bugs": {
"url": "https://jira.mongodb.org/projects/COMPASS/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/mongodb-js/compass",
"version": "22.23.10",
"repository": {
"type": "git",
"url": "https://github.com/mongodb-js/compass.git"
},
"license": "SSPL",
"keywords": [
"mongodb-js"
],
"main": "lib/index.js",
"compass:main": "src/index.ts",
"exports": {
".": "./lib/index.js"
},
"compass:exports": {
".": "./src/index.ts"
},
"types": "./lib/index.d.ts",
"files": [
"lib",
"package.json",
"README.md"
],
"scripts": {
"bootstrap": "npm run compile",
"prepublishOnly": "npm run compile && compass-scripts check-exports-exist",
"clean": "node -e \"fs.rmSync('lib', { recursive: true, force: true })\" || true",
"precompile": "npm run clean",
"compile": "tsc -p tsconfig.json",
"depcheck": "compass-scripts check-peer-deps && depcheck",
"eslint": "eslint",
"prettier": "prettier",
"lint": "npm run eslint . && npm run prettier -- --check .",
"check": "npm run lint && npm run depcheck",
"check-ci": "npm run check",
"test": "mocha",
"test-connectivity": "mocha ./src/connect.spec.ts",
"test-csfle": "mocha ./src/csfle-collection-tracker.spec.ts ./src/data-service.spec.ts",
"test-cov": "nyc --compact=false --produce-source-map=false -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 eslint . -- --fix && npm run prettier -- --write ."
},
"dependencies": {
"@mongodb-js/compass-logging": "^1.4.13",
"@mongodb-js/compass-utils": "^0.6.17",
"@mongodb-js/devtools-connect": "^3.3.4",
"@mongodb-js/devtools-proxy-support": "^0.4.2",
"bson": "^6.10.1",
"lodash": "^4.17.21",
"mongodb": "^6.12.0",
"mongodb-build-info": "^1.7.2",
"mongodb-connection-string-url": "^3.0.1",
"mongodb-ns": "^2.4.2"
},
"devDependencies": {
"@mongodb-js/compass-test-server": "^0.1.24",
"@mongodb-js/devtools-docker-test-envs": "^1.3.3",
"@mongodb-js/eslint-config-compass": "^1.1.9",
"@mongodb-js/mocha-config-compass": "^1.4.4",
"@mongodb-js/oidc-plugin": "^1.1.5",
"@mongodb-js/prettier-config-compass": "^1.0.4",
"@mongodb-js/tsconfig-compass": "^1.0.7",
"@types/lodash": "^4.14.188",
"@types/whatwg-url": "^8.2.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"depcheck": "^1.4.1",
"eslint": "^7.25.0",
"kerberos": "^2.2.0",
"mocha": "^10.2.0",
"mongodb-log-writer": "^1.4.2",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"sinon": "^9.2.3",
"socks": "^2.7.3",
"typescript": "^5.0.4"
},
"optionalDependencies": {
"mongodb-client-encryption": "^6.1.0"
}
}