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,99 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"_from": "lodash._basetostring@^3.0.0",
|
3
|
-
"_id": "lodash._basetostring@3.0.1",
|
4
|
-
"_location": "/lodash._basetostring",
|
5
|
-
"_nodeVersion": "0.12.5",
|
6
|
-
"_npmUser": {
|
7
|
-
"email": "john.david.dalton@gmail.com",
|
8
|
-
"name": "jdalton"
|
9
|
-
},
|
10
|
-
"_npmVersion": "2.12.0",
|
11
|
-
"_phantomChildren": {},
|
12
|
-
"_requiredBy": [
|
13
|
-
"/lodash.padleft",
|
14
|
-
"/lodash.padright"
|
15
|
-
],
|
16
|
-
"_resolved": "https://registry.npmjs.org/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz",
|
17
|
-
"_shasum": "d1861d877f824a52f669832dcaf3ee15566a07d5",
|
18
|
-
"_shrinkwrap": null,
|
19
|
-
"author": {
|
20
|
-
"email": "john.david.dalton@gmail.com",
|
21
|
-
"name": "John-David Dalton",
|
22
|
-
"url": "http://allyoucanleet.com/"
|
23
|
-
},
|
24
|
-
"bugs": {
|
25
|
-
"url": "https://github.com/lodash/lodash/issues"
|
26
|
-
},
|
27
|
-
"contributors": [
|
28
|
-
{
|
29
|
-
"name": "John-David Dalton",
|
30
|
-
"email": "john.david.dalton@gmail.com",
|
31
|
-
"url": "http://allyoucanleet.com/"
|
32
|
-
},
|
33
|
-
{
|
34
|
-
"name": "Benjamin Tan",
|
35
|
-
"email": "demoneaux@gmail.com",
|
36
|
-
"url": "https://d10.github.io/"
|
37
|
-
},
|
38
|
-
{
|
39
|
-
"name": "Blaine Bublitz",
|
40
|
-
"email": "blaine@iceddev.com",
|
41
|
-
"url": "http://www.iceddev.com/"
|
42
|
-
},
|
43
|
-
{
|
44
|
-
"name": "Kit Cambridge",
|
45
|
-
"email": "github@kitcambridge.be",
|
46
|
-
"url": "http://kitcambridge.be/"
|
47
|
-
},
|
48
|
-
{
|
49
|
-
"name": "Mathias Bynens",
|
50
|
-
"email": "mathias@qiwi.be",
|
51
|
-
"url": "https://mathiasbynens.be/"
|
52
|
-
}
|
53
|
-
],
|
54
|
-
"dependencies": {},
|
55
|
-
"description": "The modern build of lodash’s internal `baseToString` as a module.",
|
56
|
-
"devDependencies": {},
|
57
|
-
"directories": {},
|
58
|
-
"dist": {
|
59
|
-
"shasum": "d1861d877f824a52f669832dcaf3ee15566a07d5",
|
60
|
-
"tarball": "http://registry.npmjs.org/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz"
|
61
|
-
},
|
62
|
-
"homepage": "https://lodash.com/",
|
63
|
-
"icon": "https://lodash.com/icon.svg",
|
64
|
-
"license": "MIT",
|
65
|
-
"maintainers": [
|
66
|
-
{
|
67
|
-
"name": "jdalton",
|
68
|
-
"email": "john.david.dalton@gmail.com"
|
69
|
-
},
|
70
|
-
{
|
71
|
-
"name": "d10",
|
72
|
-
"email": "demoneaux@gmail.com"
|
73
|
-
},
|
74
|
-
{
|
75
|
-
"name": "kitcambridge",
|
76
|
-
"email": "github@kitcambridge.be"
|
77
|
-
},
|
78
|
-
{
|
79
|
-
"name": "mathias",
|
80
|
-
"email": "mathias@qiwi.be"
|
81
|
-
},
|
82
|
-
{
|
83
|
-
"name": "phated",
|
84
|
-
"email": "blaine@iceddev.com"
|
85
|
-
}
|
86
|
-
],
|
87
|
-
"name": "lodash._basetostring",
|
88
|
-
"optionalDependencies": {},
|
89
|
-
"readme": "# lodash._basetostring v3.0.1\n\nThe [modern build](https://github.com/lodash/lodash/wiki/Build-Differences) of [lodash’s](https://lodash.com/) internal `baseToString` 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._basetostring\n```\n\nIn Node.js/io.js:\n\n```js\nvar baseToString = require('lodash._basetostring');\n```\n\nSee the [package source](https://github.com/lodash/lodash/blob/3.0.1-npm-packages/lodash._basetostring) for more details.\n",
|
90
|
-
"readmeFilename": "README.md",
|
91
|
-
"repository": {
|
92
|
-
"type": "git",
|
93
|
-
"url": "git+https://github.com/lodash/lodash.git"
|
94
|
-
},
|
95
|
-
"scripts": {
|
96
|
-
"test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\""
|
97
|
-
},
|
98
|
-
"version": "3.0.1"
|
99
|
-
}
|
@@ -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._createpadding v3.6.1
|
2
|
-
|
3
|
-
The [modern build](https://github.com/lodash/lodash/wiki/Build-Differences) of [lodash’s](https://lodash.com/) internal `createPadding` 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._createpadding
|
12
|
-
```
|
13
|
-
|
14
|
-
In Node.js/io.js:
|
15
|
-
|
16
|
-
```js
|
17
|
-
var createPadding = require('lodash._createpadding');
|
18
|
-
```
|
19
|
-
|
20
|
-
See the [package source](https://github.com/lodash/lodash/blob/3.6.1-npm-packages/lodash._createpadding) for more details.
|
@@ -1,37 +0,0 @@
|
|
1
|
-
/**
|
2
|
-
* lodash 3.6.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 repeat = require('lodash.repeat');
|
10
|
-
|
11
|
-
/* Native method references for those with the same name as other `lodash` methods. */
|
12
|
-
var nativeCeil = Math.ceil,
|
13
|
-
nativeIsFinite = global.isFinite;
|
14
|
-
|
15
|
-
/**
|
16
|
-
* Creates the padding required for `string` based on the given `length`.
|
17
|
-
* The `chars` string is truncated if the number of characters exceeds `length`.
|
18
|
-
*
|
19
|
-
* @private
|
20
|
-
* @param {string} string The string to create padding for.
|
21
|
-
* @param {number} [length=0] The padding length.
|
22
|
-
* @param {string} [chars=' '] The string used as padding.
|
23
|
-
* @returns {string} Returns the pad for `string`.
|
24
|
-
*/
|
25
|
-
function createPadding(string, length, chars) {
|
26
|
-
var strLength = string.length;
|
27
|
-
length = +length;
|
28
|
-
|
29
|
-
if (strLength >= length || !nativeIsFinite(length)) {
|
30
|
-
return '';
|
31
|
-
}
|
32
|
-
var padLength = length - strLength;
|
33
|
-
chars = chars == null ? ' ' : (chars + '');
|
34
|
-
return repeat(chars, nativeCeil(padLength / chars.length)).slice(0, padLength);
|
35
|
-
}
|
36
|
-
|
37
|
-
module.exports = createPadding;
|
@@ -1,101 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"_from": "lodash._createpadding@^3.0.0",
|
3
|
-
"_id": "lodash._createpadding@3.6.1",
|
4
|
-
"_location": "/lodash._createpadding",
|
5
|
-
"_nodeVersion": "0.12.5",
|
6
|
-
"_npmUser": {
|
7
|
-
"email": "john.david.dalton@gmail.com",
|
8
|
-
"name": "jdalton"
|
9
|
-
},
|
10
|
-
"_npmVersion": "2.12.0",
|
11
|
-
"_phantomChildren": {},
|
12
|
-
"_requiredBy": [
|
13
|
-
"/lodash.padleft",
|
14
|
-
"/lodash.padright"
|
15
|
-
],
|
16
|
-
"_resolved": "https://registry.npmjs.org/lodash._createpadding/-/lodash._createpadding-3.6.1.tgz",
|
17
|
-
"_shasum": "4907b438595adc54ee8935527a6c424c02c81a87",
|
18
|
-
"_shrinkwrap": null,
|
19
|
-
"author": {
|
20
|
-
"email": "john.david.dalton@gmail.com",
|
21
|
-
"name": "John-David Dalton",
|
22
|
-
"url": "http://allyoucanleet.com/"
|
23
|
-
},
|
24
|
-
"bugs": {
|
25
|
-
"url": "https://github.com/lodash/lodash/issues"
|
26
|
-
},
|
27
|
-
"contributors": [
|
28
|
-
{
|
29
|
-
"name": "John-David Dalton",
|
30
|
-
"email": "john.david.dalton@gmail.com",
|
31
|
-
"url": "http://allyoucanleet.com/"
|
32
|
-
},
|
33
|
-
{
|
34
|
-
"name": "Benjamin Tan",
|
35
|
-
"email": "demoneaux@gmail.com",
|
36
|
-
"url": "https://d10.github.io/"
|
37
|
-
},
|
38
|
-
{
|
39
|
-
"name": "Blaine Bublitz",
|
40
|
-
"email": "blaine@iceddev.com",
|
41
|
-
"url": "http://www.iceddev.com/"
|
42
|
-
},
|
43
|
-
{
|
44
|
-
"name": "Kit Cambridge",
|
45
|
-
"email": "github@kitcambridge.be",
|
46
|
-
"url": "http://kitcambridge.be/"
|
47
|
-
},
|
48
|
-
{
|
49
|
-
"name": "Mathias Bynens",
|
50
|
-
"email": "mathias@qiwi.be",
|
51
|
-
"url": "https://mathiasbynens.be/"
|
52
|
-
}
|
53
|
-
],
|
54
|
-
"dependencies": {
|
55
|
-
"lodash.repeat": "^3.0.0"
|
56
|
-
},
|
57
|
-
"description": "The modern build of lodash’s internal `createPadding` as a module.",
|
58
|
-
"devDependencies": {},
|
59
|
-
"directories": {},
|
60
|
-
"dist": {
|
61
|
-
"shasum": "4907b438595adc54ee8935527a6c424c02c81a87",
|
62
|
-
"tarball": "http://registry.npmjs.org/lodash._createpadding/-/lodash._createpadding-3.6.1.tgz"
|
63
|
-
},
|
64
|
-
"homepage": "https://lodash.com/",
|
65
|
-
"icon": "https://lodash.com/icon.svg",
|
66
|
-
"license": "MIT",
|
67
|
-
"maintainers": [
|
68
|
-
{
|
69
|
-
"name": "jdalton",
|
70
|
-
"email": "john.david.dalton@gmail.com"
|
71
|
-
},
|
72
|
-
{
|
73
|
-
"name": "d10",
|
74
|
-
"email": "demoneaux@gmail.com"
|
75
|
-
},
|
76
|
-
{
|
77
|
-
"name": "kitcambridge",
|
78
|
-
"email": "github@kitcambridge.be"
|
79
|
-
},
|
80
|
-
{
|
81
|
-
"name": "mathias",
|
82
|
-
"email": "mathias@qiwi.be"
|
83
|
-
},
|
84
|
-
{
|
85
|
-
"name": "phated",
|
86
|
-
"email": "blaine@iceddev.com"
|
87
|
-
}
|
88
|
-
],
|
89
|
-
"name": "lodash._createpadding",
|
90
|
-
"optionalDependencies": {},
|
91
|
-
"readme": "# lodash._createpadding v3.6.1\n\nThe [modern build](https://github.com/lodash/lodash/wiki/Build-Differences) of [lodash’s](https://lodash.com/) internal `createPadding` 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._createpadding\n```\n\nIn Node.js/io.js:\n\n```js\nvar createPadding = require('lodash._createpadding');\n```\n\nSee the [package source](https://github.com/lodash/lodash/blob/3.6.1-npm-packages/lodash._createpadding) for more details.\n",
|
92
|
-
"readmeFilename": "README.md",
|
93
|
-
"repository": {
|
94
|
-
"type": "git",
|
95
|
-
"url": "git+https://github.com/lodash/lodash.git"
|
96
|
-
},
|
97
|
-
"scripts": {
|
98
|
-
"test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\""
|
99
|
-
},
|
100
|
-
"version": "3.6.1"
|
101
|
-
}
|
@@ -1,22 +0,0 @@
|
|
1
|
-
Copyright 2012-2016 The Dojo Foundation <http://dojofoundation.org/>
|
2
|
-
Based on Underscore.js, copyright 2009-2016 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,18 +0,0 @@
|
|
1
|
-
# lodash._root v3.0.0
|
2
|
-
|
3
|
-
The internal [lodash](https://lodash.com/) function `root` exported as a [Node.js](https://nodejs.org/) module.
|
4
|
-
|
5
|
-
## Installation
|
6
|
-
|
7
|
-
Using npm:
|
8
|
-
```bash
|
9
|
-
$ {sudo -H} npm i -g npm
|
10
|
-
$ npm i --save lodash._root
|
11
|
-
```
|
12
|
-
|
13
|
-
In Node.js:
|
14
|
-
```js
|
15
|
-
var root = require('lodash._root');
|
16
|
-
```
|
17
|
-
|
18
|
-
See the [package source](https://github.com/lodash/lodash/blob/3.0.0-npm-packages/lodash._root) for more details.
|
@@ -1,53 +0,0 @@
|
|
1
|
-
/**
|
2
|
-
* lodash 3.0.0 (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 to determine if values are of the language type `Object`. */
|
11
|
-
var objectTypes = {
|
12
|
-
'function': true,
|
13
|
-
'object': true
|
14
|
-
};
|
15
|
-
|
16
|
-
/** Detect free variable `exports`. */
|
17
|
-
var freeExports = (objectTypes[typeof exports] && exports && !exports.nodeType) ? exports : null;
|
18
|
-
|
19
|
-
/** Detect free variable `module`. */
|
20
|
-
var freeModule = (objectTypes[typeof module] && module && !module.nodeType) ? module : null;
|
21
|
-
|
22
|
-
/** Detect free variable `global` from Node.js. */
|
23
|
-
var freeGlobal = checkGlobal(freeExports && freeModule && typeof global == 'object' && global);
|
24
|
-
|
25
|
-
/** Detect free variable `self`. */
|
26
|
-
var freeSelf = checkGlobal(objectTypes[typeof self] && self);
|
27
|
-
|
28
|
-
/** Detect free variable `window`. */
|
29
|
-
var freeWindow = checkGlobal(objectTypes[typeof window] && window);
|
30
|
-
|
31
|
-
/** Detect `this` as the global object. */
|
32
|
-
var thisGlobal = checkGlobal(objectTypes[typeof this] && this);
|
33
|
-
|
34
|
-
/**
|
35
|
-
* Used as a reference to the global object.
|
36
|
-
*
|
37
|
-
* The `this` value is used if it's the global object to avoid Greasemonkey's
|
38
|
-
* restricted `window` object, otherwise the `window` object is used.
|
39
|
-
*/
|
40
|
-
var root = freeGlobal || ((freeWindow !== (thisGlobal && thisGlobal.window)) && freeWindow) || freeSelf || thisGlobal || Function('return this')();
|
41
|
-
|
42
|
-
/**
|
43
|
-
* Checks if `value` is a global object.
|
44
|
-
*
|
45
|
-
* @private
|
46
|
-
* @param {*} value The value to check.
|
47
|
-
* @returns {null|Object} Returns `value` if it's a global object, else `null`.
|
48
|
-
*/
|
49
|
-
function checkGlobal(value) {
|
50
|
-
return (value && value.Object === Object) ? value : null;
|
51
|
-
}
|
52
|
-
|
53
|
-
module.exports = root;
|
@@ -1,77 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"_from": "lodash._root@^3.0.0",
|
3
|
-
"_id": "lodash._root@3.0.0",
|
4
|
-
"_location": "/lodash._root",
|
5
|
-
"_nodeVersion": "5.5.0",
|
6
|
-
"_npmOperationalInternal": {
|
7
|
-
"host": "packages-9-west.internal.npmjs.com",
|
8
|
-
"tmp": "tmp/lodash._root-3.0.0.tgz_1454898276727_0.4872864377684891"
|
9
|
-
},
|
10
|
-
"_npmUser": {
|
11
|
-
"email": "john.david.dalton@gmail.com",
|
12
|
-
"name": "jdalton"
|
13
|
-
},
|
14
|
-
"_npmVersion": "2.14.18",
|
15
|
-
"_phantomChildren": {},
|
16
|
-
"_requiredBy": [
|
17
|
-
"/lodash.pad",
|
18
|
-
"/lodash.repeat"
|
19
|
-
],
|
20
|
-
"_resolved": "https://registry.npmjs.org/lodash._root/-/lodash._root-3.0.0.tgz",
|
21
|
-
"_shasum": "fe2fba5117f3e12c3cf7e13b3993b20f745727b7",
|
22
|
-
"_shrinkwrap": null,
|
23
|
-
"author": {
|
24
|
-
"email": "john.david.dalton@gmail.com",
|
25
|
-
"name": "John-David Dalton",
|
26
|
-
"url": "http://allyoucanleet.com/"
|
27
|
-
},
|
28
|
-
"bugs": {
|
29
|
-
"url": "https://github.com/lodash/lodash/issues"
|
30
|
-
},
|
31
|
-
"contributors": [
|
32
|
-
{
|
33
|
-
"name": "John-David Dalton",
|
34
|
-
"email": "john.david.dalton@gmail.com",
|
35
|
-
"url": "http://allyoucanleet.com/"
|
36
|
-
},
|
37
|
-
{
|
38
|
-
"name": "Blaine Bublitz",
|
39
|
-
"email": "blaine@iceddev.com",
|
40
|
-
"url": "https://github.com/phated"
|
41
|
-
},
|
42
|
-
{
|
43
|
-
"name": "Mathias Bynens",
|
44
|
-
"email": "mathias@qiwi.be",
|
45
|
-
"url": "https://mathiasbynens.be/"
|
46
|
-
}
|
47
|
-
],
|
48
|
-
"dependencies": {},
|
49
|
-
"description": "The internal lodash function `root` exported as a module.",
|
50
|
-
"devDependencies": {},
|
51
|
-
"directories": {},
|
52
|
-
"dist": {
|
53
|
-
"shasum": "fe2fba5117f3e12c3cf7e13b3993b20f745727b7",
|
54
|
-
"tarball": "http://registry.npmjs.org/lodash._root/-/lodash._root-3.0.0.tgz"
|
55
|
-
},
|
56
|
-
"homepage": "https://lodash.com/",
|
57
|
-
"icon": "https://lodash.com/icon.svg",
|
58
|
-
"license": "MIT",
|
59
|
-
"maintainers": [
|
60
|
-
{
|
61
|
-
"name": "jdalton",
|
62
|
-
"email": "john.david.dalton@gmail.com"
|
63
|
-
}
|
64
|
-
],
|
65
|
-
"name": "lodash._root",
|
66
|
-
"optionalDependencies": {},
|
67
|
-
"readme": "# lodash._root v3.0.0\n\nThe internal [lodash](https://lodash.com/) function `root` 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._root\n```\n\nIn Node.js:\n```js\nvar root = require('lodash._root');\n```\n\nSee the [package source](https://github.com/lodash/lodash/blob/3.0.0-npm-packages/lodash._root) for more details.\n",
|
68
|
-
"readmeFilename": "README.md",
|
69
|
-
"repository": {
|
70
|
-
"type": "git",
|
71
|
-
"url": "git+https://github.com/lodash/lodash.git"
|
72
|
-
},
|
73
|
-
"scripts": {
|
74
|
-
"test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\""
|
75
|
-
},
|
76
|
-
"version": "3.0.0"
|
77
|
-
}
|
@@ -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.padleft v3.1.1
|
2
|
-
|
3
|
-
The [modern build](https://github.com/lodash/lodash/wiki/Build-Differences) of [lodash’s](https://lodash.com/) `_.padLeft` 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.padleft
|
12
|
-
```
|
13
|
-
|
14
|
-
In Node.js/io.js:
|
15
|
-
|
16
|
-
```js
|
17
|
-
var padLeft = require('lodash.padleft');
|
18
|
-
```
|
19
|
-
|
20
|
-
See the [documentation](https://lodash.com/docs#padLeft) or [package source](https://github.com/lodash/lodash/blob/3.1.1-npm-packages/lodash.padleft) 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 left 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
|
-
* _.padLeft('abc', 6);
|
40
|
-
* // => ' abc'
|
41
|
-
*
|
42
|
-
* _.padLeft('abc', 6, '_-');
|
43
|
-
* // => '_-_abc'
|
44
|
-
*
|
45
|
-
* _.padLeft('abc', 3);
|
46
|
-
* // => 'abc'
|
47
|
-
*/
|
48
|
-
var padLeft = createPadDir();
|
49
|
-
|
50
|
-
module.exports = padLeft;
|
@@ -1,107 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"_from": "lodash.padleft@^3.0.0",
|
3
|
-
"_id": "lodash.padleft@3.1.1",
|
4
|
-
"_location": "/lodash.padleft",
|
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.padleft/-/lodash.padleft-3.1.1.tgz",
|
16
|
-
"_shasum": "150151f1e0245edba15d50af2d71f1d5cff46530",
|
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 `_.padLeft` as a module.",
|
58
|
-
"devDependencies": {},
|
59
|
-
"directories": {},
|
60
|
-
"dist": {
|
61
|
-
"shasum": "150151f1e0245edba15d50af2d71f1d5cff46530",
|
62
|
-
"tarball": "http://registry.npmjs.org/lodash.padleft/-/lodash.padleft-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.padleft",
|
96
|
-
"optionalDependencies": {},
|
97
|
-
"readme": "# lodash.padleft v3.1.1\n\nThe [modern build](https://github.com/lodash/lodash/wiki/Build-Differences) of [lodash’s](https://lodash.com/) `_.padLeft` 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.padleft\n```\n\nIn Node.js/io.js:\n\n```js\nvar padLeft = require('lodash.padleft');\n```\n\nSee the [documentation](https://lodash.com/docs#padLeft) or [package source](https://github.com/lodash/lodash/blob/3.1.1-npm-packages/lodash.padleft) 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
|
-
}
|