...**/!(*.map|*.min.js)Size
Gzip
Dependencies
Publish
Install
@@ -1,19 +1,11 @@ | ||
| 1 | 1 | { |
| 2 | 2 | "name": "lodash", |
| 3 | "version": "1.3.1", | |
| 3 | "version": "2.0.0", | |
| 4 | 4 | "description": "A utility library delivering consistency, customization, performance, and extras.", |
| 5 | 5 | "homepage": "http://lodash.com/", |
| 6 | 6 | "license": "MIT", |
| 7 | "main": "./dist/lodash.js", | |
| 8 | "keywords": [ | |
| 9 | "browser", | |
| 10 | "client", | |
| 11 | "functional", | |
| 12 | "performance", | |
| 13 | "server", | |
| 14 | "speed", | |
| 15 | "util" | |
| 16 | ], | |
| 7 | "main": "dist/lodash.js", | |
| 8 | "keywords": ["amd", "browser", "client", "customize", "functional", "performance", "server", "speed", "util"], | |
| 17 | 9 | "author": "John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/)", |
| 18 | 10 | "contributors": [ |
| 19 | 11 | "John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/)", |
@@ -21,19 +13,21 @@ | ||
| 21 | 13 | "Kit Cambridge <github@kitcambridge.be> (http://kitcambridge.be/)", |
| 22 | 14 | "Mathias Bynens <mathias@qiwi.be> (http://mathiasbynens.be/)" |
| 23 | 15 | ], |
| 24 | "bugs": { | |
| 25 | "url": "https://github.com/lodash/lodash/issues" | |
| 26 | }, | |
| 27 | "repository": { | |
| 28 | "type": "git", | |
| 29 | "url": "https://github.com/lodash/lodash.git" | |
| 30 | }, | |
| 31 | "engines": [ | |
| 32 | "node", | |
| 33 | "rhino" | |
| 16 | "bugs": "https://github.com/lodash/lodash/issues", | |
| 17 | "repository": { "type": "git", "url": "https://github.com/lodash/lodash.git" }, | |
| 18 | "engines": ["node", "rhino"], | |
| 19 | "files": [ | |
| 20 | "LICENSE.txt", | |
| 21 | "lodash.js", | |
| 22 | "dist/lodash.js", | |
| 23 | "dist/lodash.min.js", | |
| 24 | "dist/lodash.compat.js", | |
| 25 | "dist/lodash.compat.min.js", | |
| 26 | "dist/lodash.underscore.js", | |
| 27 | "dist/lodash.underscore.min.js" | |
| 34 | 28 | ], |
| 35 | 29 | "jam": { |
| 36 | "main": "./dist/lodash.compat.js" | |
| 30 | "main": "dist/lodash.compat.js" | |
| 37 | 31 | }, |
| 38 | 32 | "volo": { |
| 39 | 33 | "type": "directory", |
@@ -42,10 +36,8 @@ | ||
| 42 | 36 | "*.custom.*", |
| 43 | 37 | "*.min.*", |
| 44 | 38 | "*.template.*", |
| 45 | "*.d.ts", | |
| 46 | 39 | "*.map", |
| 47 | 40 | "*.md", |
| 48 | "*.txt", | |
| 49 | 41 | "lodash.js", |
| 50 | 42 | "index.js", |
| 51 | 43 | "bower.json", |
@@ -0,0 +1,22 @@ | ||
| 1 | Copyright 2012-2013 The Dojo Foundation <http://dojofoundation.org/> | |
| 2 | Based on Underscore.js 1.5.2, copyright 2009-2013 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. | |
Publish
Install