fsevents 1.0.8 → 1.0.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.
Potentially problematic release.
This version of fsevents might be problematic. Click here for more details.
- package/node_modules/ansi-styles/index.js +72 -6
- package/node_modules/ansi-styles/package.json +19 -12
- package/node_modules/ansi-styles/readme.md +36 -8
- package/node_modules/are-we-there-yet/CHANGES.md +19 -0
- package/node_modules/are-we-there-yet/README.md +12 -2
- package/node_modules/are-we-there-yet/index.js +4 -132
- package/node_modules/are-we-there-yet/package.json +18 -13
- package/node_modules/are-we-there-yet/test/lib/test-event.js +29 -0
- package/node_modules/are-we-there-yet/test/tracker.js +44 -43
- package/node_modules/are-we-there-yet/test/trackergroup.js +73 -64
- package/node_modules/are-we-there-yet/test/trackerstream.js +26 -40
- package/node_modules/are-we-there-yet/tracker-base.js +11 -0
- package/node_modules/are-we-there-yet/tracker-group.js +107 -0
- package/node_modules/are-we-there-yet/tracker-stream.js +35 -0
- package/node_modules/are-we-there-yet/tracker.js +30 -0
- package/node_modules/asn1/package.json +1 -2
- package/node_modules/assert-plus/package.json +1 -3
- package/node_modules/async/package.json +1 -1
- package/node_modules/aws4/.npmignore +2 -1
- package/node_modules/aws4/README.md +4 -0
- package/node_modules/aws4/aws4.js +8 -3
- package/node_modules/aws4/node_modules/lru-cache/.npmignore +3 -0
- package/node_modules/aws4/node_modules/lru-cache/.travis.yml +3 -4
- package/node_modules/aws4/node_modules/lru-cache/README.md +29 -24
- package/node_modules/aws4/node_modules/lru-cache/benchmarks/insertion-time.js +32 -0
- package/node_modules/aws4/node_modules/lru-cache/lib/lru-cache.js +333 -199
- package/node_modules/aws4/node_modules/lru-cache/node_modules/pseudomap/LICENSE +15 -0
- package/node_modules/aws4/node_modules/lru-cache/node_modules/pseudomap/README.md +60 -0
- package/node_modules/aws4/node_modules/lru-cache/node_modules/pseudomap/map.js +9 -0
- package/node_modules/aws4/node_modules/lru-cache/node_modules/pseudomap/package.json +59 -0
- package/node_modules/aws4/node_modules/lru-cache/node_modules/pseudomap/pseudomap.js +113 -0
- package/node_modules/aws4/node_modules/lru-cache/node_modules/pseudomap/test/basic.js +86 -0
- package/node_modules/aws4/node_modules/lru-cache/node_modules/yallist/.npmignore +4 -0
- package/node_modules/aws4/node_modules/lru-cache/node_modules/yallist/.travis.yml +7 -0
- package/node_modules/aws4/node_modules/lru-cache/node_modules/yallist/CONTRIBUTING.md +4 -0
- package/node_modules/aws4/node_modules/lru-cache/node_modules/yallist/LICENSE +15 -0
- package/node_modules/aws4/node_modules/lru-cache/node_modules/yallist/README.md +204 -0
- package/node_modules/aws4/node_modules/lru-cache/node_modules/yallist/package.json +59 -0
- package/node_modules/aws4/node_modules/lru-cache/node_modules/yallist/test/basic.js +188 -0
- package/node_modules/aws4/node_modules/lru-cache/node_modules/yallist/yallist.js +360 -0
- package/node_modules/aws4/node_modules/lru-cache/package.json +16 -12
- package/node_modules/aws4/node_modules/lru-cache/test/basic.js +270 -146
- package/node_modules/aws4/node_modules/lru-cache/test/foreach.js +39 -25
- package/node_modules/aws4/node_modules/lru-cache/test/inspect.js +54 -0
- package/node_modules/aws4/node_modules/lru-cache/test/no-symbol.js +3 -0
- package/node_modules/aws4/node_modules/lru-cache/test/serialize.js +115 -104
- package/node_modules/aws4/package.json +17 -14
- package/node_modules/bl/bl.js +9 -3
- package/node_modules/bl/package.json +12 -12
- package/node_modules/bl/test/test.js +14 -0
- package/node_modules/color-convert/README.md +62 -0
- package/node_modules/color-convert/conversions.js +594 -0
- package/node_modules/color-convert/css-keywords.js +151 -0
- package/node_modules/color-convert/index.js +75 -0
- package/node_modules/color-convert/package.json +92 -0
- package/node_modules/color-convert/route.js +98 -0
- package/node_modules/dashdash/lib/dashdash.js +1 -1
- package/node_modules/dashdash/node_modules/assert-plus/AUTHORS +6 -0
- package/node_modules/dashdash/node_modules/assert-plus/CHANGES.md +14 -0
- package/node_modules/dashdash/node_modules/assert-plus/README.md +162 -0
- package/node_modules/dashdash/node_modules/assert-plus/assert.js +211 -0
- package/node_modules/dashdash/node_modules/assert-plus/package.json +89 -0
- package/node_modules/dashdash/package.json +19 -12
- package/node_modules/ecc-jsbn/package.json +1 -2
- package/node_modules/escape-string-regexp/package.json +15 -11
- package/node_modules/extsprintf/package.json +2 -3
- package/node_modules/form-data/.dockerignore +7 -0
- package/node_modules/form-data/.editorconfig +10 -0
- package/node_modules/form-data/.eslintignore +1 -0
- package/node_modules/form-data/.eslintrc +64 -0
- package/node_modules/form-data/{Readme.md → README.md} +9 -1
- package/node_modules/form-data/lib/browser.js +2 -1
- package/node_modules/form-data/lib/form_data.js +172 -135
- package/node_modules/form-data/lib/populate.js +9 -0
- package/node_modules/form-data/package.json +35 -16
- package/node_modules/form-data/wercker.yml +36 -0
- package/node_modules/fstream-ignore/node_modules/minimatch/node_modules/brace-expansion/index.js +1 -1
- package/node_modules/fstream-ignore/node_modules/minimatch/node_modules/brace-expansion/package.json +14 -10
- package/node_modules/gauge/README.md +1 -1
- package/node_modules/gauge/package.json +18 -14
- package/node_modules/gauge/progress-bar.js +2 -2
- package/node_modules/http-signature/package.json +1 -2
- package/node_modules/is-my-json-valid/README.md +2 -2
- package/node_modules/is-my-json-valid/index.js +15 -6
- package/node_modules/is-my-json-valid/package.json +11 -7
- package/node_modules/is-my-json-valid/test/json-schema-draft4/multipleOf.json +36 -0
- package/node_modules/is-my-json-valid/test/misc.js +18 -0
- package/node_modules/is-typedarray/package.json +1 -2
- package/node_modules/isarray/.npmignore +1 -0
- package/node_modules/isarray/.travis.yml +4 -0
- package/node_modules/isarray/Makefile +6 -0
- package/node_modules/isarray/README.md +6 -0
- package/node_modules/isarray/index.js +3 -1
- package/node_modules/isarray/package.json +28 -10
- package/node_modules/isarray/test.js +20 -0
- package/node_modules/jodid25519/package.json +1 -2
- package/node_modules/jsbn/package.json +1 -2
- package/node_modules/json-schema/package.json +1 -1
- package/node_modules/jsprim/package.json +1 -2
- package/node_modules/lodash.pad/LICENSE +17 -16
- package/node_modules/lodash.pad/README.md +2 -2
- package/node_modules/lodash.pad/index.js +3 -94
- package/node_modules/lodash.pad/package.json +12 -12
- package/node_modules/lodash.padend/LICENSE +23 -0
- package/node_modules/lodash.padend/README.md +18 -0
- package/node_modules/lodash.padend/index.js +285 -0
- package/node_modules/lodash.padend/package.json +91 -0
- package/node_modules/lodash.padstart/LICENSE +23 -0
- package/node_modules/lodash.padstart/README.md +18 -0
- package/node_modules/lodash.padstart/index.js +285 -0
- package/node_modules/lodash.padstart/package.json +91 -0
- package/node_modules/lodash.repeat/LICENSE +17 -16
- package/node_modules/lodash.repeat/README.md +2 -2
- package/node_modules/lodash.repeat/index.js +3 -94
- package/node_modules/lodash.repeat/package.json +14 -13
- package/node_modules/lodash.tostring/LICENSE +23 -0
- package/node_modules/lodash.tostring/README.md +18 -0
- package/node_modules/lodash.tostring/index.js +164 -0
- package/node_modules/lodash.tostring/package.json +91 -0
- package/node_modules/mime-db/HISTORY.md +14 -0
- package/node_modules/mime-db/db.json +26 -3
- package/node_modules/mime-db/package.json +23 -18
- package/node_modules/mime-types/HISTORY.md +8 -0
- package/node_modules/mime-types/README.md +1 -1
- package/node_modules/mime-types/package.json +21 -16
- package/node_modules/node-pre-gyp/CHANGELOG.md +11 -0
- package/node_modules/node-pre-gyp/lib/util/abi_crosswalk.json +44 -4
- package/node_modules/node-pre-gyp/package.json +16 -16
- package/node_modules/npmlog/.nyc_output/64996.json +1 -0
- package/node_modules/npmlog/.nyc_output/64998.json +1 -0
- package/node_modules/npmlog/.nyc_output/65000.json +1 -0
- package/node_modules/npmlog/log.js +3 -2
- package/node_modules/npmlog/package.json +15 -11
- package/node_modules/npmlog/test/progress.js +25 -8
- package/node_modules/once/package.json +1 -1
- package/node_modules/qs/package.json +1 -2
- package/node_modules/readable-stream/.travis.yml +18 -16
- package/node_modules/readable-stream/README.md +1 -1
- package/node_modules/readable-stream/doc/stream.markdown +435 -405
- package/node_modules/readable-stream/lib/_stream_duplex.js +13 -20
- package/node_modules/readable-stream/lib/_stream_passthrough.js +3 -4
- package/node_modules/readable-stream/lib/_stream_readable.js +110 -205
- package/node_modules/readable-stream/lib/_stream_transform.js +21 -38
- package/node_modules/readable-stream/lib/_stream_writable.js +108 -121
- package/node_modules/readable-stream/package.json +19 -15
- package/node_modules/request/package.json +1 -2
- package/node_modules/rimraf/node_modules/glob/README.md +6 -0
- package/node_modules/rimraf/node_modules/glob/common.js +12 -3
- package/node_modules/rimraf/node_modules/glob/glob.js +20 -3
- package/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/index.js +1 -1
- package/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/package.json +14 -10
- package/node_modules/rimraf/node_modules/glob/package.json +15 -11
- package/node_modules/rimraf/node_modules/glob/sync.js +8 -1
- package/node_modules/rimraf/package.json +14 -10
- package/node_modules/semver/package.json +1 -2
- package/node_modules/sshpk/lib/formats/rfc4253.js +2 -1
- package/node_modules/sshpk/package.json +13 -10
- package/node_modules/strip-ansi/package.json +21 -16
- package/node_modules/strip-ansi/readme.md +5 -5
- package/node_modules/tough-cookie/lib/cookie.js +2 -2
- package/node_modules/tough-cookie/package.json +13 -9
- package/node_modules/tweetnacl/CHANGELOG.md +53 -0
- package/node_modules/tweetnacl/COPYING.txt +9 -0
- package/node_modules/tweetnacl/README.md +14 -40
- package/node_modules/tweetnacl/nacl-fast.js +21 -51
- package/node_modules/tweetnacl/nacl-fast.min.js +2 -2
- package/node_modules/tweetnacl/nacl.js +21 -51
- package/node_modules/tweetnacl/nacl.min.js +1 -1
- package/node_modules/tweetnacl/package.json +28 -38
- package/node_modules/verror/package.json +2 -3
- package/package.json +2 -2
- package/node_modules/aws4/example.js +0 -372
- package/node_modules/aws4/node_modules/lru-cache/test/memory-leak.js +0 -51
- package/node_modules/isarray/build/build.js +0 -209
- package/node_modules/lodash._basetostring/LICENSE +0 -22
- package/node_modules/lodash._basetostring/README.md +0 -20
- package/node_modules/lodash._basetostring/index.js +0 -22
- package/node_modules/lodash._basetostring/package.json +0 -99
- package/node_modules/lodash._createpadding/LICENSE +0 -22
- package/node_modules/lodash._createpadding/README.md +0 -20
- package/node_modules/lodash._createpadding/index.js +0 -37
- package/node_modules/lodash._createpadding/package.json +0 -101
- package/node_modules/lodash._root/LICENSE +0 -22
- package/node_modules/lodash._root/README.md +0 -18
- package/node_modules/lodash._root/index.js +0 -53
- package/node_modules/lodash._root/package.json +0 -77
- package/node_modules/lodash.padleft/LICENSE.txt +0 -22
- package/node_modules/lodash.padleft/README.md +0 -20
- package/node_modules/lodash.padleft/index.js +0 -50
- package/node_modules/lodash.padleft/package.json +0 -107
- package/node_modules/lodash.padright/LICENSE.txt +0 -22
- package/node_modules/lodash.padright/README.md +0 -20
- package/node_modules/lodash.padright/index.js +0 -50
- package/node_modules/lodash.padright/package.json +0 -107
@@ -0,0 +1,164 @@
|
|
1
|
+
/**
|
2
|
+
* lodash 4.1.2 (Custom Build) <https://lodash.com/>
|
3
|
+
* Build: `lodash modularize exports="npm" -o ./`
|
4
|
+
* Copyright 2012-2016 The Dojo Foundation <http://dojofoundation.org/>
|
5
|
+
* Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
|
6
|
+
* Copyright 2009-2016 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
|
7
|
+
* Available under MIT license <https://lodash.com/license>
|
8
|
+
*/
|
9
|
+
|
10
|
+
/** Used as references for various `Number` constants. */
|
11
|
+
var INFINITY = 1 / 0;
|
12
|
+
|
13
|
+
/** `Object#toString` result references. */
|
14
|
+
var symbolTag = '[object Symbol]';
|
15
|
+
|
16
|
+
/** Used to determine if values are of the language type `Object`. */
|
17
|
+
var objectTypes = {
|
18
|
+
'function': true,
|
19
|
+
'object': true
|
20
|
+
};
|
21
|
+
|
22
|
+
/** Detect free variable `exports`. */
|
23
|
+
var freeExports = (objectTypes[typeof exports] && exports && !exports.nodeType)
|
24
|
+
? exports
|
25
|
+
: undefined;
|
26
|
+
|
27
|
+
/** Detect free variable `module`. */
|
28
|
+
var freeModule = (objectTypes[typeof module] && module && !module.nodeType)
|
29
|
+
? module
|
30
|
+
: undefined;
|
31
|
+
|
32
|
+
/** Detect free variable `global` from Node.js. */
|
33
|
+
var freeGlobal = checkGlobal(freeExports && freeModule && typeof global == 'object' && global);
|
34
|
+
|
35
|
+
/** Detect free variable `self`. */
|
36
|
+
var freeSelf = checkGlobal(objectTypes[typeof self] && self);
|
37
|
+
|
38
|
+
/** Detect free variable `window`. */
|
39
|
+
var freeWindow = checkGlobal(objectTypes[typeof window] && window);
|
40
|
+
|
41
|
+
/** Detect `this` as the global object. */
|
42
|
+
var thisGlobal = checkGlobal(objectTypes[typeof this] && this);
|
43
|
+
|
44
|
+
/**
|
45
|
+
* Used as a reference to the global object.
|
46
|
+
*
|
47
|
+
* The `this` value is used if it's the global object to avoid Greasemonkey's
|
48
|
+
* restricted `window` object, otherwise the `window` object is used.
|
49
|
+
*/
|
50
|
+
var root = freeGlobal ||
|
51
|
+
((freeWindow !== (thisGlobal && thisGlobal.window)) && freeWindow) ||
|
52
|
+
freeSelf || thisGlobal || Function('return this')();
|
53
|
+
|
54
|
+
/**
|
55
|
+
* Checks if `value` is a global object.
|
56
|
+
*
|
57
|
+
* @private
|
58
|
+
* @param {*} value The value to check.
|
59
|
+
* @returns {null|Object} Returns `value` if it's a global object, else `null`.
|
60
|
+
*/
|
61
|
+
function checkGlobal(value) {
|
62
|
+
return (value && value.Object === Object) ? value : null;
|
63
|
+
}
|
64
|
+
|
65
|
+
/** Used for built-in method references. */
|
66
|
+
var objectProto = Object.prototype;
|
67
|
+
|
68
|
+
/**
|
69
|
+
* Used to resolve the [`toStringTag`](http://ecma-international.org/ecma-262/6.0/#sec-object.prototype.tostring)
|
70
|
+
* of values.
|
71
|
+
*/
|
72
|
+
var objectToString = objectProto.toString;
|
73
|
+
|
74
|
+
/** Built-in value references. */
|
75
|
+
var Symbol = root.Symbol;
|
76
|
+
|
77
|
+
/** Used to convert symbols to primitives and strings. */
|
78
|
+
var symbolProto = Symbol ? Symbol.prototype : undefined,
|
79
|
+
symbolToString = symbolProto ? symbolProto.toString : undefined;
|
80
|
+
|
81
|
+
/**
|
82
|
+
* Checks if `value` is object-like. A value is object-like if it's not `null`
|
83
|
+
* and has a `typeof` result of "object".
|
84
|
+
*
|
85
|
+
* @static
|
86
|
+
* @memberOf _
|
87
|
+
* @category Lang
|
88
|
+
* @param {*} value The value to check.
|
89
|
+
* @returns {boolean} Returns `true` if `value` is object-like, else `false`.
|
90
|
+
* @example
|
91
|
+
*
|
92
|
+
* _.isObjectLike({});
|
93
|
+
* // => true
|
94
|
+
*
|
95
|
+
* _.isObjectLike([1, 2, 3]);
|
96
|
+
* // => true
|
97
|
+
*
|
98
|
+
* _.isObjectLike(_.noop);
|
99
|
+
* // => false
|
100
|
+
*
|
101
|
+
* _.isObjectLike(null);
|
102
|
+
* // => false
|
103
|
+
*/
|
104
|
+
function isObjectLike(value) {
|
105
|
+
return !!value && typeof value == 'object';
|
106
|
+
}
|
107
|
+
|
108
|
+
/**
|
109
|
+
* Checks if `value` is classified as a `Symbol` primitive or object.
|
110
|
+
*
|
111
|
+
* @static
|
112
|
+
* @memberOf _
|
113
|
+
* @category Lang
|
114
|
+
* @param {*} value The value to check.
|
115
|
+
* @returns {boolean} Returns `true` if `value` is correctly classified, else `false`.
|
116
|
+
* @example
|
117
|
+
*
|
118
|
+
* _.isSymbol(Symbol.iterator);
|
119
|
+
* // => true
|
120
|
+
*
|
121
|
+
* _.isSymbol('abc');
|
122
|
+
* // => false
|
123
|
+
*/
|
124
|
+
function isSymbol(value) {
|
125
|
+
return typeof value == 'symbol' ||
|
126
|
+
(isObjectLike(value) && objectToString.call(value) == symbolTag);
|
127
|
+
}
|
128
|
+
|
129
|
+
/**
|
130
|
+
* Converts `value` to a string if it's not one. An empty string is returned
|
131
|
+
* for `null` and `undefined` values. The sign of `-0` is preserved.
|
132
|
+
*
|
133
|
+
* @static
|
134
|
+
* @memberOf _
|
135
|
+
* @category Lang
|
136
|
+
* @param {*} value The value to process.
|
137
|
+
* @returns {string} Returns the string.
|
138
|
+
* @example
|
139
|
+
*
|
140
|
+
* _.toString(null);
|
141
|
+
* // => ''
|
142
|
+
*
|
143
|
+
* _.toString(-0);
|
144
|
+
* // => '-0'
|
145
|
+
*
|
146
|
+
* _.toString([1, 2, 3]);
|
147
|
+
* // => '1,2,3'
|
148
|
+
*/
|
149
|
+
function toString(value) {
|
150
|
+
// Exit early for strings to avoid a performance hit in some environments.
|
151
|
+
if (typeof value == 'string') {
|
152
|
+
return value;
|
153
|
+
}
|
154
|
+
if (value == null) {
|
155
|
+
return '';
|
156
|
+
}
|
157
|
+
if (isSymbol(value)) {
|
158
|
+
return symbolToString ? symbolToString.call(value) : '';
|
159
|
+
}
|
160
|
+
var result = (value + '');
|
161
|
+
return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result;
|
162
|
+
}
|
163
|
+
|
164
|
+
module.exports = toString;
|
@@ -0,0 +1,91 @@
|
|
1
|
+
{
|
2
|
+
"_from": "lodash.tostring@^4.0.0",
|
3
|
+
"_id": "lodash.tostring@4.1.2",
|
4
|
+
"_location": "/lodash.tostring",
|
5
|
+
"_nodeVersion": "5.5.0",
|
6
|
+
"_npmOperationalInternal": {
|
7
|
+
"host": "packages-13-west.internal.npmjs.com",
|
8
|
+
"tmp": "tmp/lodash.tostring-4.1.2.tgz_1456896853027_0.8195764778647572"
|
9
|
+
},
|
10
|
+
"_npmUser": {
|
11
|
+
"email": "john.david.dalton@gmail.com",
|
12
|
+
"name": "jdalton"
|
13
|
+
},
|
14
|
+
"_npmVersion": "2.14.17",
|
15
|
+
"_phantomChildren": {},
|
16
|
+
"_requiredBy": [
|
17
|
+
"/lodash.pad",
|
18
|
+
"/lodash.padend",
|
19
|
+
"/lodash.padstart",
|
20
|
+
"/lodash.repeat"
|
21
|
+
],
|
22
|
+
"_resolved": "https://registry.npmjs.org/lodash.tostring/-/lodash.tostring-4.1.2.tgz",
|
23
|
+
"_shasum": "7d326a5cf64da4298f2fd35b688d848267535288",
|
24
|
+
"_shrinkwrap": null,
|
25
|
+
"author": {
|
26
|
+
"email": "john.david.dalton@gmail.com",
|
27
|
+
"name": "John-David Dalton",
|
28
|
+
"url": "http://allyoucanleet.com/"
|
29
|
+
},
|
30
|
+
"bugs": {
|
31
|
+
"url": "https://github.com/lodash/lodash/issues"
|
32
|
+
},
|
33
|
+
"contributors": [
|
34
|
+
{
|
35
|
+
"name": "John-David Dalton",
|
36
|
+
"email": "john.david.dalton@gmail.com",
|
37
|
+
"url": "http://allyoucanleet.com/"
|
38
|
+
},
|
39
|
+
{
|
40
|
+
"name": "Blaine Bublitz",
|
41
|
+
"email": "blaine.bublitz@gmail.com",
|
42
|
+
"url": "https://github.com/phated"
|
43
|
+
},
|
44
|
+
{
|
45
|
+
"name": "Mathias Bynens",
|
46
|
+
"email": "mathias@qiwi.be",
|
47
|
+
"url": "https://mathiasbynens.be/"
|
48
|
+
}
|
49
|
+
],
|
50
|
+
"dependencies": {},
|
51
|
+
"description": "The lodash method `_.toString` exported as a module.",
|
52
|
+
"devDependencies": {},
|
53
|
+
"directories": {},
|
54
|
+
"dist": {
|
55
|
+
"shasum": "7d326a5cf64da4298f2fd35b688d848267535288",
|
56
|
+
"tarball": "http://registry.npmjs.org/lodash.tostring/-/lodash.tostring-4.1.2.tgz"
|
57
|
+
},
|
58
|
+
"homepage": "https://lodash.com/",
|
59
|
+
"icon": "https://lodash.com/icon.svg",
|
60
|
+
"keywords": [
|
61
|
+
"lodash-modularized",
|
62
|
+
"tostring"
|
63
|
+
],
|
64
|
+
"license": "MIT",
|
65
|
+
"maintainers": [
|
66
|
+
{
|
67
|
+
"name": "jdalton",
|
68
|
+
"email": "john.david.dalton@gmail.com"
|
69
|
+
},
|
70
|
+
{
|
71
|
+
"name": "mathias",
|
72
|
+
"email": "mathias@qiwi.be"
|
73
|
+
},
|
74
|
+
{
|
75
|
+
"name": "phated",
|
76
|
+
"email": "blaine.bublitz@gmail.com"
|
77
|
+
}
|
78
|
+
],
|
79
|
+
"name": "lodash.tostring",
|
80
|
+
"optionalDependencies": {},
|
81
|
+
"readme": "# lodash.tostring v4.1.2\n\nThe [lodash](https://lodash.com/) method `_.toString` exported as a [Node.js](https://nodejs.org/) module.\n\n## Installation\n\nUsing npm:\n```bash\n$ {sudo -H} npm i -g npm\n$ npm i --save lodash.tostring\n```\n\nIn Node.js:\n```js\nvar toString = require('lodash.tostring');\n```\n\nSee the [documentation](https://lodash.com/docs#toString) or [package source](https://github.com/lodash/lodash/blob/4.1.2-npm-packages/lodash.tostring) for more details.\n",
|
82
|
+
"readmeFilename": "README.md",
|
83
|
+
"repository": {
|
84
|
+
"type": "git",
|
85
|
+
"url": "git+https://github.com/lodash/lodash.git"
|
86
|
+
},
|
87
|
+
"scripts": {
|
88
|
+
"test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\""
|
89
|
+
},
|
90
|
+
"version": "4.1.2"
|
91
|
+
}
|
@@ -1,3 +1,17 @@
|
|
1
|
+
1.22.0 / 2016-02-15
|
2
|
+
===================
|
3
|
+
|
4
|
+
* Add `application/ppsp-tracker+json`
|
5
|
+
* Add `application/problem+json`
|
6
|
+
* Add `application/problem+xml`
|
7
|
+
* Add `application/vnd.hdt`
|
8
|
+
* Add `application/vnd.ms-printschematicket+xml`
|
9
|
+
* Add `model/vnd.rosette.annotated-data-model`
|
10
|
+
* Add `text/slim`
|
11
|
+
* Add extension `.rng` to `application/xml`
|
12
|
+
* Fix extension of `application/dash+xml` to be `.mpd`
|
13
|
+
* Update primary extension to `.m4a` for `audio/mp4`
|
14
|
+
|
1
15
|
1.21.0 / 2016-01-06
|
2
16
|
===================
|
3
17
|
|
@@ -217,7 +217,7 @@
|
|
217
217
|
},
|
218
218
|
"application/dash+xml": {
|
219
219
|
"source": "iana",
|
220
|
-
"extensions": ["
|
220
|
+
"extensions": ["mpd"]
|
221
221
|
},
|
222
222
|
"application/dashdelta": {
|
223
223
|
"source": "iana"
|
@@ -837,6 +837,17 @@
|
|
837
837
|
"compressible": true,
|
838
838
|
"extensions": ["ai","eps","ps"]
|
839
839
|
},
|
840
|
+
"application/ppsp-tracker+json": {
|
841
|
+
"source": "iana",
|
842
|
+
"compressible": true
|
843
|
+
},
|
844
|
+
"application/problem+json": {
|
845
|
+
"source": "iana",
|
846
|
+
"compressible": true
|
847
|
+
},
|
848
|
+
"application/problem+xml": {
|
849
|
+
"source": "iana"
|
850
|
+
},
|
840
851
|
"application/provenance+xml": {
|
841
852
|
"source": "iana"
|
842
853
|
},
|
@@ -2093,6 +2104,9 @@
|
|
2093
2104
|
"application/vnd.hcl-bireports": {
|
2094
2105
|
"source": "iana"
|
2095
2106
|
},
|
2107
|
+
"application/vnd.hdt": {
|
2108
|
+
"source": "iana"
|
2109
|
+
},
|
2096
2110
|
"application/vnd.heroku+json": {
|
2097
2111
|
"source": "iana",
|
2098
2112
|
"compressible": true
|
@@ -2687,6 +2701,9 @@
|
|
2687
2701
|
"application/vnd.ms-printing.printticket+xml": {
|
2688
2702
|
"source": "apache"
|
2689
2703
|
},
|
2704
|
+
"application/vnd.ms-printschematicket+xml": {
|
2705
|
+
"source": "iana"
|
2706
|
+
},
|
2690
2707
|
"application/vnd.ms-project": {
|
2691
2708
|
"source": "iana",
|
2692
2709
|
"extensions": ["mpp","mpt"]
|
@@ -4749,7 +4766,7 @@
|
|
4749
4766
|
"application/xml": {
|
4750
4767
|
"source": "iana",
|
4751
4768
|
"compressible": true,
|
4752
|
-
"extensions": ["xml","xsl","xsd"]
|
4769
|
+
"extensions": ["xml","xsl","xsd","rng"]
|
4753
4770
|
},
|
4754
4771
|
"application/xml-dtd": {
|
4755
4772
|
"source": "iana",
|
@@ -5023,7 +5040,7 @@
|
|
5023
5040
|
"audio/mp4": {
|
5024
5041
|
"source": "iana",
|
5025
5042
|
"compressible": false,
|
5026
|
-
"extensions": ["
|
5043
|
+
"extensions": ["m4a","mp4a"]
|
5027
5044
|
},
|
5028
5045
|
"audio/mp4a-latm": {
|
5029
5046
|
"source": "iana"
|
@@ -5774,6 +5791,9 @@
|
|
5774
5791
|
"model/vnd.parasolid.transmit.text": {
|
5775
5792
|
"source": "iana"
|
5776
5793
|
},
|
5794
|
+
"model/vnd.rosette.annotated-data-model": {
|
5795
|
+
"source": "iana"
|
5796
|
+
},
|
5777
5797
|
"model/vnd.valve.source.compiled-map": {
|
5778
5798
|
"source": "iana"
|
5779
5799
|
},
|
@@ -6003,6 +6023,9 @@
|
|
6003
6023
|
"source": "iana",
|
6004
6024
|
"extensions": ["sgml","sgm"]
|
6005
6025
|
},
|
6026
|
+
"text/slim": {
|
6027
|
+
"extensions": ["slim","slm"]
|
6028
|
+
},
|
6006
6029
|
"text/stylus": {
|
6007
6030
|
"extensions": ["stylus","styl"]
|
6008
6031
|
},
|
@@ -1,18 +1,23 @@
|
|
1
1
|
{
|
2
|
-
"_from": "mime-db@~1.
|
3
|
-
"_id": "mime-db@1.
|
2
|
+
"_from": "mime-db@~1.22.0",
|
3
|
+
"_id": "mime-db@1.22.0",
|
4
4
|
"_location": "/mime-db",
|
5
|
+
"_nodeVersion": "4.2.3",
|
6
|
+
"_npmOperationalInternal": {
|
7
|
+
"host": "packages-9-west.internal.npmjs.com",
|
8
|
+
"tmp": "tmp/mime-db-1.22.0.tgz_1455558813990_0.7830642955377698"
|
9
|
+
},
|
5
10
|
"_npmUser": {
|
6
11
|
"email": "doug@somethingdoug.com",
|
7
12
|
"name": "dougwilson"
|
8
13
|
},
|
9
|
-
"_npmVersion": "
|
14
|
+
"_npmVersion": "2.14.7",
|
10
15
|
"_phantomChildren": {},
|
11
16
|
"_requiredBy": [
|
12
17
|
"/mime-types"
|
13
18
|
],
|
14
|
-
"_resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.
|
15
|
-
"_shasum": "
|
19
|
+
"_resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.22.0.tgz",
|
20
|
+
"_shasum": "ab23a6372dc9d86d3dc9121bd0ebd38105a1904a",
|
16
21
|
"_shrinkwrap": null,
|
17
22
|
"bugs": {
|
18
23
|
"url": "https://github.com/jshttp/mime-db/issues"
|
@@ -36,20 +41,20 @@
|
|
36
41
|
"dependencies": {},
|
37
42
|
"description": "Media Type Database",
|
38
43
|
"devDependencies": {
|
39
|
-
"bluebird": "3.
|
44
|
+
"bluebird": "3.3.1",
|
40
45
|
"co": "4.6.0",
|
41
46
|
"cogent": "1.0.1",
|
42
47
|
"csv-parse": "1.0.1",
|
43
|
-
"gnode": "0.1.
|
44
|
-
"istanbul": "0.4.
|
48
|
+
"gnode": "0.1.2",
|
49
|
+
"istanbul": "0.4.2",
|
45
50
|
"mocha": "1.21.5",
|
46
51
|
"raw-body": "2.1.5",
|
47
|
-
"stream-to-array": "2.2.
|
52
|
+
"stream-to-array": "2.2.1"
|
48
53
|
},
|
49
54
|
"directories": {},
|
50
55
|
"dist": {
|
51
|
-
"shasum": "
|
52
|
-
"tarball": "http://registry.npmjs.org/mime-db/-/mime-db-1.
|
56
|
+
"shasum": "ab23a6372dc9d86d3dc9121bd0ebd38105a1904a",
|
57
|
+
"tarball": "http://registry.npmjs.org/mime-db/-/mime-db-1.22.0.tgz"
|
53
58
|
},
|
54
59
|
"engines": {
|
55
60
|
"node": ">= 0.6"
|
@@ -61,8 +66,8 @@
|
|
61
66
|
"db.json",
|
62
67
|
"index.js"
|
63
68
|
],
|
64
|
-
"gitHead": "
|
65
|
-
"homepage": "https://github.com/jshttp/mime-db",
|
69
|
+
"gitHead": "ed88d32405582a5aaff6225d1210005d6be2623e",
|
70
|
+
"homepage": "https://github.com/jshttp/mime-db#readme",
|
66
71
|
"keywords": [
|
67
72
|
"charset",
|
68
73
|
"charsets",
|
@@ -74,13 +79,13 @@
|
|
74
79
|
],
|
75
80
|
"license": "MIT",
|
76
81
|
"maintainers": [
|
77
|
-
{
|
78
|
-
"name": "jongleberry",
|
79
|
-
"email": "jonathanrichardong@gmail.com"
|
80
|
-
},
|
81
82
|
{
|
82
83
|
"name": "dougwilson",
|
83
84
|
"email": "doug@somethingdoug.com"
|
85
|
+
},
|
86
|
+
{
|
87
|
+
"name": "jongleberry",
|
88
|
+
"email": "jonathanrichardong@gmail.com"
|
84
89
|
}
|
85
90
|
],
|
86
91
|
"name": "mime-db",
|
@@ -98,5 +103,5 @@
|
|
98
103
|
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/",
|
99
104
|
"update": "npm run fetch && npm run build"
|
100
105
|
},
|
101
|
-
"version": "1.
|
106
|
+
"version": "1.22.0"
|
102
107
|
}
|
@@ -94,7 +94,7 @@ A map of extensions by content-type.
|
|
94
94
|
[npm-image]: https://img.shields.io/npm/v/mime-types.svg
|
95
95
|
[npm-url]: https://npmjs.org/package/mime-types
|
96
96
|
[node-version-image]: https://img.shields.io/node/v/mime-types.svg
|
97
|
-
[node-version-url]:
|
97
|
+
[node-version-url]: https://nodejs.org/en/download/
|
98
98
|
[travis-image]: https://img.shields.io/travis/jshttp/mime-types/master.svg
|
99
99
|
[travis-url]: https://travis-ci.org/jshttp/mime-types
|
100
100
|
[coveralls-image]: https://img.shields.io/coveralls/jshttp/mime-types/master.svg
|
@@ -1,19 +1,24 @@
|
|
1
1
|
{
|
2
2
|
"_from": "mime-types@~2.1.7",
|
3
|
-
"_id": "mime-types@2.1.
|
3
|
+
"_id": "mime-types@2.1.10",
|
4
4
|
"_location": "/mime-types",
|
5
|
+
"_nodeVersion": "4.2.3",
|
6
|
+
"_npmOperationalInternal": {
|
7
|
+
"host": "packages-9-west.internal.npmjs.com",
|
8
|
+
"tmp": "tmp/mime-types-2.1.10.tgz_1455575237256_0.9163766100537032"
|
9
|
+
},
|
5
10
|
"_npmUser": {
|
6
11
|
"email": "doug@somethingdoug.com",
|
7
12
|
"name": "dougwilson"
|
8
13
|
},
|
9
|
-
"_npmVersion": "
|
14
|
+
"_npmVersion": "2.14.7",
|
10
15
|
"_phantomChildren": {},
|
11
16
|
"_requiredBy": [
|
12
17
|
"/form-data",
|
13
18
|
"/request"
|
14
19
|
],
|
15
|
-
"_resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.
|
16
|
-
"_shasum": "
|
20
|
+
"_resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.10.tgz",
|
21
|
+
"_shasum": "b93c7cb4362e16d41072a7e54538fb4d43070837",
|
17
22
|
"_shrinkwrap": null,
|
18
23
|
"bugs": {
|
19
24
|
"url": "https://github.com/jshttp/mime-types/issues"
|
@@ -35,17 +40,17 @@
|
|
35
40
|
}
|
36
41
|
],
|
37
42
|
"dependencies": {
|
38
|
-
"mime-db": "~1.
|
43
|
+
"mime-db": "~1.22.0"
|
39
44
|
},
|
40
45
|
"description": "The ultimate javascript content-type utility.",
|
41
46
|
"devDependencies": {
|
42
|
-
"istanbul": "0.4.
|
43
|
-
"mocha": "
|
47
|
+
"istanbul": "0.4.2",
|
48
|
+
"mocha": "1.21.5"
|
44
49
|
},
|
45
50
|
"directories": {},
|
46
51
|
"dist": {
|
47
|
-
"shasum": "
|
48
|
-
"tarball": "http://registry.npmjs.org/mime-types/-/mime-types-2.1.
|
52
|
+
"shasum": "b93c7cb4362e16d41072a7e54538fb4d43070837",
|
53
|
+
"tarball": "http://registry.npmjs.org/mime-types/-/mime-types-2.1.10.tgz"
|
49
54
|
},
|
50
55
|
"engines": {
|
51
56
|
"node": ">= 0.6"
|
@@ -55,8 +60,8 @@
|
|
55
60
|
"LICENSE",
|
56
61
|
"index.js"
|
57
62
|
],
|
58
|
-
"gitHead": "
|
59
|
-
"homepage": "https://github.com/jshttp/mime-types",
|
63
|
+
"gitHead": "70785d38e9cc251137b00f73ab3d3257c4aea203",
|
64
|
+
"homepage": "https://github.com/jshttp/mime-types#readme",
|
60
65
|
"keywords": [
|
61
66
|
"mime",
|
62
67
|
"types"
|
@@ -64,16 +69,16 @@
|
|
64
69
|
"license": "MIT",
|
65
70
|
"maintainers": [
|
66
71
|
{
|
67
|
-
"name": "
|
68
|
-
"email": "
|
72
|
+
"name": "dougwilson",
|
73
|
+
"email": "doug@somethingdoug.com"
|
69
74
|
},
|
70
75
|
{
|
71
76
|
"name": "fishrock123",
|
72
77
|
"email": "fishrock123@rocketmail.com"
|
73
78
|
},
|
74
79
|
{
|
75
|
-
"name": "
|
76
|
-
"email": "
|
80
|
+
"name": "jongleberry",
|
81
|
+
"email": "jonathanrichardong@gmail.com"
|
77
82
|
}
|
78
83
|
],
|
79
84
|
"name": "mime-types",
|
@@ -88,5 +93,5 @@
|
|
88
93
|
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/test.js",
|
89
94
|
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot test/test.js"
|
90
95
|
},
|
91
|
-
"version": "2.1.
|
96
|
+
"version": "2.1.10"
|
92
97
|
}
|
@@ -1,5 +1,16 @@
|
|
1
1
|
# node-pre-gyp changelog
|
2
2
|
|
3
|
+
## 0.6.24
|
4
|
+
|
5
|
+
- Add known node version for 5.8.0, 5.9.0, and 4.4.0.
|
6
|
+
## 0.6.23
|
7
|
+
|
8
|
+
- Add known node version for 0.10.43, 0.12.11, 4.3.2, and 5.7.1.
|
9
|
+
|
10
|
+
## 0.6.22
|
11
|
+
|
12
|
+
- Add known node version for 4.3.1, and 5.7.0.
|
13
|
+
|
3
14
|
## 0.6.21
|
4
15
|
|
5
16
|
- Add known node version for 0.10.42, 0.12.10, 4.3.0, and 5.6.0.
|
@@ -124,19 +124,19 @@
|
|
124
124
|
"v8": "2.2"
|
125
125
|
},
|
126
126
|
"0.1.101": {
|
127
|
-
"node_abi":
|
127
|
+
"node_abi": null,
|
128
128
|
"v8": "2.3"
|
129
129
|
},
|
130
130
|
"0.1.102": {
|
131
|
-
"node_abi":
|
131
|
+
"node_abi": null,
|
132
132
|
"v8": "2.3"
|
133
133
|
},
|
134
134
|
"0.1.103": {
|
135
|
-
"node_abi":
|
135
|
+
"node_abi": null,
|
136
136
|
"v8": "2.3"
|
137
137
|
},
|
138
138
|
"0.1.104": {
|
139
|
-
"node_abi":
|
139
|
+
"node_abi": null,
|
140
140
|
"v8": "2.3"
|
141
141
|
},
|
142
142
|
"0.2.0": {
|
@@ -779,6 +779,10 @@
|
|
779
779
|
"node_abi": 11,
|
780
780
|
"v8": "3.14"
|
781
781
|
},
|
782
|
+
"0.10.43": {
|
783
|
+
"node_abi": 11,
|
784
|
+
"v8": "3.14"
|
785
|
+
},
|
782
786
|
"0.11.0": {
|
783
787
|
"node_abi": 12,
|
784
788
|
"v8": "3.17"
|
@@ -891,6 +895,14 @@
|
|
891
895
|
"node_abi": 14,
|
892
896
|
"v8": "3.28"
|
893
897
|
},
|
898
|
+
"0.12.11": {
|
899
|
+
"node_abi": 14,
|
900
|
+
"v8": "3.28"
|
901
|
+
},
|
902
|
+
"0.12.12": {
|
903
|
+
"node_abi": 14,
|
904
|
+
"v8": "3.28"
|
905
|
+
},
|
894
906
|
"1.0.0": {
|
895
907
|
"node_abi": 42,
|
896
908
|
"v8": "3.31"
|
@@ -1103,6 +1115,18 @@
|
|
1103
1115
|
"node_abi": 46,
|
1104
1116
|
"v8": "4.5"
|
1105
1117
|
},
|
1118
|
+
"4.3.1": {
|
1119
|
+
"node_abi": 46,
|
1120
|
+
"v8": "4.5"
|
1121
|
+
},
|
1122
|
+
"4.3.2": {
|
1123
|
+
"node_abi": 46,
|
1124
|
+
"v8": "4.5"
|
1125
|
+
},
|
1126
|
+
"4.4.0": {
|
1127
|
+
"node_abi": 46,
|
1128
|
+
"v8": "4.5"
|
1129
|
+
},
|
1106
1130
|
"5.0.0": {
|
1107
1131
|
"node_abi": 47,
|
1108
1132
|
"v8": "4.6"
|
@@ -1138,5 +1162,21 @@
|
|
1138
1162
|
"5.6.0": {
|
1139
1163
|
"node_abi": 47,
|
1140
1164
|
"v8": "4.6"
|
1165
|
+
},
|
1166
|
+
"5.7.0": {
|
1167
|
+
"node_abi": 47,
|
1168
|
+
"v8": "4.6"
|
1169
|
+
},
|
1170
|
+
"5.7.1": {
|
1171
|
+
"node_abi": 47,
|
1172
|
+
"v8": "4.6"
|
1173
|
+
},
|
1174
|
+
"5.8.0": {
|
1175
|
+
"node_abi": 47,
|
1176
|
+
"v8": "4.6"
|
1177
|
+
},
|
1178
|
+
"5.9.0": {
|
1179
|
+
"node_abi": 47,
|
1180
|
+
"v8": "4.6"
|
1141
1181
|
}
|
1142
1182
|
}
|