Comparing version 1.90.0 to 1.98.0
@@ -5,3 +5,3 @@ { | ||
"description": "Buckets is a complete, fully tested and documented data structure library written in pure JavaScript.", | ||
"version": "1.90.0", | ||
"version": "1.98.0", | ||
"author": "Mauricio Santos <mauriciosantoss@gmail.com>", | ||
@@ -31,19 +31,18 @@ "keywords": [ | ||
"dependencies": {}, | ||
"files": [ | ||
"buckets.js", | ||
"buckets.min.js" | ||
], | ||
"main": "buckets.js", | ||
"main": "dist/buckets.min.js", | ||
"scripts": { | ||
"test": "grunt test" | ||
}, | ||
"devDependencies": { | ||
"grunt": "^0.4.5", | ||
"grunt-bump": "^0.7.0", | ||
"grunt-contrib-concat": "^0.5.1", | ||
"grunt-contrib-jasmine": "^0.8.2", | ||
"grunt-contrib-uglify": "^0.8.0", | ||
"grunt-contrib-jasmine": "^0.9.2", | ||
"grunt-contrib-uglify": "^0.11.0", | ||
"grunt-jsbeautifier": "^0.2.10", | ||
"grunt-shell": "^1.1.2", | ||
"grunt-umd": "^2.3.3", | ||
"grunt-write-bower-json": "0.0.1", | ||
"grunt-umd": "^2.3.5", | ||
"jsdoc2": "^2.4.0", | ||
"load-grunt-tasks": "^3.1.0" | ||
"load-grunt-tasks": "^3.3.0" | ||
} | ||
} |
@@ -1,3 +0,6 @@ | ||
[Buckets](https://github.com/mauriciosantos/buckets/) | ||
==================== | ||
# [Buckets](https://github.com/mauriciosantos/buckets/) | ||
[![Build Status](https://travis-ci.org/mauriciosantos/Buckets-JS.svg?branch=master)](https://travis-ci.org/mauriciosantos/Buckets-JS) | ||
[![NPM Version](https://img.shields.io/npm/v/buckets-js.svg)](https://img.shields.io/npm/v/buckets-js.svg) | ||
**A JavaScript Data Structure Library** | ||
@@ -7,20 +10,18 @@ | ||
Included data structures | ||
--------------------- | ||
## Included data structures | ||
- [Linked List](https://rawgithub.com/mauriciosantos/buckets/master/doc/symbols/buckets.LinkedList.html) | ||
- [Dictionary](https://rawgithub.com/mauriciosantos/buckets/master/doc/symbols/buckets.Dictionary.html) | ||
- [Multi Dictionary](https://rawgithub.com/mauriciosantos/buckets/master/doc/symbols/buckets.MultiDictionary.html) | ||
- [Binary Search Tree](https://rawgithub.com/mauriciosantos/buckets/master/doc/symbols/buckets.BSTree.html) | ||
- [Stack](https://rawgithub.com/mauriciosantos/buckets/master/doc/symbols/buckets.Stack.html) | ||
- [Queue](https://rawgithub.com/mauriciosantos/buckets/master/doc/symbols/buckets.Queue.html) | ||
- [Set](https://rawgithub.com/mauriciosantos/buckets/master/doc/symbols/buckets.Set.html) | ||
- [Bag](https://rawgithub.com/mauriciosantos/buckets/master/doc/symbols/buckets.Bag.html) | ||
- [Binary Heap](https://rawgithub.com/mauriciosantos/buckets/master/doc/symbols/buckets.Heap.html) | ||
- [Priority Queue](https://rawgithub.com/mauriciosantos/buckets/master/doc/symbols/buckets.PriorityQueue.html) | ||
- [Linked List](http://mauriciosantos.github.io/Buckets-JS/symbols/buckets.LinkedList.html) | ||
- [Dictionary](http://mauriciosantos.github.io/Buckets-JS/symbols/buckets.Dictionary.html) | ||
- [Multi Dictionary](http://mauriciosantos.github.io/Buckets-JS/symbols/buckets.MultiDictionary.html) | ||
- [Binary Search Tree](http://mauriciosantos.github.io/Buckets-JS/symbols/buckets.BSTree.html) | ||
- [Stack](http://mauriciosantos.github.io/Buckets-JS/symbols/buckets.Stack.html) | ||
- [Queue](http://mauriciosantos.github.io/Buckets-JS/symbols/buckets.Queue.html) | ||
- [Set](http://mauriciosantos.github.io/Buckets-JS/symbols/buckets.Set.html) | ||
- [Bag](http://mauriciosantos.github.io/Buckets-JS/symbols/buckets.Bag.html) | ||
- [Binary Heap](http://mauriciosantos.github.io/Buckets-JS/symbols/buckets.Heap.html) | ||
- [Priority Queue](http://mauriciosantos.github.io/Buckets-JS/symbols/buckets.PriorityQueue.html) | ||
Buckets also includes several functions for manipulating [arrays](https://rawgithub.com/mauriciosantos/buckets/master/doc/symbols/buckets.arrays.html). | ||
Buckets also includes several functions for manipulating [arrays](http://mauriciosantos.github.io/Buckets-JS/symbols/buckets.arrays.html). | ||
Supported platforms | ||
-------------------- | ||
## Supported platforms | ||
@@ -32,9 +33,8 @@ - Every desktop and mobile browser (including IE6) | ||
Downloading Buckets | ||
-------------------- | ||
## Downloading Buckets | ||
Download directly | ||
- [buckets.js](https://rawgithub.com/mauriciosantos/buckets/master/buckets.js) (for development) or | ||
- [buckets.min.js](https://rawgithub.com/mauriciosantos/buckets/master/buckets.min.js) (for production) | ||
- [buckets.js](https://github.com/mauriciosantos/Buckets-JS/releases/download/1.90.0/buckets.js) (for development) or | ||
- [buckets.min.js](https://github.com/mauriciosantos/Buckets-JS/releases/download/1.90.0/buckets.min.js) (for production) | ||
@@ -60,3 +60,3 @@ Then, add it as a script tag to your page: | ||
require(["./bower/bucketsjs/buckets.js"], function(buckets) { | ||
var hm = new buckets.Dictionary() | ||
var hm = new buckets.Dictionary(); | ||
}); | ||
@@ -73,4 +73,3 @@ ``` | ||
Usage | ||
-------------------- | ||
## Usage | ||
@@ -85,12 +84,10 @@ ```javascript | ||
``` | ||
Read the [documentation](https://rawgithub.com/mauriciosantos/buckets/master/doc/index.html). | ||
Read the [documentation](http://mauriciosantos.github.io/Buckets-JS/). | ||
Building guide | ||
-------------------- | ||
## Building Buckets | ||
There's nothing else you need to use buckets. However, this [guide](./BUILD.md) may help you if you wish to contribute to the project or modify it. | ||
Support | ||
-------------------- | ||
## Support | ||
Mauricio Santos, [mauriciosantoss@gmail.com](mailto:mauriciosantoss@gmail.com) |
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
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
216180
22
4928
89
1