Ohm-Management - Projektarbeit B-ME
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 4.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. {
  2. "_from": "mongoose@^5.4.10",
  3. "_id": "mongoose@5.5.8",
  4. "_inBundle": false,
  5. "_integrity": "sha512-BcClXFUAl0L9T57LEztGv+dzHfd8t29cqd3X9NSRHfjHOmj1mduJA3pKSunnb7vah7VvIBCHzEocJtw4Q5WGFA==",
  6. "_location": "/mongoose",
  7. "_phantomChildren": {
  8. "require_optional": "1.0.1",
  9. "safe-buffer": "5.1.2",
  10. "saslprep": "1.0.2"
  11. },
  12. "_requested": {
  13. "type": "range",
  14. "registry": true,
  15. "raw": "mongoose@^5.4.10",
  16. "name": "mongoose",
  17. "escapedName": "mongoose",
  18. "rawSpec": "^5.4.10",
  19. "saveSpec": null,
  20. "fetchSpec": "^5.4.10"
  21. },
  22. "_requiredBy": [
  23. "#USER",
  24. "/"
  25. ],
  26. "_resolved": "https://registry.npmjs.org/mongoose/-/mongoose-5.5.8.tgz",
  27. "_shasum": "86128937c38c038680741041e846317a43c065cd",
  28. "_spec": "mongoose@^5.4.10",
  29. "_where": "/home/erik/Documents/workspace_brackets/a1_BME_Project_Ohm/om",
  30. "author": {
  31. "name": "Guillermo Rauch",
  32. "email": "guillermo@learnboost.com"
  33. },
  34. "browser": "./browser.js",
  35. "bugs": {
  36. "url": "https://github.com/Automattic/mongoose/issues/new"
  37. },
  38. "bundleDependencies": false,
  39. "dependencies": {
  40. "async": "2.6.2",
  41. "bson": "~1.1.1",
  42. "kareem": "2.3.0",
  43. "mongodb": "3.2.4",
  44. "mongodb-core": "3.2.4",
  45. "mongoose-legacy-pluralize": "1.0.2",
  46. "mpath": "0.6.0",
  47. "mquery": "3.2.0",
  48. "ms": "2.1.1",
  49. "regexp-clone": "0.0.1",
  50. "safe-buffer": "5.1.2",
  51. "sift": "7.0.1",
  52. "sliced": "1.0.1"
  53. },
  54. "deprecated": false,
  55. "description": "Mongoose MongoDB ODM",
  56. "devDependencies": {
  57. "acorn": "5.7.3",
  58. "acquit": "1.x",
  59. "acquit-ignore": "0.1.x",
  60. "acquit-require": "0.1.x",
  61. "babel-loader": "7.1.4",
  62. "babel-preset-es2015": "6.24.1",
  63. "benchmark": "2.1.2",
  64. "bluebird": "3.5.0",
  65. "chalk": "2.4.1",
  66. "cheerio": "1.0.0-rc.2",
  67. "co": "4.6.0",
  68. "dox": "0.3.1",
  69. "eslint": "5.16.0",
  70. "highlight.js": "9.1.0",
  71. "jade": "1.11.0",
  72. "lodash": "4.17.11",
  73. "markdown": "0.5.0",
  74. "marked": "0.3.9",
  75. "mocha": "5.x",
  76. "moment": "2.x",
  77. "mongodb-topology-manager": "1.0.11",
  78. "mongoose-long": "0.2.1",
  79. "node-static": "0.7.10",
  80. "nyc": "11.8.0",
  81. "object-sizeof": "1.3.0",
  82. "promise-debug": "0.1.1",
  83. "q": "1.5.1",
  84. "semver": "5.5.0",
  85. "uuid": "2.0.3",
  86. "uuid-parse": "1.0.0",
  87. "validator": "10.8.0",
  88. "webpack": "4.16.4"
  89. },
  90. "directories": {
  91. "lib": "./lib/mongoose"
  92. },
  93. "engines": {
  94. "node": ">=4.0.0"
  95. },
  96. "eslintConfig": {
  97. "extends": [
  98. "eslint:recommended"
  99. ],
  100. "parserOptions": {
  101. "ecmaVersion": 2015
  102. },
  103. "env": {
  104. "node": true,
  105. "es6": true
  106. },
  107. "rules": {
  108. "comma-style": "error",
  109. "consistent-this": [
  110. "error",
  111. "_this"
  112. ],
  113. "indent": [
  114. "error",
  115. 2,
  116. {
  117. "SwitchCase": 1,
  118. "VariableDeclarator": 2
  119. }
  120. ],
  121. "keyword-spacing": "error",
  122. "no-buffer-constructor": "warn",
  123. "no-console": "off",
  124. "no-multi-spaces": "error",
  125. "func-call-spacing": "error",
  126. "no-trailing-spaces": "error",
  127. "quotes": [
  128. "error",
  129. "single"
  130. ],
  131. "semi": "error",
  132. "space-before-blocks": "error",
  133. "space-before-function-paren": [
  134. "error",
  135. "never"
  136. ],
  137. "space-infix-ops": "error",
  138. "space-unary-ops": "error",
  139. "no-var": "warn",
  140. "prefer-const": "warn",
  141. "strict": [
  142. "error",
  143. "global"
  144. ],
  145. "no-restricted-globals": [
  146. "error",
  147. {
  148. "name": "context",
  149. "message": "Don't use Mocha's global context"
  150. }
  151. ]
  152. }
  153. },
  154. "homepage": "http://mongoosejs.com",
  155. "keywords": [
  156. "mongodb",
  157. "document",
  158. "model",
  159. "schema",
  160. "database",
  161. "odm",
  162. "data",
  163. "datastore",
  164. "query",
  165. "nosql",
  166. "orm",
  167. "db"
  168. ],
  169. "license": "MIT",
  170. "main": "./index.js",
  171. "name": "mongoose",
  172. "repository": {
  173. "type": "git",
  174. "url": "git://github.com/Automattic/mongoose.git"
  175. },
  176. "scripts": {
  177. "lint": "eslint .",
  178. "release": "git pull && git push origin master --tags && npm publish",
  179. "release-legacy": "git pull origin 4.x && git push origin 4.x --tags && npm publish --tag legacy",
  180. "test": "mocha --exit test/*.test.js test/**/*.test.js",
  181. "test-cov": "nyc --reporter=html --reporter=text npm test"
  182. },
  183. "version": "5.5.8"
  184. }