forked from Automattic/mongoose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
123 lines (123 loc) · 3.04 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "mongoose",
"description": "Mongoose MongoDB ODM",
"version": "6.2.1",
"author": "Guillermo Rauch <[email protected]>",
"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"
}
}
}