You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

package.json 2.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. {
  2. "name": "mongodb",
  3. "version": "3.6.9",
  4. "description": "The official MongoDB driver for Node.js",
  5. "main": "index.js",
  6. "files": [
  7. "index.js",
  8. "lib"
  9. ],
  10. "repository": {
  11. "type": "git",
  12. "url": "git@github.com:mongodb/node-mongodb-native.git"
  13. },
  14. "keywords": [
  15. "mongodb",
  16. "driver",
  17. "official"
  18. ],
  19. "peerDependenciesMeta": {
  20. "kerberos": {
  21. "optional": true
  22. },
  23. "mongodb-client-encryption": {
  24. "optional": true
  25. },
  26. "mongodb-extjson": {
  27. "optional": true
  28. },
  29. "snappy": {
  30. "optional": true
  31. },
  32. "bson-ext": {
  33. "optional": true
  34. },
  35. "aws4": {
  36. "optional": true
  37. }
  38. },
  39. "dependencies": {
  40. "bl": "^2.2.1",
  41. "bson": "^1.1.4",
  42. "denque": "^1.4.1",
  43. "optional-require": "^1.0.3",
  44. "safe-buffer": "^5.1.2"
  45. },
  46. "devDependencies": {
  47. "@types/chai": "^4.2.16",
  48. "@types/mocha": "^8.2.2",
  49. "@types/node": "^14.14.37",
  50. "array-includes": "^3.1.3",
  51. "chai": "^4.1.1",
  52. "chai-subset": "^1.6.0",
  53. "chalk": "^2.4.2",
  54. "co": "4.6.0",
  55. "eslint": "^7.10.0",
  56. "eslint-config-prettier": "^6.11.0",
  57. "eslint-plugin-es": "^3.0.1",
  58. "eslint-plugin-prettier": "^3.1.3",
  59. "jsdoc": "^3.5.5",
  60. "lodash.camelcase": "^4.3.0",
  61. "mocha": "5.2.0",
  62. "mocha-sinon": "^2.1.0",
  63. "mongodb-extjson": "^2.1.1",
  64. "mongodb-mock-server": "^1.0.1",
  65. "nyc": "^15.1.0",
  66. "object.entries": "^1.1.3",
  67. "prettier": "^1.19.1",
  68. "semver": "^5.5.0",
  69. "sinon": "^4.3.0",
  70. "sinon-chai": "^3.2.0",
  71. "snappy": "^6.3.4",
  72. "spec-xunit-file": "0.0.1-3",
  73. "standard-version": "^9.2.0",
  74. "tslib": "^2.2.0",
  75. "typescript": "^4.2.4",
  76. "util.promisify": "^1.0.1",
  77. "worker-farm": "^1.5.0",
  78. "wtfnode": "^0.8.0",
  79. "yargs": "^14.2.0"
  80. },
  81. "license": "Apache-2.0",
  82. "engines": {
  83. "node": ">=4"
  84. },
  85. "bugs": {
  86. "url": "https://github.com/mongodb/node-mongodb-native/issues"
  87. },
  88. "scripts": {
  89. "build:evergreen": "node .evergreen/generate_evergreen_tasks.js",
  90. "build:unified": "tsc -p test/functional/unified-spec-runner/tsconfig.unified.json",
  91. "check:atlas": "mocha --opts '{}' ./test/manual/atlas_connectivity.test.js",
  92. "check:bench": "node test/benchmarks/driverBench/",
  93. "check:coverage": "nyc npm run check:test",
  94. "check:kerberos": "mocha --opts '{}' -t 60000 test/manual/kerberos.test.js",
  95. "check:ldap": "mocha --opts '{}' test/manual/ldap.test.js",
  96. "check:lint": "eslint -v && eslint lib test",
  97. "check:test": "mocha --recursive test/functional test/unit",
  98. "check:tls": "mocha --opts '{}' test/manual/tls_support.test.js",
  99. "format": "npm run check:lint -- --fix",
  100. "release": "standard-version -i HISTORY.md",
  101. "test": "npm run lint && mocha --recursive test/functional test/unit"
  102. },
  103. "homepage": "https://github.com/mongodb/node-mongodb-native",
  104. "optionalDependencies": {
  105. "saslprep": "^1.0.0"
  106. }
  107. }