mirror of
https://github.com/atlanticbiomedical/biomedjs.git
synced 2025-07-02 00:47:26 -04:00
58 lines
10 KiB
JSON
58 lines
10 KiB
JSON
![]() |
{
|
|||
|
"name": "lodash",
|
|||
|
"version": "3.7.0",
|
|||
|
"description": "The modern build of lodash modular utilities.",
|
|||
|
"homepage": "https://lodash.com/",
|
|||
|
"icon": "https://lodash.com/icon.svg",
|
|||
|
"license": "MIT",
|
|||
|
"main": "index.js",
|
|||
|
"keywords": "modules, stdlib, util",
|
|||
|
"author": {
|
|||
|
"name": "John-David Dalton",
|
|||
|
"email": "john.david.dalton@gmail.com",
|
|||
|
"url": "http://allyoucanleet.com/"
|
|||
|
},
|
|||
|
"contributors": [
|
|||
|
{
|
|||
|
"name": "John-David Dalton",
|
|||
|
"email": "john.david.dalton@gmail.com",
|
|||
|
"url": "http://allyoucanleet.com/"
|
|||
|
},
|
|||
|
{
|
|||
|
"name": "Benjamin Tan",
|
|||
|
"email": "demoneaux@gmail.com",
|
|||
|
"url": "https://d10.github.io/"
|
|||
|
},
|
|||
|
{
|
|||
|
"name": "Blaine Bublitz",
|
|||
|
"email": "blaine@iceddev.com",
|
|||
|
"url": "http://www.iceddev.com/"
|
|||
|
},
|
|||
|
{
|
|||
|
"name": "Kit Cambridge",
|
|||
|
"email": "github@kitcambridge.be",
|
|||
|
"url": "http://kitcambridge.be/"
|
|||
|
},
|
|||
|
{
|
|||
|
"name": "Mathias Bynens",
|
|||
|
"email": "mathias@qiwi.be",
|
|||
|
"url": "https://mathiasbynens.be/"
|
|||
|
}
|
|||
|
],
|
|||
|
"repository": {
|
|||
|
"type": "git",
|
|||
|
"url": "lodash/lodash"
|
|||
|
},
|
|||
|
"scripts": {
|
|||
|
"test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\""
|
|||
|
},
|
|||
|
"readme": "# lodash v3.7.0\n\nThe [modern build](https://github.com/lodash/lodash/wiki/Build-Differences) of [lodash](https://lodash.com/) exported as [Node.js](http://nodejs.org/)/[io.js](https://iojs.org/) modules.\n\nGenerated using [lodash-cli](https://www.npmjs.com/package/lodash-cli):\n```bash\n$ lodash modularize modern exports=node -o ./\n$ lodash modern -d -o ./index.js\n```\n\n## Installation\n\nUsing npm:\n\n```bash\n$ {sudo -H} npm i -g npm\n$ npm i --save lodash\n```\n\nIn Node.js/io.js:\n\n```js\n// load the modern build\nvar _ = require('lodash');\n// or a method category\nvar array = require('lodash/array');\n// or a method (great for smaller builds with browserify/webpack)\nvar chunk = require('lodash/array/chunk');\n```\n\nSee the [package source](https://github.com/lodash/lodash/tree/3.7.0-npm) for more details.\n\n**Note:**<br>\nDon’t assign values to the [special variable](http://nodejs.org/api/repl.html#repl_repl_features) `_` when in the REPL.<br>\nInstall [n_](https://www.npmjs.com/package/n_) for a REPL that includes lodash by default.\n\n## Module formats\n\nlodash is also available in a variety of other builds & module formats.\n\n * npm packages for [modern](https://www.npmjs.com/package/lodash), [compatibility](https://www.npmjs.com/package/lodash-compat), & [per method](https://www.npmjs.com/browse/keyword/lodash-modularized) builds\n * AMD modules for [modern](https://github.com/lodash/lodash/tree/3.7.0-amd) & [compatibility](https://github.com/lodash/lodash-compat/tree/3.7.0-amd) builds\n * ES modules for the [modern](https://github.com/lodash/lodash/tree/3.7.0-es) build\n\n## Further Reading\n\n * [API Documentation](https://lodash.com/docs)\n * [Build Differences](https://github.com/lodash/lodash/wiki/Build-Differences)\n * [Changelog](https://github.com/lodash/lodash/wiki/Changelog)\n * [Release Notes](https://github.com/lodash/lodash/releases)\n * [Roadmap](https://github.com/lodash/lodash/wiki/Roadmap)\n * [More Resources](https://github.com/lodash/lodash/wiki/Resources)\n\n## Features\n\n * ~100% [code coverage](https://coveralls.io/r/lodash)\n * Follows [semantic versioning](http://semver.org/) for releases\n * [Lazily evaluated](http://filimanjaro.com/blog/2014/introducing-lazy-evaluation/) chaining\n * [_(…)](https://lodash.com/docs#_) supports intuitive chaining\n * [_.add](https://lodash.com/docs#add) for mathematical composition\n * [_.ary](https://lodash.com/docs#ary) & [_.rearg](https://lodash.com/docs#rearg) to change function argument limits & order\n * [_.at](https://lodash.com/docs#at) for cherry-picking collection values\n * [_.attempt](https://lodash.com/docs#attempt) to execute functions which may error without a try-catch\n * [_.before](https://lodash.com/docs#before) to complement [_.after](https://lodash.com/docs#after)\n * [_.bindKey](https://lodash.com/docs#bindKey) for binding [*“lazy”*](http://michaux.ca/articles/lazy-function-definition-pattern) defined methods\n * [_.chunk](https://lodash.com/docs#chunk) for splitting an array into chunks of a given size\n * [_.clone](https://lodash.com/docs#clone) supports shallow cloning of `Date` & `RegExp` objects\n * [_.cloneDeep](https://lodash.com/docs#cloneDeep) for deep cloning arrays & objects\n * [_.create](https://lodash.com/docs#create) for easier object inheritance\n * [_.curry](https://lodash.com/docs#curry) & [_.curryRight](https://lodash.com/docs#curryRight) for creating [curried](http://hughfdjackson.com/javascript/why-curry-helps/) functions\n * [_.debounce](https://lodash.com/docs#debounce) & [_.throttle](https://lodash.com/docs#throttle) are cancelable & accept options for more control\n * [_.fill](https://lodash.com/docs#fill) to fill arrays with values\n * [_.findKey](https://lodash.com/docs#findKey) for finding keys\n * [_.flow](https://lodash.com/docs#flow) to complement [_.flowRight](https://lodash.com/docs#flowRight) (a.k.a `_.compose`)\n * [_.forEach](https://lodash.com/docs#forEach) supports exiting early\n * [_.forIn](https://lodash.com/docs#forIn) for iterating all enumerable pro
|
|||
|
"readmeFilename": "README.md",
|
|||
|
"_id": "lodash@3.7.0",
|
|||
|
"dist": {
|
|||
|
"shasum": "26bce2486cb78d1986d8812e3a62c125ad1d2e73"
|
|||
|
},
|
|||
|
"_from": "lodash@",
|
|||
|
"_resolved": "https://registry.npmjs.org/lodash/-/lodash-3.7.0.tgz"
|
|||
|
}
|