collectionize
Advanced tools
Comparing version 1.0.4 to 1.1.0
@@ -10,4 +10,4 @@ { | ||
"devDependencies": { | ||
"lodash": "3.10.1" | ||
"lodash": "4.17.10" | ||
} | ||
} |
@@ -5,5 +5,5 @@ (function () { | ||
'at', 'every', 'filter', 'find', 'findIndex', | ||
'findLastIndex', 'first', 'last', 'map', 'max', 'min', | ||
'pluck', 'reduce', 'reduceRight', 'reject', 'sample', | ||
'size', 'shuffle', 'some', 'sortBy', 'where' | ||
'findLastIndex', 'head', 'last', 'map', 'max', 'min', | ||
'maxBy', 'minBy', 'reduce', 'reduceRight', 'reject', | ||
'sample', 'size', 'shuffle', 'some', 'sortBy' | ||
]; | ||
@@ -84,2 +84,4 @@ | ||
self.first = self.head; | ||
self.on = function (eventNames, fn) { | ||
@@ -86,0 +88,0 @@ nativeEach(eventNames.split(' '), function (eventName) { |
{ | ||
"name": "collectionize", | ||
"description": "A lightweight JS model/collection library.", | ||
"version": "1.0.4", | ||
"version": "1.1.0", | ||
"repository": "https://github.com/andrewchilds/collectionize.git", | ||
@@ -12,13 +12,29 @@ "author": { | ||
"scripts": { | ||
"test": "./node_modules/jasmine-node/bin/jasmine-node --coffee --color --verbose ./spec" | ||
"test": "yarn lint && ./node_modules/jasmine-node/bin/jasmine-node --coffee --color --verbose ./spec", | ||
"lint": "./node_modules/jshint/bin/jshint --verbose *.js" | ||
}, | ||
"jshintConfig": { | ||
"browser": true, | ||
"curly": true, | ||
"eqeqeq": true, | ||
"evil": true, | ||
"forin": true, | ||
"indent": 2, | ||
"jquery": true, | ||
"node": true, | ||
"quotmark": "single", | ||
"undef": true, | ||
"unused": false, | ||
"trailing": true, | ||
"globals": { | ||
"_": true | ||
} | ||
}, | ||
"devDependencies": { | ||
"jasmine-node": "1.13.1", | ||
"grunt": "0.4.5", | ||
"grunt-contrib-jshint": "0.10.0", | ||
"grunt-contrib-watch": "0.6.1" | ||
"jshint": "^2.9.6", | ||
"jasmine-node": "^1.16.2" | ||
}, | ||
"dependencies": { | ||
"lodash": "3.10.1" | ||
"lodash": "~4.17.10" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
44946
2
221
+ Addedlodash@4.17.21(transitive)
- Removedlodash@3.10.1(transitive)
Updatedlodash@~4.17.10