forked from Automattic/mongoose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 1.86 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
{
"name": "mongoose",
"description": "Mongoose MongoDB ODM",
"version": "5.0.0-rc1",
"author": "Guillermo Rauch <[email protected]>",
"keywords": [
"mongodb",
"document",
"model",
"schema",
"database",
"odm",
"data",
"datastore",
"query",
"nosql",
"orm",
"db"
],
"license": "MIT",
"dependencies": {
"async": "2.1.4",
"bson": "~1.0.4",
"kareem": "2.0.0-rc5",
"lodash.get": "4.4.2",
"mongodb": "3.0.1",
"mongoose-legacy-pluralize": "1.0.1",
"mpath": "0.3.0",
"mquery": "3.0.0-rc0",
"ms": "2.0.0",
"regexp-clone": "0.0.1",
"sliced": "1.0.1"
},
"devDependencies": {
"acquit": "0.4.1",
"acquit-ignore": "0.0.3",
"benchmark": "2.1.2",
"bluebird": "3.5.0",
"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.16.6",
"markdown": "0.5.0",
"marked": "0.3.9",
"mocha": "4.1.0",
"mongoose-long": "0.1.1",
"mongodb-topology-manager": "1.0.11",
"node-static": "0.7.7",
"nsp": "~2.8.1",
"power-assert": "1.4.1",
"q": "1.5.1",
"tbd": "0.6.4",
"uuid": "2.0.3",
"uuid-parse": "1.0.0",
"validator": "5.4.0"
},
"directories": {
"lib": "./lib/mongoose"
},
"scripts": {
"fix-lint": "eslint . --fix",
"lint": "eslint . --quiet",
"nsp": "nsp check",
"test": "mocha --exit test/*.test.js test/**/*.test.js",
"test-cov": "istanbul cover --report text --report html _mocha test/*.test.js"
},
"main": "./index.js",
"engines": {
"node": ">=4.0.0"
},
"bugs": {
"url": "https://github.com/Automattic/mongoose/issues/new"
},
"repository": {
"type": "git",
"url": "git://github.com/Automattic/mongoose.git"
},
"homepage": "http://mongoosejs.com",
"browser": "lib/browser.js"
}