123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256 |
- {
- "_from": "mongoose@^5.9.15",
- "_id": "mongoose@5.9.16",
- "_inBundle": false,
- "_integrity": "sha512-b4HNndgh+dacoLE/2SBF3iBBofeaKL+aGVZH7jnPRc2RXRCplX4sfH5sgoz03ryCSXJ+RQNIfqKAADt/ZBzPDA==",
- "_location": "/mongoose",
- "_phantomChildren": {},
- "_requested": {
- "type": "range",
- "registry": true,
- "raw": "mongoose@^5.9.15",
- "name": "mongoose",
- "escapedName": "mongoose",
- "rawSpec": "^5.9.15",
- "saveSpec": null,
- "fetchSpec": "^5.9.15"
- },
- "_requiredBy": [
- "#USER",
- "/"
- ],
- "_resolved": "https://registry.npmjs.org/mongoose/-/mongoose-5.9.16.tgz",
- "_shasum": "6aa688a6b7b444d10f60ac539b92556cae20475e",
- "_spec": "mongoose@^5.9.15",
- "_where": "D:\\a-level\\javascript\\homework\\chat-server",
- "author": {
- "name": "Guillermo Rauch",
- "email": "guillermo@learnboost.com"
- },
- "browser": "./dist/browser.umd.js",
- "bugs": {
- "url": "https://github.com/Automattic/mongoose/issues/new"
- },
- "bundleDependencies": false,
- "dependencies": {
- "bson": "^1.1.4",
- "kareem": "2.3.1",
- "mongodb": "3.5.7",
- "mongoose-legacy-pluralize": "1.0.2",
- "mpath": "0.7.0",
- "mquery": "3.2.2",
- "ms": "2.1.2",
- "regexp-clone": "1.0.0",
- "safe-buffer": "5.1.2",
- "sift": "7.0.1",
- "sliced": "1.0.1"
- },
- "deprecated": false,
- "description": "Mongoose MongoDB ODM",
- "devDependencies": {
- "acquit": "1.x",
- "acquit-ignore": "0.1.x",
- "acquit-require": "0.1.x",
- "async": "2.6.2",
- "babel-loader": "7.1.4",
- "babel-preset-es2015": "6.24.1",
- "benchmark": "2.1.4",
- "bluebird": "3.5.5",
- "chalk": "2.4.2",
- "cheerio": "1.0.0-rc.2",
- "co": "4.6.0",
- "dox": "0.3.1",
- "eslint": "7.1.0",
- "eslint-plugin-mocha-no-only": "1.1.0",
- "highlight.js": "9.1.0",
- "lodash.isequal": "4.5.0",
- "lodash.isequalwith": "4.4.0",
- "marked": "0.6.2",
- "mocha": "5.x",
- "moment": "2.x",
- "mongodb-topology-manager": "1.0.11",
- "mongoose-long": "0.2.1",
- "node-static": "0.7.11",
- "object-sizeof": "1.3.0",
- "pug": "2.0.3",
- "q": "1.5.1",
- "semver": "5.5.0",
- "uuid": "2.0.3",
- "uuid-parse": "1.0.0",
- "validator": "10.8.0",
- "webpack": "4.16.4"
- },
- "directories": {
- "lib": "./lib/mongoose"
- },
- "engines": {
- "node": ">=4.0.0"
- },
- "eslintConfig": {
- "extends": [
- "eslint:recommended"
- ],
- "plugins": [
- "mocha-no-only"
- ],
- "parserOptions": {
- "ecmaVersion": 2015
- },
- "env": {
- "node": true,
- "es6": true
- },
- "rules": {
- "comma-style": "error",
- "indent": [
- "error",
- 2,
- {
- "SwitchCase": 1,
- "VariableDeclarator": 2
- }
- ],
- "keyword-spacing": "error",
- "no-whitespace-before-property": "error",
- "no-buffer-constructor": "warn",
- "no-console": "off",
- "no-multi-spaces": "error",
- "no-constant-condition": "off",
- "func-call-spacing": "error",
- "no-trailing-spaces": "error",
- "no-undef": "error",
- "no-unneeded-ternary": "error",
- "no-const-assign": "error",
- "no-useless-rename": "error",
- "no-dupe-keys": "error",
- "space-in-parens": [
- "error",
- "never"
- ],
- "spaced-comment": [
- "error",
- "always",
- {
- "block": {
- "markers": [
- "!"
- ],
- "balanced": true
- }
- }
- ],
- "key-spacing": [
- "error",
- {
- "beforeColon": false,
- "afterColon": true
- }
- ],
- "comma-spacing": [
- "error",
- {
- "before": false,
- "after": true
- }
- ],
- "array-bracket-spacing": 1,
- "arrow-spacing": [
- "error",
- {
- "before": true,
- "after": true
- }
- ],
- "object-curly-spacing": [
- "error",
- "always"
- ],
- "comma-dangle": [
- "error",
- "never"
- ],
- "no-unreachable": "error",
- "quotes": [
- "error",
- "single"
- ],
- "quote-props": [
- "error",
- "as-needed"
- ],
- "semi": "error",
- "no-extra-semi": "error",
- "semi-spacing": "error",
- "no-spaced-func": "error",
- "no-throw-literal": "error",
- "space-before-blocks": "error",
- "space-before-function-paren": [
- "error",
- "never"
- ],
- "space-infix-ops": "error",
- "space-unary-ops": "error",
- "no-var": "warn",
- "prefer-const": "warn",
- "strict": [
- "error",
- "global"
- ],
- "no-restricted-globals": [
- "error",
- {
- "name": "context",
- "message": "Don't use Mocha's global context"
- }
- ],
- "no-prototype-builtins": "off",
- "mocha-no-only/mocha-no-only": [
- "error"
- ]
- }
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/mongoose"
- },
- "homepage": "https://mongoosejs.com",
- "keywords": [
- "mongodb",
- "document",
- "model",
- "schema",
- "database",
- "odm",
- "data",
- "datastore",
- "query",
- "nosql",
- "orm",
- "db"
- ],
- "license": "MIT",
- "main": "./index.js",
- "mocha": {
- "extension": [
- "test.js"
- ],
- "watch-files": [
- "test/**/*.js"
- ]
- },
- "name": "mongoose",
- "repository": {
- "type": "git",
- "url": "git://github.com/Automattic/mongoose.git"
- },
- "scripts": {
- "build-browser": "node build-browser.js",
- "lint": "eslint .",
- "prepublishOnly": "npm run build-browser",
- "release": "git pull && git push origin master --tags && npm publish",
- "release-legacy": "git pull origin 4.x && git push origin 4.x --tags && npm publish --tag legacy",
- "test": "mocha --exit",
- "test-cov": "nyc --reporter=html --reporter=text npm test"
- },
- "version": "5.9.16"
- }
|