MOOver.js/node_modules/mongoose/package.json
2022-02-18 13:54:33 +01:00

123 lines
3 KiB
JSON

{
"name": "mongoose",
"description": "Mongoose MongoDB ODM",
"version": "6.2.1",
"author": "Guillermo Rauch <guillermo@learnboost.com>",
"keywords": [
"mongodb",
"document",
"model",
"schema",
"database",
"odm",
"data",
"datastore",
"query",
"nosql",
"orm",
"db"
],
"license": "MIT",
"dependencies": {
"bson": "^4.2.2",
"kareem": "2.3.3",
"mongodb": "4.3.1",
"mpath": "0.8.4",
"mquery": "4.0.2",
"ms": "2.1.2",
"sift": "13.5.2"
},
"devDependencies": {
"@babel/core": "7.10.5",
"@babel/preset-env": "7.10.4",
"@typescript-eslint/eslint-plugin": "5.8.0",
"@typescript-eslint/parser": "5.8.0",
"acquit": "1.x",
"acquit-ignore": "0.1.x",
"acquit-require": "0.1.x",
"babel-loader": "8.1.0",
"benchmark": "2.1.4",
"bluebird": "3.7.2",
"cheerio": "1.0.0-rc.5",
"dox": "0.3.1",
"eslint": "8.5.0",
"eslint-plugin-mocha-no-only": "1.1.0",
"highlight.js": "9.18.3",
"js-yaml": "4.1.0",
"lodash.isequal": "4.5.0",
"lodash.isequalwith": "4.4.0",
"marked": "2.1.3",
"mkdirp": "0.5.5",
"mocha": "9.2.0",
"moment": "2.x",
"mongodb-memory-server": "^8.2.0",
"nyc": "^15.1.0",
"pug": "3.0.2",
"q": "1.5.1",
"rimraf": "2.6.3",
"serve-handler": "6.1.3",
"tsd": "0.19.1",
"typescript": "4.5.3",
"uuid": "8.3.2",
"webpack": "4.44.1"
},
"directories": {
"lib": "./lib/mongoose"
},
"scripts": {
"lint": "eslint .",
"build-browser": "node build-browser.js",
"prepublishOnly": "npm run build-browser",
"release": "git pull && git push origin master --tags && npm publish",
"release-legacy": "git pull origin 5.x && git push origin 5.x --tags && npm publish --tag legacy",
"mongo": "node ./tools/repl.js",
"test": "mocha --exit ./test/*.test.js",
"test-tsd": "tsd",
"sym-link-mongoose": "npm link && npm link mongoose",
"tdd": "mocha ./test/*.test.js ./test/typescript/main.test.js --inspect --watch --recursive --watch-files ./**/*.js",
"test-coverage": "nyc --reporter=html --reporter=text npm test"
},
"main": "./index.js",
"types": "./types/index.d.ts",
"engines": {
"node": ">=12.0.0"
},
"bugs": {
"url": "https://github.com/Automattic/mongoose/issues/new"
},
"repository": {
"type": "git",
"url": "git://github.com/Automattic/mongoose.git"
},
"homepage": "https://mongoosejs.com",
"browser": "./dist/browser.umd.js",
"mocha": {
"extension": [
"test.js"
],
"watch-files": [
"test/**/*.js"
]
},
"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,
"module": "commonjs",
"target": "ES2017"
}
}
}