forked from Automattic/mongoose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.05 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
{
"name": "mongoose",
"description": "Mongoose MongoDB ODM",
"version": "4.6.6-pre",
"author": "Guillermo Rauch <[email protected]>",
"keywords": [
"mongodb",
"document",
"model",
"schema",
"database",
"odm",
"data",
"datastore",
"query",
"nosql",
"orm",
"db"
],
"license": "MIT",
"dependencies": {
"async": "2.0.1",
"bson": "~0.5.4",
"hooks-fixed": "1.2.0",
"kareem": "1.1.3",
"mongodb": "2.2.11",
"mpath": "0.2.1",
"mpromise": "0.5.5",
"mquery": "2.0.0",
"ms": "0.7.1",
"muri": "1.1.1",
"regexp-clone": "0.0.1",
"sliced": "1.0.1"
},
"devDependencies": {
"acquit": "0.4.1",
"acquit-ignore": "0.0.3",
"bluebird": "3.4.1",
"co": "4.6.0",
"dox": "0.3.1",
"eslint": "2.4.0",
"highlight.js": "7.0.1",
"istanbul": "0.4.4",
"jade": "0.26.3",
"lodash": "4.14.1",
"markdown": "0.3.1",
"marked": "0.3.6",
"mocha": "3.0.2",
"mongoose-long": "0.1.1",
"node-static": "0.7.7",
"power-assert": "1.2.0",
"q": "1.4.1",
"tbd": "0.6.4",
"uglify-js": "2.7.0",
"validator": "5.4.0"
},
"browserDependencies": {
"browserify": "4.1.10",
"chai": "3.5.0",
"karma": "0.12.16",
"karma-chai": "0.1.0",
"karma-mocha": "0.1.4",
"karma-chrome-launcher": "0.1.4",
"karma-sauce-launcher": "0.2.8"
},
"directories": {
"lib": "./lib/mongoose"
},
"scripts": {
"fix-lint": "eslint . --fix",
"install-browser": "npm install `node format_deps.js`",
"test": "mocha test/*.test.js test/**/*.test.js",
"posttest": "eslint . --quiet",
"test-cov": "istanbul cover --report text --report html _mocha test/*.test.js"
},
"main": "./index.js",
"engines": {
"node": ">=0.6.19"
},
"bugs": {
"url": "https://github.com/Automattic/mongoose/issues/new",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/Automattic/mongoose.git"
},
"homepage": "http://mongoosejs.com",
"browser": "lib/browser.js"
}