package.json 3.0 KB

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