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
@@ -1,22 +0,0 @@
|
|
1
|
-
Copyright 2012-2015 The Dojo Foundation <http://dojofoundation.org/>
|
2
|
-
Based on Underscore.js, copyright 2009-2015 Jeremy Ashkenas,
|
3
|
-
DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/>
|
4
|
-
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
-
a copy of this software and associated documentation files (the
|
7
|
-
"Software"), to deal in the Software without restriction, including
|
8
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
-
permit persons to whom the Software is furnished to do so, subject to
|
11
|
-
the following conditions:
|
12
|
-
|
13
|
-
The above copyright notice and this permission notice shall be
|
14
|
-
included in all copies or substantial portions of the Software.
|
15
|
-
|
16
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
@@ -1,20 +0,0 @@
|
|
1
|
-
# lodash.padright v3.1.1
|
2
|
-
|
3
|
-
The [modern build](https://github.com/lodash/lodash/wiki/Build-Differences) of [lodash’s](https://lodash.com/) `_.padRight` exported as a [Node.js](http://nodejs.org/)/[io.js](https://iojs.org/) module.
|
4
|
-
|
5
|
-
## Installation
|
6
|
-
|
7
|
-
Using npm:
|
8
|
-
|
9
|
-
```bash
|
10
|
-
$ {sudo -H} npm i -g npm
|
11
|
-
$ npm i --save lodash.padright
|
12
|
-
```
|
13
|
-
|
14
|
-
In Node.js/io.js:
|
15
|
-
|
16
|
-
```js
|
17
|
-
var padRight = require('lodash.padright');
|
18
|
-
```
|
19
|
-
|
20
|
-
See the [documentation](https://lodash.com/docs#padRight) or [package source](https://github.com/lodash/lodash/blob/3.1.1-npm-packages/lodash.padright) for more details.
|
@@ -1,50 +0,0 @@
|
|
1
|
-
/**
|
2
|
-
* lodash 3.1.1 (Custom Build) <https://lodash.com/>
|
3
|
-
* Build: `lodash modern modularize exports="npm" -o ./`
|
4
|
-
* Copyright 2012-2015 The Dojo Foundation <http://dojofoundation.org/>
|
5
|
-
* Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
|
6
|
-
* Copyright 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
|
7
|
-
* Available under MIT license <https://lodash.com/license>
|
8
|
-
*/
|
9
|
-
var baseToString = require('lodash._basetostring'),
|
10
|
-
createPadding = require('lodash._createpadding');
|
11
|
-
|
12
|
-
/**
|
13
|
-
* Creates a function for `_.padLeft` or `_.padRight`.
|
14
|
-
*
|
15
|
-
* @private
|
16
|
-
* @param {boolean} [fromRight] Specify padding from the right.
|
17
|
-
* @returns {Function} Returns the new pad function.
|
18
|
-
*/
|
19
|
-
function createPadDir(fromRight) {
|
20
|
-
return function(string, length, chars) {
|
21
|
-
string = baseToString(string);
|
22
|
-
return (fromRight ? string : '') + createPadding(string, length, chars) + (fromRight ? '' : string);
|
23
|
-
};
|
24
|
-
}
|
25
|
-
|
26
|
-
/**
|
27
|
-
* Pads `string` on the right side if it is shorter than `length`. Padding
|
28
|
-
* characters are truncated if they exceed `length`.
|
29
|
-
*
|
30
|
-
* @static
|
31
|
-
* @memberOf _
|
32
|
-
* @category String
|
33
|
-
* @param {string} [string=''] The string to pad.
|
34
|
-
* @param {number} [length=0] The padding length.
|
35
|
-
* @param {string} [chars=' '] The string used as padding.
|
36
|
-
* @returns {string} Returns the padded string.
|
37
|
-
* @example
|
38
|
-
*
|
39
|
-
* _.padRight('abc', 6);
|
40
|
-
* // => 'abc '
|
41
|
-
*
|
42
|
-
* _.padRight('abc', 6, '_-');
|
43
|
-
* // => 'abc_-_'
|
44
|
-
*
|
45
|
-
* _.padRight('abc', 3);
|
46
|
-
* // => 'abc'
|
47
|
-
*/
|
48
|
-
var padRight = createPadDir(true);
|
49
|
-
|
50
|
-
module.exports = padRight;
|
@@ -1,107 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"_from": "lodash.padright@^3.0.0",
|
3
|
-
"_id": "lodash.padright@3.1.1",
|
4
|
-
"_location": "/lodash.padright",
|
5
|
-
"_nodeVersion": "0.12.2",
|
6
|
-
"_npmUser": {
|
7
|
-
"email": "john.david.dalton@gmail.com",
|
8
|
-
"name": "jdalton"
|
9
|
-
},
|
10
|
-
"_npmVersion": "2.9.0",
|
11
|
-
"_phantomChildren": {},
|
12
|
-
"_requiredBy": [
|
13
|
-
"/gauge"
|
14
|
-
],
|
15
|
-
"_resolved": "https://registry.npmjs.org/lodash.padright/-/lodash.padright-3.1.1.tgz",
|
16
|
-
"_shasum": "79f7770baaa39738c040aeb5465e8d88f2aacec0",
|
17
|
-
"_shrinkwrap": null,
|
18
|
-
"author": {
|
19
|
-
"email": "john.david.dalton@gmail.com",
|
20
|
-
"name": "John-David Dalton",
|
21
|
-
"url": "http://allyoucanleet.com/"
|
22
|
-
},
|
23
|
-
"bugs": {
|
24
|
-
"url": "https://github.com/lodash/lodash/issues"
|
25
|
-
},
|
26
|
-
"contributors": [
|
27
|
-
{
|
28
|
-
"name": "John-David Dalton",
|
29
|
-
"email": "john.david.dalton@gmail.com",
|
30
|
-
"url": "http://allyoucanleet.com/"
|
31
|
-
},
|
32
|
-
{
|
33
|
-
"name": "Benjamin Tan",
|
34
|
-
"email": "demoneaux@gmail.com",
|
35
|
-
"url": "https://d10.github.io/"
|
36
|
-
},
|
37
|
-
{
|
38
|
-
"name": "Blaine Bublitz",
|
39
|
-
"email": "blaine@iceddev.com",
|
40
|
-
"url": "http://www.iceddev.com/"
|
41
|
-
},
|
42
|
-
{
|
43
|
-
"name": "Kit Cambridge",
|
44
|
-
"email": "github@kitcambridge.be",
|
45
|
-
"url": "http://kitcambridge.be/"
|
46
|
-
},
|
47
|
-
{
|
48
|
-
"name": "Mathias Bynens",
|
49
|
-
"email": "mathias@qiwi.be",
|
50
|
-
"url": "https://mathiasbynens.be/"
|
51
|
-
}
|
52
|
-
],
|
53
|
-
"dependencies": {
|
54
|
-
"lodash._basetostring": "^3.0.0",
|
55
|
-
"lodash._createpadding": "^3.0.0"
|
56
|
-
},
|
57
|
-
"description": "The modern build of lodash’s `_.padRight` as a module.",
|
58
|
-
"devDependencies": {},
|
59
|
-
"directories": {},
|
60
|
-
"dist": {
|
61
|
-
"shasum": "79f7770baaa39738c040aeb5465e8d88f2aacec0",
|
62
|
-
"tarball": "http://registry.npmjs.org/lodash.padright/-/lodash.padright-3.1.1.tgz"
|
63
|
-
},
|
64
|
-
"homepage": "https://lodash.com/",
|
65
|
-
"icon": "https://lodash.com/icon.svg",
|
66
|
-
"keywords": [
|
67
|
-
"lodash",
|
68
|
-
"lodash-modularized",
|
69
|
-
"stdlib",
|
70
|
-
"util"
|
71
|
-
],
|
72
|
-
"license": "MIT",
|
73
|
-
"maintainers": [
|
74
|
-
{
|
75
|
-
"name": "jdalton",
|
76
|
-
"email": "john.david.dalton@gmail.com"
|
77
|
-
},
|
78
|
-
{
|
79
|
-
"name": "d10",
|
80
|
-
"email": "demoneaux@gmail.com"
|
81
|
-
},
|
82
|
-
{
|
83
|
-
"name": "kitcambridge",
|
84
|
-
"email": "github@kitcambridge.be"
|
85
|
-
},
|
86
|
-
{
|
87
|
-
"name": "mathias",
|
88
|
-
"email": "mathias@qiwi.be"
|
89
|
-
},
|
90
|
-
{
|
91
|
-
"name": "phated",
|
92
|
-
"email": "blaine@iceddev.com"
|
93
|
-
}
|
94
|
-
],
|
95
|
-
"name": "lodash.padright",
|
96
|
-
"optionalDependencies": {},
|
97
|
-
"readme": "# lodash.padright v3.1.1\n\nThe [modern build](https://github.com/lodash/lodash/wiki/Build-Differences) of [lodash’s](https://lodash.com/) `_.padRight` exported as a [Node.js](http://nodejs.org/)/[io.js](https://iojs.org/) module.\n\n## Installation\n\nUsing npm:\n\n```bash\n$ {sudo -H} npm i -g npm\n$ npm i --save lodash.padright\n```\n\nIn Node.js/io.js:\n\n```js\nvar padRight = require('lodash.padright');\n```\n\nSee the [documentation](https://lodash.com/docs#padRight) or [package source](https://github.com/lodash/lodash/blob/3.1.1-npm-packages/lodash.padright) for more details.\n",
|
98
|
-
"readmeFilename": "README.md",
|
99
|
-
"repository": {
|
100
|
-
"type": "git",
|
101
|
-
"url": "git+https://github.com/lodash/lodash.git"
|
102
|
-
},
|
103
|
-
"scripts": {
|
104
|
-
"test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\""
|
105
|
-
},
|
106
|
-
"version": "3.1.1"
|
107
|
-
}
|