mongoose 4.13.8 → 4.13.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/History.md +6 -0
- package/lib/aggregate.js +1 -1
- package/lib/document.js +3 -1
- package/package.json +3 -3
- package/release-items.md +8 -8
- package/.npmignore +0 -19
- package/list.out +0 -703
package/History.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
4.13.9 / 2017-01-07
|
|
2
|
+
===================
|
|
3
|
+
* chore: update marked (dev dependency) re: security vulnerability #5951 [ChristianMurphy](https://github.com/ChristianMurphy)
|
|
4
|
+
* fix: upgrade mongodb -> 2.2.34 for ipv6 and autoReconnect fixes #5794 #5760
|
|
5
|
+
* docs: use useMongooseAggCursor for aggregate docs #2955
|
|
6
|
+
|
|
1
7
|
4.13.8 / 2017-12-27
|
|
2
8
|
===================
|
|
3
9
|
* docs(guide): use more up-to-date syntax for autoIndex example #5933
|
package/lib/aggregate.js
CHANGED
|
@@ -574,7 +574,7 @@ Aggregate.prototype.option = function(value) {
|
|
|
574
574
|
*
|
|
575
575
|
* ####Example:
|
|
576
576
|
*
|
|
577
|
-
* var cursor = Model.aggregate(..).cursor({ batchSize: 1000 }).exec();
|
|
577
|
+
* var cursor = Model.aggregate(..).cursor({ batchSize: 1000, useMongooseAggCursor: true }).exec();
|
|
578
578
|
* cursor.each(function(error, doc) {
|
|
579
579
|
* // use doc
|
|
580
580
|
* });
|
package/lib/document.js
CHANGED
|
@@ -487,10 +487,11 @@ Document.prototype.update = function update() {
|
|
|
487
487
|
* @param {Any} val the value to set
|
|
488
488
|
* @param {Schema|String|Number|Buffer|*} [type] optionally specify a type for "on-the-fly" attributes
|
|
489
489
|
* @param {Object} [options] optionally specify options that modify the behavior of the set
|
|
490
|
+
* @method $set
|
|
490
491
|
* @api public
|
|
491
492
|
*/
|
|
492
493
|
|
|
493
|
-
Document.prototype.$set = function(path, val, type, options) {
|
|
494
|
+
Document.prototype.$set = function $set(path, val, type, options) {
|
|
494
495
|
if (type && utils.getFunctionName(type.constructor) === 'Object') {
|
|
495
496
|
options = type;
|
|
496
497
|
type = undefined;
|
|
@@ -1178,6 +1179,7 @@ Document.prototype.$isDefault = function(path) {
|
|
|
1178
1179
|
*
|
|
1179
1180
|
* @param {Boolean} [val] optional, overrides whether mongoose thinks the doc is deleted
|
|
1180
1181
|
* @return {Boolean} whether mongoose thinks this doc is deleted.
|
|
1182
|
+
* @method $isDeleted
|
|
1181
1183
|
* @api public
|
|
1182
1184
|
*/
|
|
1183
1185
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mongoose",
|
|
3
3
|
"description": "Mongoose MongoDB ODM",
|
|
4
|
-
"version": "4.13.
|
|
4
|
+
"version": "4.13.9",
|
|
5
5
|
"author": "Guillermo Rauch <guillermo@learnboost.com>",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"mongodb",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"hooks-fixed": "2.0.2",
|
|
25
25
|
"kareem": "1.5.0",
|
|
26
26
|
"lodash.get": "4.4.2",
|
|
27
|
-
"mongodb": "2.2.
|
|
27
|
+
"mongodb": "2.2.34",
|
|
28
28
|
"mpath": "0.3.0",
|
|
29
29
|
"mpromise": "0.5.5",
|
|
30
30
|
"mquery": "2.3.3",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"jade": "0.26.3",
|
|
47
47
|
"lodash": "4.16.6",
|
|
48
48
|
"markdown": "0.5.0",
|
|
49
|
-
"marked": "0.3.
|
|
49
|
+
"marked": "0.3.9",
|
|
50
50
|
"mocha": "3.2.0",
|
|
51
51
|
"mongoose-long": "0.1.1",
|
|
52
52
|
"mongodb-topology-manager": "1.0.11",
|
package/release-items.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
## mongoose release procedure
|
|
2
2
|
|
|
3
3
|
1. tests must pass
|
|
4
|
-
2. update package.json version
|
|
5
|
-
3. update History.md using `git changelog` or similar.
|
|
6
|
-
4. git commit -m 'release x.x.x'
|
|
4
|
+
2. update `package.json` and `package-lock.json` version
|
|
5
|
+
3. update History.md using `git changelog` or similar. Add #<TICKET_NUMBER> as well as a link to the github user who fixed it if applicable.
|
|
6
|
+
4. git commit -a -m 'release x.x.x'
|
|
7
7
|
5. git tag x.x.x
|
|
8
8
|
6. git push origin BRANCH --tags && npm publish
|
|
9
9
|
7. update mongoosejs.com (see "updating the website" below)
|
|
@@ -14,16 +14,16 @@
|
|
|
14
14
|
|
|
15
15
|
## updating the website
|
|
16
16
|
|
|
17
|
-
For
|
|
17
|
+
For 5.x
|
|
18
18
|
|
|
19
19
|
0. Change to the master branch
|
|
20
20
|
1. execute `make docs` (when this process completes you'll be on the gh-pages branch)
|
|
21
|
-
2. `git commit -a -m 'chore: website
|
|
21
|
+
2. `git commit -a -m 'chore: website 5.x.x'`
|
|
22
22
|
3. `git push origin gh-pages`
|
|
23
23
|
|
|
24
|
-
For
|
|
24
|
+
For 4.x
|
|
25
25
|
|
|
26
|
-
0. Change to the
|
|
26
|
+
0. Change to the 4.x branch
|
|
27
27
|
1. execute `make docs_legacy` (when this process completes you'll be on the gh-pages branch)
|
|
28
|
-
2. `git commit -a -m 'website
|
|
28
|
+
2. `git commit -a -m 'chore: website 4.x.x'`
|
|
29
29
|
3. `git push origin gh-pages`
|
package/.npmignore
DELETED
package/list.out
DELETED
|
@@ -1,703 +0,0 @@
|
|
|
1
|
-
mongoose@4.13.8-pre /home/val/Workspace/MongoDB/mongoose
|
|
2
|
-
├─┬ acquit@0.4.1
|
|
3
|
-
│ ├── commander@2.5.0
|
|
4
|
-
│ ├── UNMET DEPENDENCY esprima@https://github.com/ariya/esprima/archive/85fc2f4b6ad109a86d80d9821f52b5b38d0105c0.tar.gz
|
|
5
|
-
│ ├── marked@0.3.5
|
|
6
|
-
│ └── underscore@1.5.2
|
|
7
|
-
├── acquit-ignore@0.0.3
|
|
8
|
-
├─┬ async@2.1.4
|
|
9
|
-
│ └── lodash@4.17.4
|
|
10
|
-
├─┬ benchmark@2.1.2
|
|
11
|
-
│ ├── lodash@4.16.6 deduped
|
|
12
|
-
│ └── platform@1.3.4
|
|
13
|
-
├── bluebird@3.5.0
|
|
14
|
-
├── bson@1.0.4
|
|
15
|
-
├── co@4.6.0
|
|
16
|
-
├─┬ dox@0.3.1
|
|
17
|
-
│ ├── commander@0.6.1
|
|
18
|
-
│ └── github-flavored-markdown@1.0.1
|
|
19
|
-
├─┬ eslint@2.4.0
|
|
20
|
-
│ ├─┬ chalk@1.1.3
|
|
21
|
-
│ │ ├── ansi-styles@2.2.1
|
|
22
|
-
│ │ ├── escape-string-regexp@1.0.5 deduped
|
|
23
|
-
│ │ ├─┬ has-ansi@2.0.0
|
|
24
|
-
│ │ │ └── ansi-regex@2.1.1 deduped
|
|
25
|
-
│ │ ├─┬ strip-ansi@3.0.1
|
|
26
|
-
│ │ │ └── ansi-regex@2.1.1 deduped
|
|
27
|
-
│ │ └── supports-color@2.0.0
|
|
28
|
-
│ ├─┬ concat-stream@1.6.0
|
|
29
|
-
│ │ ├── inherits@2.0.3
|
|
30
|
-
│ │ ├── readable-stream@2.2.7 deduped
|
|
31
|
-
│ │ └── typedarray@0.0.6
|
|
32
|
-
│ ├─┬ debug@2.6.9
|
|
33
|
-
│ │ └── ms@2.0.0 deduped
|
|
34
|
-
│ ├─┬ doctrine@1.5.0
|
|
35
|
-
│ │ ├── esutils@2.0.2 deduped
|
|
36
|
-
│ │ └── isarray@1.0.0
|
|
37
|
-
│ ├─┬ es6-map@0.1.5
|
|
38
|
-
│ │ ├─┬ d@1.0.0
|
|
39
|
-
│ │ │ └── es5-ext@0.10.30 deduped
|
|
40
|
-
│ │ ├─┬ es5-ext@0.10.30
|
|
41
|
-
│ │ │ ├── es6-iterator@2.0.1 deduped
|
|
42
|
-
│ │ │ └── es6-symbol@3.1.1 deduped
|
|
43
|
-
│ │ ├─┬ es6-iterator@2.0.1
|
|
44
|
-
│ │ │ ├── d@1.0.0 deduped
|
|
45
|
-
│ │ │ ├── es5-ext@0.10.30 deduped
|
|
46
|
-
│ │ │ └── es6-symbol@3.1.1 deduped
|
|
47
|
-
│ │ ├─┬ es6-set@0.1.5
|
|
48
|
-
│ │ │ ├── d@1.0.0 deduped
|
|
49
|
-
│ │ │ ├── es5-ext@0.10.30 deduped
|
|
50
|
-
│ │ │ ├── es6-iterator@2.0.1 deduped
|
|
51
|
-
│ │ │ ├── es6-symbol@3.1.1 deduped
|
|
52
|
-
│ │ │ └── event-emitter@0.3.5 deduped
|
|
53
|
-
│ │ ├─┬ es6-symbol@3.1.1
|
|
54
|
-
│ │ │ ├── d@1.0.0 deduped
|
|
55
|
-
│ │ │ └── es5-ext@0.10.30 deduped
|
|
56
|
-
│ │ └─┬ event-emitter@0.3.5
|
|
57
|
-
│ │ ├── d@1.0.0 deduped
|
|
58
|
-
│ │ └── es5-ext@0.10.30 deduped
|
|
59
|
-
│ ├─┬ escope@3.6.0
|
|
60
|
-
│ │ ├── es6-map@0.1.5 deduped
|
|
61
|
-
│ │ ├─┬ es6-weak-map@2.0.2
|
|
62
|
-
│ │ │ ├── d@1.0.0 deduped
|
|
63
|
-
│ │ │ ├── es5-ext@0.10.30 deduped
|
|
64
|
-
│ │ │ ├── es6-iterator@2.0.1 deduped
|
|
65
|
-
│ │ │ └── es6-symbol@3.1.1 deduped
|
|
66
|
-
│ │ ├─┬ esrecurse@4.2.0
|
|
67
|
-
│ │ │ ├── estraverse@4.2.0 deduped
|
|
68
|
-
│ │ │ └── object-assign@4.1.1 deduped
|
|
69
|
-
│ │ └── estraverse@4.2.0 deduped
|
|
70
|
-
│ ├─┬ espree@3.5.1
|
|
71
|
-
│ │ ├── acorn@5.1.2
|
|
72
|
-
│ │ └─┬ acorn-jsx@3.0.1
|
|
73
|
-
│ │ └── acorn@3.3.0
|
|
74
|
-
│ ├── estraverse@4.2.0
|
|
75
|
-
│ ├── esutils@2.0.2
|
|
76
|
-
│ ├─┬ file-entry-cache@1.3.1
|
|
77
|
-
│ │ ├─┬ flat-cache@1.3.0
|
|
78
|
-
│ │ │ ├── circular-json@0.3.3
|
|
79
|
-
│ │ │ ├─┬ del@2.2.2
|
|
80
|
-
│ │ │ │ ├─┬ globby@5.0.0
|
|
81
|
-
│ │ │ │ │ ├─┬ array-union@1.0.2
|
|
82
|
-
│ │ │ │ │ │ └── array-uniq@1.0.3
|
|
83
|
-
│ │ │ │ │ ├── arrify@1.0.1
|
|
84
|
-
│ │ │ │ │ ├─┬ glob@7.1.2
|
|
85
|
-
│ │ │ │ │ │ ├── fs.realpath@1.0.0 deduped
|
|
86
|
-
│ │ │ │ │ │ ├── inflight@1.0.6 deduped
|
|
87
|
-
│ │ │ │ │ │ ├── inherits@2.0.3 deduped
|
|
88
|
-
│ │ │ │ │ │ ├── minimatch@3.0.4 deduped
|
|
89
|
-
│ │ │ │ │ │ ├── once@1.4.0 deduped
|
|
90
|
-
│ │ │ │ │ │ └── path-is-absolute@1.0.1 deduped
|
|
91
|
-
│ │ │ │ │ ├── object-assign@4.1.1 deduped
|
|
92
|
-
│ │ │ │ │ ├── pify@2.3.0 deduped
|
|
93
|
-
│ │ │ │ │ └── pinkie-promise@2.0.1 deduped
|
|
94
|
-
│ │ │ │ ├── is-path-cwd@1.0.0
|
|
95
|
-
│ │ │ │ ├─┬ is-path-in-cwd@1.0.0
|
|
96
|
-
│ │ │ │ │ └─┬ is-path-inside@1.0.0
|
|
97
|
-
│ │ │ │ │ └── path-is-inside@1.0.2 deduped
|
|
98
|
-
│ │ │ │ ├── object-assign@4.1.1 deduped
|
|
99
|
-
│ │ │ │ ├── pify@2.3.0
|
|
100
|
-
│ │ │ │ ├─┬ pinkie-promise@2.0.1
|
|
101
|
-
│ │ │ │ │ └── pinkie@2.0.4
|
|
102
|
-
│ │ │ │ └── rimraf@2.6.2 deduped
|
|
103
|
-
│ │ │ ├── graceful-fs@4.1.11
|
|
104
|
-
│ │ │ └─┬ write@0.2.1
|
|
105
|
-
│ │ │ └── mkdirp@0.5.1 deduped
|
|
106
|
-
│ │ └── object-assign@4.1.1
|
|
107
|
-
│ ├─┬ glob@6.0.4
|
|
108
|
-
│ │ ├─┬ inflight@1.0.6
|
|
109
|
-
│ │ │ ├── once@1.4.0 deduped
|
|
110
|
-
│ │ │ └── wrappy@1.0.2 deduped
|
|
111
|
-
│ │ ├── inherits@2.0.3 deduped
|
|
112
|
-
│ │ ├─┬ minimatch@3.0.4
|
|
113
|
-
│ │ │ └─┬ brace-expansion@1.1.8
|
|
114
|
-
│ │ │ ├── balanced-match@1.0.0
|
|
115
|
-
│ │ │ └── concat-map@0.0.1
|
|
116
|
-
│ │ ├── once@1.4.0 deduped
|
|
117
|
-
│ │ └── path-is-absolute@1.0.1 deduped
|
|
118
|
-
│ ├── globals@8.18.0
|
|
119
|
-
│ ├── ignore@2.2.19
|
|
120
|
-
│ ├─┬ inquirer@0.12.0
|
|
121
|
-
│ │ ├── ansi-escapes@1.4.0
|
|
122
|
-
│ │ ├── ansi-regex@2.1.1
|
|
123
|
-
│ │ ├── chalk@1.1.3 deduped
|
|
124
|
-
│ │ ├─┬ cli-cursor@1.0.2
|
|
125
|
-
│ │ │ └─┬ restore-cursor@1.0.1
|
|
126
|
-
│ │ │ ├── exit-hook@1.1.1
|
|
127
|
-
│ │ │ └── onetime@1.1.0
|
|
128
|
-
│ │ ├── cli-width@2.2.0
|
|
129
|
-
│ │ ├─┬ figures@1.7.0
|
|
130
|
-
│ │ │ ├── escape-string-regexp@1.0.5 deduped
|
|
131
|
-
│ │ │ └── object-assign@4.1.1 deduped
|
|
132
|
-
│ │ ├── lodash@4.16.6 deduped
|
|
133
|
-
│ │ ├─┬ readline2@1.0.1
|
|
134
|
-
│ │ │ ├── code-point-at@1.1.0
|
|
135
|
-
│ │ │ ├─┬ is-fullwidth-code-point@1.0.0
|
|
136
|
-
│ │ │ │ └── number-is-nan@1.0.1
|
|
137
|
-
│ │ │ └── mute-stream@0.0.5
|
|
138
|
-
│ │ ├─┬ run-async@0.1.0
|
|
139
|
-
│ │ │ └── once@1.4.0 deduped
|
|
140
|
-
│ │ ├── rx-lite@3.1.2
|
|
141
|
-
│ │ ├─┬ string-width@1.0.2
|
|
142
|
-
│ │ │ ├── code-point-at@1.1.0 deduped
|
|
143
|
-
│ │ │ ├── is-fullwidth-code-point@1.0.0 deduped
|
|
144
|
-
│ │ │ └── strip-ansi@3.0.1 deduped
|
|
145
|
-
│ │ ├── strip-ansi@3.0.1 deduped
|
|
146
|
-
│ │ └── through@2.3.8
|
|
147
|
-
│ ├─┬ is-my-json-valid@2.16.1
|
|
148
|
-
│ │ ├── generate-function@2.0.0
|
|
149
|
-
│ │ ├─┬ generate-object-property@1.2.0
|
|
150
|
-
│ │ │ └── is-property@1.0.2
|
|
151
|
-
│ │ ├── jsonpointer@4.0.1
|
|
152
|
-
│ │ └── xtend@4.0.1 deduped
|
|
153
|
-
│ ├─┬ is-resolvable@1.0.0
|
|
154
|
-
│ │ └── tryit@1.0.3
|
|
155
|
-
│ ├─┬ js-yaml@3.10.0
|
|
156
|
-
│ │ ├─┬ argparse@1.0.9
|
|
157
|
-
│ │ │ └── sprintf-js@1.0.3
|
|
158
|
-
│ │ └── esprima@4.0.0
|
|
159
|
-
│ ├─┬ json-stable-stringify@1.0.1
|
|
160
|
-
│ │ └── jsonify@0.0.0
|
|
161
|
-
│ ├── lodash@4.16.6 deduped
|
|
162
|
-
│ ├─┬ mkdirp@0.5.1
|
|
163
|
-
│ │ └── minimist@0.0.8
|
|
164
|
-
│ ├─┬ optionator@0.8.2
|
|
165
|
-
│ │ ├── deep-is@0.1.3
|
|
166
|
-
│ │ ├── fast-levenshtein@2.0.6
|
|
167
|
-
│ │ ├─┬ levn@0.3.0
|
|
168
|
-
│ │ │ ├── prelude-ls@1.1.2 deduped
|
|
169
|
-
│ │ │ └── type-check@0.3.2 deduped
|
|
170
|
-
│ │ ├── prelude-ls@1.1.2
|
|
171
|
-
│ │ ├─┬ type-check@0.3.2
|
|
172
|
-
│ │ │ └── prelude-ls@1.1.2 deduped
|
|
173
|
-
│ │ └── wordwrap@1.0.0 deduped
|
|
174
|
-
│ ├── path-is-absolute@1.0.1
|
|
175
|
-
│ ├── path-is-inside@1.0.2
|
|
176
|
-
│ ├── pluralize@1.2.1
|
|
177
|
-
│ ├── progress@1.1.8
|
|
178
|
-
│ ├─┬ require-uncached@1.0.3
|
|
179
|
-
│ │ ├─┬ caller-path@0.1.0
|
|
180
|
-
│ │ │ └── callsites@0.2.0
|
|
181
|
-
│ │ └── resolve-from@1.0.1
|
|
182
|
-
│ ├─┬ resolve@1.4.0
|
|
183
|
-
│ │ └── path-parse@1.0.5
|
|
184
|
-
│ ├── shelljs@0.5.3
|
|
185
|
-
│ ├── strip-json-comments@1.0.4
|
|
186
|
-
│ ├─┬ table@3.8.3
|
|
187
|
-
│ │ ├─┬ ajv@4.11.8
|
|
188
|
-
│ │ │ ├── co@4.6.0 deduped
|
|
189
|
-
│ │ │ └── json-stable-stringify@1.0.1 deduped
|
|
190
|
-
│ │ ├── ajv-keywords@1.5.1
|
|
191
|
-
│ │ ├── chalk@1.1.3 deduped
|
|
192
|
-
│ │ ├── lodash@4.16.6 deduped
|
|
193
|
-
│ │ ├── slice-ansi@0.0.4
|
|
194
|
-
│ │ └─┬ string-width@2.1.1
|
|
195
|
-
│ │ ├── is-fullwidth-code-point@2.0.0
|
|
196
|
-
│ │ └─┬ strip-ansi@4.0.0
|
|
197
|
-
│ │ └── ansi-regex@3.0.0
|
|
198
|
-
│ ├── text-table@0.2.0
|
|
199
|
-
│ └─┬ user-home@2.0.0
|
|
200
|
-
│ └── os-homedir@1.0.2
|
|
201
|
-
├── highlight.js@7.0.1
|
|
202
|
-
├── hooks-fixed@2.0.2
|
|
203
|
-
├─┬ istanbul@0.4.4
|
|
204
|
-
│ ├── abbrev@1.0.9
|
|
205
|
-
│ ├── async@1.5.2
|
|
206
|
-
│ ├─┬ escodegen@1.8.1
|
|
207
|
-
│ │ ├── esprima@2.7.3
|
|
208
|
-
│ │ ├── estraverse@1.9.3
|
|
209
|
-
│ │ ├── esutils@2.0.2 deduped
|
|
210
|
-
│ │ ├── optionator@0.8.2 deduped
|
|
211
|
-
│ │ └─┬ source-map@0.2.0
|
|
212
|
-
│ │ └── amdefine@1.0.1
|
|
213
|
-
│ ├── esprima@2.7.3
|
|
214
|
-
│ ├─┬ fileset@0.2.1
|
|
215
|
-
│ │ ├─┬ glob@5.0.15
|
|
216
|
-
│ │ │ ├── inflight@1.0.6 deduped
|
|
217
|
-
│ │ │ ├── inherits@2.0.3 deduped
|
|
218
|
-
│ │ │ ├── minimatch@2.0.10 deduped
|
|
219
|
-
│ │ │ ├── once@1.4.0 deduped
|
|
220
|
-
│ │ │ └── path-is-absolute@1.0.1 deduped
|
|
221
|
-
│ │ └─┬ minimatch@2.0.10
|
|
222
|
-
│ │ └── brace-expansion@1.1.8 deduped
|
|
223
|
-
│ ├─┬ handlebars@4.0.10
|
|
224
|
-
│ │ ├── async@1.5.2
|
|
225
|
-
│ │ ├── optimist@0.6.1 deduped
|
|
226
|
-
│ │ ├─┬ source-map@0.4.4
|
|
227
|
-
│ │ │ └── amdefine@1.0.1 deduped
|
|
228
|
-
│ │ └── uglify-js@2.7.0 deduped
|
|
229
|
-
│ ├── js-yaml@3.10.0 deduped
|
|
230
|
-
│ ├── mkdirp@0.5.1 deduped
|
|
231
|
-
│ ├─┬ nopt@3.0.6
|
|
232
|
-
│ │ └── abbrev@1.0.9 deduped
|
|
233
|
-
│ ├─┬ once@1.4.0
|
|
234
|
-
│ │ └── wrappy@1.0.2
|
|
235
|
-
│ ├── resolve@1.1.7
|
|
236
|
-
│ ├─┬ supports-color@3.2.3
|
|
237
|
-
│ │ └── has-flag@1.0.0
|
|
238
|
-
│ ├─┬ which@1.3.0
|
|
239
|
-
│ │ └── isexe@2.0.0
|
|
240
|
-
│ └── wordwrap@1.0.0
|
|
241
|
-
├─┬ jade@0.26.3
|
|
242
|
-
│ ├── commander@0.6.1
|
|
243
|
-
│ └── mkdirp@0.3.0
|
|
244
|
-
├── kareem@1.5.0
|
|
245
|
-
├── lodash@4.16.6
|
|
246
|
-
├── lodash.get@4.4.2
|
|
247
|
-
├─┬ markdown@0.5.0
|
|
248
|
-
│ └─┬ nopt@2.1.2
|
|
249
|
-
│ └── abbrev@1.0.9 deduped
|
|
250
|
-
├── marked@0.3.6
|
|
251
|
-
├─┬ mocha@3.2.0
|
|
252
|
-
│ ├── browser-stdout@1.3.0
|
|
253
|
-
│ ├─┬ commander@2.9.0
|
|
254
|
-
│ │ └── graceful-readlink@1.0.1
|
|
255
|
-
│ ├─┬ debug@2.2.0
|
|
256
|
-
│ │ └── ms@0.7.1
|
|
257
|
-
│ ├── diff@1.4.0
|
|
258
|
-
│ ├── escape-string-regexp@1.0.5
|
|
259
|
-
│ ├─┬ glob@7.0.5
|
|
260
|
-
│ │ ├── fs.realpath@1.0.0
|
|
261
|
-
│ │ ├── inflight@1.0.6 deduped
|
|
262
|
-
│ │ ├── inherits@2.0.3 deduped
|
|
263
|
-
│ │ ├── minimatch@3.0.4 deduped
|
|
264
|
-
│ │ ├── once@1.4.0 deduped
|
|
265
|
-
│ │ └── path-is-absolute@1.0.1 deduped
|
|
266
|
-
│ ├── growl@1.9.2
|
|
267
|
-
│ ├── json3@3.3.2
|
|
268
|
-
│ ├─┬ lodash.create@3.1.1
|
|
269
|
-
│ │ ├─┬ lodash._baseassign@3.2.0
|
|
270
|
-
│ │ │ ├── lodash._basecopy@3.0.1
|
|
271
|
-
│ │ │ └─┬ lodash.keys@3.1.2
|
|
272
|
-
│ │ │ ├── lodash._getnative@3.9.1
|
|
273
|
-
│ │ │ ├── lodash.isarguments@3.1.0
|
|
274
|
-
│ │ │ └── lodash.isarray@3.0.4
|
|
275
|
-
│ │ ├── lodash._basecreate@3.0.3
|
|
276
|
-
│ │ └── lodash._isiterateecall@3.0.9
|
|
277
|
-
│ ├── mkdirp@0.5.1 deduped
|
|
278
|
-
│ └─┬ supports-color@3.1.2
|
|
279
|
-
│ └── has-flag@1.0.0 deduped
|
|
280
|
-
├─┬ mongodb@2.2.33
|
|
281
|
-
│ ├── es6-promise@3.2.1
|
|
282
|
-
│ ├─┬ mongodb-core@2.1.17
|
|
283
|
-
│ │ ├── bson@1.0.4 deduped
|
|
284
|
-
│ │ └─┬ require_optional@1.0.1
|
|
285
|
-
│ │ ├── resolve-from@2.0.0
|
|
286
|
-
│ │ └── semver@5.4.1 deduped
|
|
287
|
-
│ └─┬ readable-stream@2.2.7
|
|
288
|
-
│ ├── buffer-shims@1.0.0
|
|
289
|
-
│ ├── core-util-is@1.0.2
|
|
290
|
-
│ ├── inherits@2.0.3 deduped
|
|
291
|
-
│ ├── isarray@1.0.0 deduped
|
|
292
|
-
│ ├── process-nextick-args@1.0.7
|
|
293
|
-
│ ├─┬ string_decoder@1.0.3
|
|
294
|
-
│ │ └── safe-buffer@5.1.1 deduped
|
|
295
|
-
│ └── util-deprecate@1.0.2
|
|
296
|
-
├─┬ mongodb-topology-manager@1.0.11
|
|
297
|
-
│ ├─┬ babel-core@6.26.0
|
|
298
|
-
│ │ ├─┬ babel-code-frame@6.26.0
|
|
299
|
-
│ │ │ ├── chalk@1.1.3 deduped
|
|
300
|
-
│ │ │ ├── esutils@2.0.2 deduped
|
|
301
|
-
│ │ │ └── js-tokens@3.0.2
|
|
302
|
-
│ │ ├─┬ babel-generator@6.26.0
|
|
303
|
-
│ │ │ ├── babel-messages@6.23.0 deduped
|
|
304
|
-
│ │ │ ├── babel-runtime@6.26.0 deduped
|
|
305
|
-
│ │ │ ├── babel-types@6.26.0 deduped
|
|
306
|
-
│ │ │ ├─┬ detect-indent@4.0.0
|
|
307
|
-
│ │ │ │ └─┬ repeating@2.0.1
|
|
308
|
-
│ │ │ │ └─┬ is-finite@1.0.2
|
|
309
|
-
│ │ │ │ └── number-is-nan@1.0.1 deduped
|
|
310
|
-
│ │ │ ├── jsesc@1.3.0
|
|
311
|
-
│ │ │ ├── lodash@4.17.4
|
|
312
|
-
│ │ │ ├── source-map@0.5.7
|
|
313
|
-
│ │ │ └── trim-right@1.0.1
|
|
314
|
-
│ │ ├─┬ babel-helpers@6.24.1
|
|
315
|
-
│ │ │ ├── babel-runtime@6.26.0 deduped
|
|
316
|
-
│ │ │ └── babel-template@6.26.0 deduped
|
|
317
|
-
│ │ ├─┬ babel-messages@6.23.0
|
|
318
|
-
│ │ │ └── babel-runtime@6.26.0 deduped
|
|
319
|
-
│ │ ├─┬ babel-register@6.26.0
|
|
320
|
-
│ │ │ ├── babel-core@6.26.0 deduped
|
|
321
|
-
│ │ │ ├── babel-runtime@6.26.0 deduped
|
|
322
|
-
│ │ │ ├── core-js@2.5.1 deduped
|
|
323
|
-
│ │ │ ├─┬ home-or-tmp@2.0.0
|
|
324
|
-
│ │ │ │ ├── os-homedir@1.0.2 deduped
|
|
325
|
-
│ │ │ │ └── os-tmpdir@1.0.2
|
|
326
|
-
│ │ │ ├── lodash@4.17.4
|
|
327
|
-
│ │ │ ├── mkdirp@0.5.1 deduped
|
|
328
|
-
│ │ │ └─┬ source-map-support@0.4.18
|
|
329
|
-
│ │ │ └── source-map@0.5.7
|
|
330
|
-
│ │ ├─┬ babel-runtime@6.26.0
|
|
331
|
-
│ │ │ ├── core-js@2.5.1 deduped
|
|
332
|
-
│ │ │ └── regenerator-runtime@0.11.0
|
|
333
|
-
│ │ ├─┬ babel-template@6.26.0
|
|
334
|
-
│ │ │ ├── babel-runtime@6.26.0 deduped
|
|
335
|
-
│ │ │ ├── babel-traverse@6.26.0 deduped
|
|
336
|
-
│ │ │ ├── babel-types@6.26.0 deduped
|
|
337
|
-
│ │ │ ├── babylon@6.18.0 deduped
|
|
338
|
-
│ │ │ └── lodash@4.17.4
|
|
339
|
-
│ │ ├─┬ babel-traverse@6.26.0
|
|
340
|
-
│ │ │ ├── babel-code-frame@6.26.0 deduped
|
|
341
|
-
│ │ │ ├── babel-messages@6.23.0 deduped
|
|
342
|
-
│ │ │ ├── babel-runtime@6.26.0 deduped
|
|
343
|
-
│ │ │ ├── babel-types@6.26.0 deduped
|
|
344
|
-
│ │ │ ├── babylon@6.18.0 deduped
|
|
345
|
-
│ │ │ ├── debug@2.6.9 deduped
|
|
346
|
-
│ │ │ ├── globals@9.18.0
|
|
347
|
-
│ │ │ ├─┬ invariant@2.2.2
|
|
348
|
-
│ │ │ │ └─┬ loose-envify@1.3.1
|
|
349
|
-
│ │ │ │ └── js-tokens@3.0.2 deduped
|
|
350
|
-
│ │ │ └── lodash@4.17.4
|
|
351
|
-
│ │ ├─┬ babel-types@6.26.0
|
|
352
|
-
│ │ │ ├── babel-runtime@6.26.0 deduped
|
|
353
|
-
│ │ │ ├── esutils@2.0.2 deduped
|
|
354
|
-
│ │ │ ├── lodash@4.17.4
|
|
355
|
-
│ │ │ └── to-fast-properties@1.0.3
|
|
356
|
-
│ │ ├── babylon@6.18.0
|
|
357
|
-
│ │ ├── convert-source-map@1.5.0
|
|
358
|
-
│ │ ├── debug@2.6.9 deduped
|
|
359
|
-
│ │ ├── json5@0.5.1
|
|
360
|
-
│ │ ├── lodash@4.17.4
|
|
361
|
-
│ │ ├── minimatch@3.0.4 deduped
|
|
362
|
-
│ │ ├── path-is-absolute@1.0.1 deduped
|
|
363
|
-
│ │ ├── private@0.1.7
|
|
364
|
-
│ │ ├── slash@1.0.0
|
|
365
|
-
│ │ └── source-map@0.5.7
|
|
366
|
-
│ ├─┬ babel-polyfill@6.26.0
|
|
367
|
-
│ │ ├── babel-runtime@6.26.0 deduped
|
|
368
|
-
│ │ ├── core-js@2.5.1
|
|
369
|
-
│ │ └── regenerator-runtime@0.10.5
|
|
370
|
-
│ ├── bluebird@3.5.0 deduped
|
|
371
|
-
│ ├── co@4.6.0 deduped
|
|
372
|
-
│ ├── es6-promise@3.2.1 deduped
|
|
373
|
-
│ ├─┬ kerberos@0.0.17
|
|
374
|
-
│ │ └── nan@2.0.9
|
|
375
|
-
│ ├── mkdirp@0.5.1 deduped
|
|
376
|
-
│ ├─┬ mongodb-core@1.3.21
|
|
377
|
-
│ │ ├── bson@0.4.23
|
|
378
|
-
│ │ └── require_optional@1.0.1 deduped
|
|
379
|
-
│ └─┬ rimraf@2.6.2
|
|
380
|
-
│ └─┬ glob@7.1.2
|
|
381
|
-
│ ├── fs.realpath@1.0.0 deduped
|
|
382
|
-
│ ├── inflight@1.0.6 deduped
|
|
383
|
-
│ ├── inherits@2.0.3 deduped
|
|
384
|
-
│ ├── minimatch@3.0.4 deduped
|
|
385
|
-
│ ├── once@1.4.0 deduped
|
|
386
|
-
│ └── path-is-absolute@1.0.1 deduped
|
|
387
|
-
├── UNMET PEER DEPENDENCY mongoose@4.x
|
|
388
|
-
├── mongoose-long@0.1.1
|
|
389
|
-
├── mpath@0.3.0
|
|
390
|
-
├── mpromise@0.5.5
|
|
391
|
-
├─┬ mquery@2.3.3
|
|
392
|
-
│ ├── bluebird@3.5.0 deduped
|
|
393
|
-
│ ├── debug@2.6.9 deduped
|
|
394
|
-
│ ├── regexp-clone@0.0.1 deduped
|
|
395
|
-
│ └── sliced@0.0.5
|
|
396
|
-
├── ms@2.0.0
|
|
397
|
-
├── muri@1.3.0
|
|
398
|
-
├─┬ node-static@0.7.7
|
|
399
|
-
│ ├── colors@1.1.2
|
|
400
|
-
│ ├── mime@2.0.3
|
|
401
|
-
│ └─┬ optimist@0.6.1
|
|
402
|
-
│ ├── minimist@0.0.8 deduped
|
|
403
|
-
│ └── wordwrap@0.0.3
|
|
404
|
-
├─┬ nsp@3.1.0
|
|
405
|
-
│ ├─┬ chalk@2.3.0
|
|
406
|
-
│ │ ├─┬ ansi-styles@3.2.0
|
|
407
|
-
│ │ │ └─┬ color-convert@1.9.1
|
|
408
|
-
│ │ │ └── color-name@1.1.3
|
|
409
|
-
│ │ ├── escape-string-regexp@1.0.5 deduped
|
|
410
|
-
│ │ └─┬ supports-color@4.5.0
|
|
411
|
-
│ │ └── has-flag@2.0.0
|
|
412
|
-
│ ├─┬ cli-table2@0.2.0
|
|
413
|
-
│ │ ├── colors@1.1.2 deduped
|
|
414
|
-
│ │ ├── lodash@3.10.1
|
|
415
|
-
│ │ └── string-width@1.0.2 deduped
|
|
416
|
-
│ ├── cvss@1.0.2
|
|
417
|
-
│ ├─┬ https-proxy-agent@2.1.1
|
|
418
|
-
│ │ ├─┬ agent-base@4.1.2
|
|
419
|
-
│ │ │ └─┬ es6-promisify@5.0.0
|
|
420
|
-
│ │ │ └── es6-promise@4.2.2
|
|
421
|
-
│ │ └─┬ debug@3.1.0
|
|
422
|
-
│ │ └── ms@2.0.0 deduped
|
|
423
|
-
│ ├─┬ inquirer@3.3.0
|
|
424
|
-
│ │ ├── ansi-escapes@3.0.0
|
|
425
|
-
│ │ ├── chalk@2.3.0 deduped
|
|
426
|
-
│ │ ├─┬ cli-cursor@2.1.0
|
|
427
|
-
│ │ │ └─┬ restore-cursor@2.0.0
|
|
428
|
-
│ │ │ ├─┬ onetime@2.0.1
|
|
429
|
-
│ │ │ │ └── mimic-fn@1.1.0 deduped
|
|
430
|
-
│ │ │ └── signal-exit@3.0.2
|
|
431
|
-
│ │ ├── cli-width@2.2.0 deduped
|
|
432
|
-
│ │ ├─┬ external-editor@2.1.0
|
|
433
|
-
│ │ │ ├── chardet@0.4.2
|
|
434
|
-
│ │ │ ├── iconv-lite@0.4.19
|
|
435
|
-
│ │ │ └─┬ tmp@0.0.33
|
|
436
|
-
│ │ │ └── os-tmpdir@1.0.2 deduped
|
|
437
|
-
│ │ ├─┬ figures@2.0.0
|
|
438
|
-
│ │ │ └── escape-string-regexp@1.0.5 deduped
|
|
439
|
-
│ │ ├── lodash@4.16.6 deduped
|
|
440
|
-
│ │ ├── mute-stream@0.0.7
|
|
441
|
-
│ │ ├─┬ run-async@2.3.0
|
|
442
|
-
│ │ │ └── is-promise@2.1.0
|
|
443
|
-
│ │ ├── rx-lite@4.0.8
|
|
444
|
-
│ │ ├─┬ rx-lite-aggregates@4.0.8
|
|
445
|
-
│ │ │ └── rx-lite@3.1.2 deduped
|
|
446
|
-
│ │ ├─┬ string-width@2.1.1
|
|
447
|
-
│ │ │ ├── is-fullwidth-code-point@2.0.0
|
|
448
|
-
│ │ │ └── strip-ansi@4.0.0 deduped
|
|
449
|
-
│ │ ├─┬ strip-ansi@4.0.0
|
|
450
|
-
│ │ │ └── ansi-regex@3.0.0
|
|
451
|
-
│ │ └── through@2.3.8 deduped
|
|
452
|
-
│ ├── nodesecurity-npm-utils@6.0.0
|
|
453
|
-
│ ├── semver@5.4.1
|
|
454
|
-
│ ├─┬ wreck@12.5.1
|
|
455
|
-
│ │ ├─┬ boom@5.2.0
|
|
456
|
-
│ │ │ └── hoek@4.2.0 deduped
|
|
457
|
-
│ │ └── hoek@4.2.0
|
|
458
|
-
│ └─┬ yargs@9.0.1
|
|
459
|
-
│ ├── camelcase@4.1.0
|
|
460
|
-
│ ├─┬ cliui@3.2.0
|
|
461
|
-
│ │ ├─┬ string-width@1.0.2
|
|
462
|
-
│ │ │ ├── code-point-at@1.1.0 deduped
|
|
463
|
-
│ │ │ ├─┬ is-fullwidth-code-point@1.0.0
|
|
464
|
-
│ │ │ │ └── number-is-nan@1.0.1 deduped
|
|
465
|
-
│ │ │ └── strip-ansi@3.0.1 deduped
|
|
466
|
-
│ │ ├─┬ strip-ansi@3.0.1
|
|
467
|
-
│ │ │ └── ansi-regex@2.1.1
|
|
468
|
-
│ │ └─┬ wrap-ansi@2.1.0
|
|
469
|
-
│ │ ├── string-width@1.0.2 deduped
|
|
470
|
-
│ │ └── strip-ansi@3.0.1 deduped
|
|
471
|
-
│ ├── decamelize@1.2.0
|
|
472
|
-
│ ├── get-caller-file@1.0.2
|
|
473
|
-
│ ├─┬ os-locale@2.1.0
|
|
474
|
-
│ │ ├─┬ execa@0.7.0
|
|
475
|
-
│ │ │ ├─┬ cross-spawn@5.1.0
|
|
476
|
-
│ │ │ │ ├─┬ lru-cache@4.1.1
|
|
477
|
-
│ │ │ │ │ ├── pseudomap@1.0.2
|
|
478
|
-
│ │ │ │ │ └── yallist@2.1.2
|
|
479
|
-
│ │ │ │ ├─┬ shebang-command@1.2.0
|
|
480
|
-
│ │ │ │ │ └── shebang-regex@1.0.0
|
|
481
|
-
│ │ │ │ └── which@1.3.0 deduped
|
|
482
|
-
│ │ │ ├── get-stream@3.0.0
|
|
483
|
-
│ │ │ ├── is-stream@1.1.0
|
|
484
|
-
│ │ │ ├─┬ npm-run-path@2.0.2
|
|
485
|
-
│ │ │ │ └── path-key@2.0.1
|
|
486
|
-
│ │ │ ├── p-finally@1.0.0
|
|
487
|
-
│ │ │ ├── signal-exit@3.0.2 deduped
|
|
488
|
-
│ │ │ └── strip-eof@1.0.0
|
|
489
|
-
│ │ ├─┬ lcid@1.0.0
|
|
490
|
-
│ │ │ └── invert-kv@1.0.0
|
|
491
|
-
│ │ └─┬ mem@1.1.0
|
|
492
|
-
│ │ └── mimic-fn@1.1.0
|
|
493
|
-
│ ├─┬ read-pkg-up@2.0.0
|
|
494
|
-
│ │ ├─┬ find-up@2.1.0
|
|
495
|
-
│ │ │ └─┬ locate-path@2.0.0
|
|
496
|
-
│ │ │ ├─┬ p-locate@2.0.0
|
|
497
|
-
│ │ │ │ └── p-limit@1.1.0
|
|
498
|
-
│ │ │ └── path-exists@3.0.0
|
|
499
|
-
│ │ └─┬ read-pkg@2.0.0
|
|
500
|
-
│ │ ├─┬ load-json-file@2.0.0
|
|
501
|
-
│ │ │ ├── graceful-fs@4.1.11 deduped
|
|
502
|
-
│ │ │ ├─┬ parse-json@2.2.0
|
|
503
|
-
│ │ │ │ └─┬ error-ex@1.3.1
|
|
504
|
-
│ │ │ │ └── is-arrayish@0.2.1
|
|
505
|
-
│ │ │ ├── pify@2.3.0 deduped
|
|
506
|
-
│ │ │ └── strip-bom@3.0.0
|
|
507
|
-
│ │ ├─┬ normalize-package-data@2.4.0
|
|
508
|
-
│ │ │ ├── hosted-git-info@2.5.0
|
|
509
|
-
│ │ │ ├─┬ is-builtin-module@1.0.0
|
|
510
|
-
│ │ │ │ └── builtin-modules@1.1.1
|
|
511
|
-
│ │ │ ├── semver@5.4.1 deduped
|
|
512
|
-
│ │ │ └─┬ validate-npm-package-license@3.0.1
|
|
513
|
-
│ │ │ ├─┬ spdx-correct@1.0.2
|
|
514
|
-
│ │ │ │ └── spdx-license-ids@1.2.2
|
|
515
|
-
│ │ │ └── spdx-expression-parse@1.0.4
|
|
516
|
-
│ │ └─┬ path-type@2.0.0
|
|
517
|
-
│ │ └── pify@2.3.0 deduped
|
|
518
|
-
│ ├── require-directory@2.1.1
|
|
519
|
-
│ ├── require-main-filename@1.0.1
|
|
520
|
-
│ ├── set-blocking@2.0.0
|
|
521
|
-
│ ├── string-width@2.1.1 deduped
|
|
522
|
-
│ ├── which-module@2.0.0
|
|
523
|
-
│ ├── y18n@3.2.1
|
|
524
|
-
│ └─┬ yargs-parser@7.0.0
|
|
525
|
-
│ └── camelcase@4.1.0
|
|
526
|
-
├─┬ power-assert@1.4.1
|
|
527
|
-
│ ├─┬ define-properties@1.1.2
|
|
528
|
-
│ │ ├── foreach@2.0.5
|
|
529
|
-
│ │ └── object-keys@1.0.11
|
|
530
|
-
│ ├─┬ empower@1.2.3
|
|
531
|
-
│ │ ├── core-js@2.5.1 deduped
|
|
532
|
-
│ │ └─┬ empower-core@0.6.2
|
|
533
|
-
│ │ ├── call-signature@0.0.2
|
|
534
|
-
│ │ └── core-js@2.5.1 deduped
|
|
535
|
-
│ ├─┬ power-assert-formatter@1.4.1
|
|
536
|
-
│ │ ├── core-js@2.5.1 deduped
|
|
537
|
-
│ │ ├─┬ power-assert-context-formatter@1.1.1
|
|
538
|
-
│ │ │ ├── core-js@2.5.1 deduped
|
|
539
|
-
│ │ │ └─┬ power-assert-context-traversal@1.1.1
|
|
540
|
-
│ │ │ ├── core-js@2.5.1 deduped
|
|
541
|
-
│ │ │ └── estraverse@4.2.0 deduped
|
|
542
|
-
│ │ ├─┬ power-assert-context-reducer-ast@1.1.2
|
|
543
|
-
│ │ │ ├── acorn@4.0.13
|
|
544
|
-
│ │ │ ├── acorn-es7-plugin@1.1.7
|
|
545
|
-
│ │ │ ├── core-js@2.5.1 deduped
|
|
546
|
-
│ │ │ ├─┬ espurify@1.7.0
|
|
547
|
-
│ │ │ │ └── core-js@2.5.1 deduped
|
|
548
|
-
│ │ │ └── estraverse@4.2.0 deduped
|
|
549
|
-
│ │ ├─┬ power-assert-renderer-assertion@1.1.1
|
|
550
|
-
│ │ │ ├── power-assert-renderer-base@1.1.1
|
|
551
|
-
│ │ │ └─┬ power-assert-util-string-width@1.1.1
|
|
552
|
-
│ │ │ └── eastasianwidth@0.1.1
|
|
553
|
-
│ │ ├─┬ power-assert-renderer-comparison@1.1.1
|
|
554
|
-
│ │ │ ├── core-js@2.5.1 deduped
|
|
555
|
-
│ │ │ ├── diff-match-patch@1.0.0
|
|
556
|
-
│ │ │ ├── power-assert-renderer-base@1.1.1 deduped
|
|
557
|
-
│ │ │ ├─┬ stringifier@1.3.0
|
|
558
|
-
│ │ │ │ ├── core-js@2.5.1 deduped
|
|
559
|
-
│ │ │ │ ├── traverse@0.6.6
|
|
560
|
-
│ │ │ │ └── type-name@2.0.2 deduped
|
|
561
|
-
│ │ │ └── type-name@2.0.2
|
|
562
|
-
│ │ ├─┬ power-assert-renderer-diagram@1.1.2
|
|
563
|
-
│ │ │ ├── core-js@2.5.1 deduped
|
|
564
|
-
│ │ │ ├── power-assert-renderer-base@1.1.1 deduped
|
|
565
|
-
│ │ │ ├── power-assert-util-string-width@1.1.1 deduped
|
|
566
|
-
│ │ │ └── stringifier@1.3.0 deduped
|
|
567
|
-
│ │ └─┬ power-assert-renderer-file@1.1.1
|
|
568
|
-
│ │ └── power-assert-renderer-base@1.1.1 deduped
|
|
569
|
-
│ ├─┬ universal-deep-strict-equal@1.2.2
|
|
570
|
-
│ │ ├── array-filter@1.0.0
|
|
571
|
-
│ │ ├── indexof@0.0.1
|
|
572
|
-
│ │ └── object-keys@1.0.11 deduped
|
|
573
|
-
│ └── xtend@4.0.1
|
|
574
|
-
├── q@1.5.1
|
|
575
|
-
├── regexp-clone@0.0.1
|
|
576
|
-
├── sliced@1.0.1
|
|
577
|
-
├─┬ tbd@0.6.4
|
|
578
|
-
│ ├─┬ express@4.16.1
|
|
579
|
-
│ │ ├─┬ accepts@1.3.4
|
|
580
|
-
│ │ │ ├─┬ mime-types@2.1.17
|
|
581
|
-
│ │ │ │ └── mime-db@1.30.0
|
|
582
|
-
│ │ │ └── negotiator@0.6.1
|
|
583
|
-
│ │ ├── array-flatten@1.1.1
|
|
584
|
-
│ │ ├─┬ body-parser@1.18.2
|
|
585
|
-
│ │ │ ├── bytes@3.0.0
|
|
586
|
-
│ │ │ ├── content-type@1.0.4 deduped
|
|
587
|
-
│ │ │ ├── debug@2.6.9 deduped
|
|
588
|
-
│ │ │ ├── depd@1.1.1 deduped
|
|
589
|
-
│ │ │ ├─┬ http-errors@1.6.2
|
|
590
|
-
│ │ │ │ ├── depd@1.1.1 deduped
|
|
591
|
-
│ │ │ │ ├── inherits@2.0.3 deduped
|
|
592
|
-
│ │ │ │ ├── setprototypeof@1.0.3
|
|
593
|
-
│ │ │ │ └── statuses@1.3.1 deduped
|
|
594
|
-
│ │ │ ├── iconv-lite@0.4.19 deduped
|
|
595
|
-
│ │ │ ├── on-finished@2.3.0 deduped
|
|
596
|
-
│ │ │ ├── qs@6.5.1 deduped
|
|
597
|
-
│ │ │ ├─┬ raw-body@2.3.2
|
|
598
|
-
│ │ │ │ ├── bytes@3.0.0 deduped
|
|
599
|
-
│ │ │ │ ├── http-errors@1.6.2 deduped
|
|
600
|
-
│ │ │ │ ├── iconv-lite@0.4.19 deduped
|
|
601
|
-
│ │ │ │ └── unpipe@1.0.0 deduped
|
|
602
|
-
│ │ │ └── type-is@1.6.15 deduped
|
|
603
|
-
│ │ ├── content-disposition@0.5.2
|
|
604
|
-
│ │ ├── content-type@1.0.4
|
|
605
|
-
│ │ ├── cookie@0.3.1
|
|
606
|
-
│ │ ├── cookie-signature@1.0.6
|
|
607
|
-
│ │ ├── debug@2.6.9 deduped
|
|
608
|
-
│ │ ├── depd@1.1.1
|
|
609
|
-
│ │ ├── encodeurl@1.0.1
|
|
610
|
-
│ │ ├── escape-html@1.0.3
|
|
611
|
-
│ │ ├── etag@1.8.1
|
|
612
|
-
│ │ ├─┬ finalhandler@1.1.0
|
|
613
|
-
│ │ │ ├── debug@2.6.9 deduped
|
|
614
|
-
│ │ │ ├── encodeurl@1.0.1 deduped
|
|
615
|
-
│ │ │ ├── escape-html@1.0.3 deduped
|
|
616
|
-
│ │ │ ├── on-finished@2.3.0 deduped
|
|
617
|
-
│ │ │ ├── parseurl@1.3.2 deduped
|
|
618
|
-
│ │ │ ├── statuses@1.3.1 deduped
|
|
619
|
-
│ │ │ └── unpipe@1.0.0
|
|
620
|
-
│ │ ├── fresh@0.5.2
|
|
621
|
-
│ │ ├── merge-descriptors@1.0.1
|
|
622
|
-
│ │ ├── methods@1.1.2
|
|
623
|
-
│ │ ├─┬ on-finished@2.3.0
|
|
624
|
-
│ │ │ └── ee-first@1.1.1
|
|
625
|
-
│ │ ├── parseurl@1.3.2
|
|
626
|
-
│ │ ├── path-to-regexp@0.1.7
|
|
627
|
-
│ │ ├─┬ proxy-addr@2.0.2
|
|
628
|
-
│ │ │ ├── forwarded@0.1.2
|
|
629
|
-
│ │ │ └── ipaddr.js@1.5.2
|
|
630
|
-
│ │ ├── qs@6.5.1
|
|
631
|
-
│ │ ├── range-parser@1.2.0
|
|
632
|
-
│ │ ├── safe-buffer@5.1.1
|
|
633
|
-
│ │ ├─┬ send@0.16.1
|
|
634
|
-
│ │ │ ├── debug@2.6.9 deduped
|
|
635
|
-
│ │ │ ├── depd@1.1.1 deduped
|
|
636
|
-
│ │ │ ├── destroy@1.0.4
|
|
637
|
-
│ │ │ ├── encodeurl@1.0.1 deduped
|
|
638
|
-
│ │ │ ├── escape-html@1.0.3 deduped
|
|
639
|
-
│ │ │ ├── etag@1.8.1 deduped
|
|
640
|
-
│ │ │ ├── fresh@0.5.2 deduped
|
|
641
|
-
│ │ │ ├── http-errors@1.6.2 deduped
|
|
642
|
-
│ │ │ ├── mime@1.4.1
|
|
643
|
-
│ │ │ ├── ms@2.0.0 deduped
|
|
644
|
-
│ │ │ ├── on-finished@2.3.0 deduped
|
|
645
|
-
│ │ │ ├── range-parser@1.2.0 deduped
|
|
646
|
-
│ │ │ └── statuses@1.3.1 deduped
|
|
647
|
-
│ │ ├─┬ serve-static@1.13.1
|
|
648
|
-
│ │ │ ├── encodeurl@1.0.1 deduped
|
|
649
|
-
│ │ │ ├── escape-html@1.0.3 deduped
|
|
650
|
-
│ │ │ ├── parseurl@1.3.2 deduped
|
|
651
|
-
│ │ │ └── send@0.16.1 deduped
|
|
652
|
-
│ │ ├── setprototypeof@1.1.0
|
|
653
|
-
│ │ ├── statuses@1.3.1
|
|
654
|
-
│ │ ├─┬ type-is@1.6.15
|
|
655
|
-
│ │ │ ├── media-typer@0.3.0
|
|
656
|
-
│ │ │ └── mime-types@2.1.17 deduped
|
|
657
|
-
│ │ ├── utils-merge@1.0.1
|
|
658
|
-
│ │ └── vary@1.1.2
|
|
659
|
-
│ ├── jade@0.26.3 deduped
|
|
660
|
-
│ └─┬ jasmine-node@1.14.5
|
|
661
|
-
│ ├── coffee-script@1.12.7
|
|
662
|
-
│ ├─┬ gaze@0.3.4
|
|
663
|
-
│ │ ├─┬ fileset@0.1.8
|
|
664
|
-
│ │ │ ├─┬ glob@3.2.11
|
|
665
|
-
│ │ │ │ ├── inherits@2.0.3 deduped
|
|
666
|
-
│ │ │ │ └─┬ minimatch@0.3.0
|
|
667
|
-
│ │ │ │ ├── lru-cache@2.7.3 deduped
|
|
668
|
-
│ │ │ │ └── sigmund@1.0.1 deduped
|
|
669
|
-
│ │ │ └── minimatch@0.2.14 deduped
|
|
670
|
-
│ │ └─┬ minimatch@0.2.14
|
|
671
|
-
│ │ ├── lru-cache@2.7.3
|
|
672
|
-
│ │ └── sigmund@1.0.1
|
|
673
|
-
│ ├─┬ jasmine-growl-reporter@0.0.3
|
|
674
|
-
│ │ └── growl@1.7.0
|
|
675
|
-
│ ├─┬ jasmine-reporters@1.0.2
|
|
676
|
-
│ │ └── mkdirp@0.3.5
|
|
677
|
-
│ ├── mkdirp@0.3.5
|
|
678
|
-
│ ├── requirejs@2.3.5
|
|
679
|
-
│ ├── underscore@1.5.2 deduped
|
|
680
|
-
│ └── walkdir@0.0.12
|
|
681
|
-
├─┬ uglify-js@2.7.0
|
|
682
|
-
│ ├── async@0.2.10
|
|
683
|
-
│ ├── source-map@0.5.7
|
|
684
|
-
│ ├── uglify-to-browserify@1.0.2
|
|
685
|
-
│ └─┬ yargs@3.10.0
|
|
686
|
-
│ ├── camelcase@1.2.1
|
|
687
|
-
│ ├─┬ cliui@2.1.0
|
|
688
|
-
│ │ ├─┬ center-align@0.1.3
|
|
689
|
-
│ │ │ ├─┬ align-text@0.1.4
|
|
690
|
-
│ │ │ │ ├─┬ kind-of@3.2.2
|
|
691
|
-
│ │ │ │ │ └── is-buffer@1.1.5
|
|
692
|
-
│ │ │ │ ├── longest@1.0.1
|
|
693
|
-
│ │ │ │ └── repeat-string@1.6.1
|
|
694
|
-
│ │ │ └── lazy-cache@1.0.4
|
|
695
|
-
│ │ ├─┬ right-align@0.1.3
|
|
696
|
-
│ │ │ └── align-text@0.1.4 deduped
|
|
697
|
-
│ │ └── wordwrap@0.0.2
|
|
698
|
-
│ ├── decamelize@1.2.0 deduped
|
|
699
|
-
│ └── window-size@0.1.0
|
|
700
|
-
├── uuid@2.0.3
|
|
701
|
-
├── uuid-parse@1.0.0
|
|
702
|
-
└── validator@5.4.0
|
|
703
|
-
|