| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- {
- "name": "mongoose",
- "description": "Mongoose MongoDB ODM",
- "version": "9.1.1",
- "author": "Guillermo Rauch <guillermo@learnboost.com>",
- "keywords": [
- "mongodb",
- "document",
- "model",
- "schema",
- "database",
- "odm",
- "data",
- "datastore",
- "query",
- "nosql",
- "orm",
- "db"
- ],
- "type": "commonjs",
- "license": "MIT",
- "dependencies": {
- "kareem": "3.0.0",
- "mongodb": "~7.0",
- "mpath": "0.9.0",
- "mquery": "6.0.0",
- "ms": "2.1.3",
- "sift": "17.1.3"
- },
- "devDependencies": {
- "@ark/attest": "0.55.0",
- "@mongodb-js/mongodb-downloader": "^1.0.0",
- "acquit": "1.4.0",
- "acquit-ignore": "0.2.1",
- "acquit-require": "0.1.1",
- "ajv": "8.17.1",
- "broken-link-checker": "^0.7.8",
- "cheerio": "1.1.2",
- "dox": "1.0.0",
- "eslint": "9.39.1",
- "eslint-plugin-markdown": "^5.1.0",
- "eslint-plugin-mocha-no-only": "1.2.0",
- "express": "^4.19.2",
- "fs-extra": "~11.3.0",
- "highlight.js": "11.11.1",
- "lodash.isequal": "4.5.0",
- "lodash.isequalwith": "4.4.0",
- "markdownlint-cli2": "^0.19.1",
- "marked": "15.x",
- "mkdirp": "^3.0.1",
- "mocha": "11.7.5",
- "moment": "2.30.1",
- "mongodb-memory-server": "11.0.0",
- "mongodb-runner": "^6.0.0",
- "mongodb-client-encryption": "~7.0",
- "ncp": "^2.0.0",
- "nyc": "15.1.0",
- "pug": "3.0.3",
- "sinon": "21.0.0",
- "tsd": "0.33.0",
- "typescript": "5.9.3",
- "typescript-eslint": "^8.31.1",
- "uuid": "11.1.0"
- },
- "directories": {
- "lib": "./lib/mongoose"
- },
- "scripts": {
- "docs:clean": "npm run docs:clean:stable",
- "docs:clean:stable": "rimraf index.html && rimraf -rf ./docs/*.html && rimraf -rf ./docs/api && rimraf -rf ./docs/tutorials/*.html && rimraf -rf ./docs/typescript/*.html && rimraf -rf ./docs/*.html && rimraf -rf ./docs/source/_docs && rimraf -rf ./tmp",
- "docs:clean:5x": "rimraf index.html && rimraf -rf ./docs/5.x && rimraf -rf ./docs/source/_docs && rimraf -rf ./tmp",
- "docs:clean:6x": "rimraf index.html && rimraf -rf ./docs/6.x && rimraf -rf ./docs/source/_docs && rimraf -rf ./tmp",
- "docs:copy:tmp": "mkdirp ./tmp/docs/css && mkdirp ./tmp/docs/js && mkdirp ./tmp/docs/images && mkdirp ./tmp/docs/tutorials && mkdirp ./tmp/docs/typescript && mkdirp ./tmp/docs/api && ncp ./docs/css ./tmp/docs/css --filter=.css$ && ncp ./docs/js ./tmp/docs/js --filter=.js$ && ncp ./docs/images ./tmp/docs/images && ncp ./docs/tutorials ./tmp/docs/tutorials && ncp ./docs/typescript ./tmp/docs/typescript && ncp ./docs/api ./tmp/docs/api && cp index.html ./tmp && cp docs/*.html ./tmp/docs/",
- "docs:copy:tmp:5x": "rimraf ./docs/5.x && ncp ./tmp ./docs/5.x",
- "docs:copy:tmp:6x": "rimraf ./docs/6.x && ncp ./tmp ./docs/6.x",
- "docs:generate": "node ./scripts/website.js",
- "docs:generate:sponsorData": "node ./scripts/loadSponsorData.js",
- "docs:test": "npm run docs:generate",
- "docs:view": "node ./scripts/static.js",
- "docs:prepare:publish:stable": "git checkout gh-pages && git merge master && npm run docs:generate",
- "docs:prepare:publish:5x": "git checkout 5.x && git merge 5.x && npm run docs:clean:stable && npm run docs:generate && npm run docs:copy:tmp && git checkout gh-pages && npm run docs:copy:tmp:5x",
- "docs:prepare:publish:6x": "git checkout 6.x && git merge 6.x && npm run docs:clean:stable && env DOCS_DEPLOY=true npm run docs:generate && mv ./docs/6.x ./tmp && git checkout gh-pages && npm run docs:copy:tmp:6x",
- "docs:prepare:publish:7x": "env DOCS_DEPLOY=true npm run docs:generate && git checkout gh-pages && rimraf ./docs/7.x && mv ./tmp ./docs/7.x",
- "docs:prepare:publish:8x": "env DOCS_DEPLOY=true npm run docs:generate && git checkout gh-pages && rimraf ./docs/8.x && mv ./tmp ./docs/8.x",
- "docs:check-links": "blc http://127.0.0.1:8089 -ro",
- "lint": "eslint .",
- "lint-js": "eslint . --ext .js --ext .cjs",
- "lint-ts": "eslint . --ext .ts",
- "lint-md": "markdownlint-cli2 \"**/*.md\" \"#node_modules\" \"#benchmarks\"",
- "release": "git pull && git push origin master --tags && npm publish",
- "release-5x": "git pull origin 5.x && git push origin 5.x && git push origin 5.x --tags && npm publish --tag 5x",
- "release-6x": "git pull origin 6.x && git push origin 6.x && git push origin 6.x --tags && npm publish --tag 6x",
- "mongo": "node ./tools/repl.js",
- "publish-7x": "npm publish --tag 7x",
- "create-separate-require-instance": "rm -rf ./node_modules/mongoose-separate-require-instance && node ./scripts/create-tarball && tar -xzf mongoose.tgz -C ./node_modules && mv ./node_modules/package ./node_modules/mongoose-separate-require-instance",
- "test": "mocha --exit ./test/*.test.js",
- "test:ci": "npm run test -- --reporter min",
- "test-deno": "deno run --allow-env --allow-read --allow-net --allow-run --allow-sys --allow-write ./test/deno.mjs",
- "test-deno:ci": "npm run test-deno -- --reporter min",
- "test-rs": "START_REPLICA_SET=1 mocha --timeout 30000 --exit ./test/*.test.js",
- "test-rs:ci": "npm run test-rs -- --reporter min",
- "test-tsd": "node ./test/types/check-types-filename && tsd --full",
- "setup-test-encryption": "node scripts/setup-encryption-tests.js",
- "test-encryption": "mocha --exit ./test/encryption/*.test.js",
- "test-encryption:ci": "npm run test-encryption -- --reporter min",
- "tdd": "mocha --watch --inspect --recursive ./test/*.test.js --watch-files lib/**/*.js test/**/*.js",
- "test-coverage": "nyc --reporter=html --reporter=text npm test",
- "test-coverage:ci": "nyc --reporter=html --reporter=text npm run test:ci",
- "ts-benchmark": "cd ./benchmarks/typescript/simple && npm install && npm run benchmark | node ../../../scripts/tsc-diagnostics-check",
- "ts-benchmark:local": "node ./scripts/create-tarball && cd ./benchmarks/typescript/simple && rm -rf ./node_modules && npm install && npm run benchmark | node ../../../scripts/tsc-diagnostics-check",
- "attest-benchmark": "node ./benchmarks/typescript/infer.bench.mts"
- },
- "main": "./index.js",
- "types": "./types/index.d.ts",
- "engines": {
- "node": ">=20.19.0"
- },
- "bugs": {
- "url": "https://github.com/Automattic/mongoose/issues/new"
- },
- "repository": {
- "type": "git",
- "url": "git://github.com/Automattic/mongoose.git"
- },
- "homepage": "https://mongoosejs.com",
- "config": {
- "mongodbMemoryServer": {
- "disablePostinstall": true
- }
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/mongoose"
- },
- "tsd": {
- "directory": "test/types",
- "compilerOptions": {
- "esModuleInterop": false,
- "strict": true,
- "allowSyntheticDefaultImports": true,
- "strictPropertyInitialization": false,
- "noImplicitAny": false,
- "strictNullChecks": true,
- "module": "commonjs",
- "target": "ES2022"
- }
- }
- }
|