Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

estoolbox

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

estoolbox - npm Package Compare versions

Comparing version 0.0.5 to 0.1.0

src/gulp/karma.config.js

7

CHANGELOG.md

@@ -6,3 +6,3 @@

## In Development
## 0.1.0

@@ -17,1 +17,6 @@ ### Features and Improvements

* Addition of `ESToolbox/Affix` component extracted from existing project.
* Addition of Gulp based development workflow.
## Bug Fixes
* Fixed ScrollTop issue in Firefox.

2

CONTRIBUTING.md

@@ -8,3 +8,3 @@

* [Daniel Tedman](http://danieltedman.com)
* [Daniel Tedman](https://danieltedman.com)

@@ -11,0 +11,0 @@ ## Dependencies

MIT License
Copyright © 2016 [Daniel Tedman](http://danieltedman.com/)
Copyright © 2017 [Daniel Tedman](https://danieltedman.com/)

@@ -6,0 +6,0 @@ Permission is hereby granted, free of charge, to any person obtaining a copy

{
"name": "estoolbox",
"description": "A collection of libraries intended to augment the development of ES2015 targeted applications.",
"version": "0.0.5",
"main": "./src/main.js",
"version": "0.1.0",
"main": "./src/js/main.js",
"scripts": {
"test": "npm run test:lint && npm run test:unit",
"test:lint": "eslint --config=\"./.eslintrc.yml\" src/ spec/ && sass-lint --verbose -c .sass-lint.yml",
"test:unit": "karma start"
"test": "gulp test",
"test:lint": "gulp test:lint",
"test:unit": "gulp test:unit"
},
"contributors": [
"Daniel Tedman (http://danieltedman.com)"
"Daniel Tedman (https://danieltedman.com)"
],

@@ -17,20 +17,23 @@ "license": "MIT",

"devDependencies": {
"babel-core": "^6.17.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.16.0",
"eslint": "^3.7.1",
"eslint-config-defaults": "^9.0.0",
"jasmine": "^2.5.2",
"jasmine-core": "^2.5.2",
"karma": "^1.3.0",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.2",
"karma-webpack": "^1.8.0",
"phantom-jasmine": "^0.3.0",
"sass-lint": "^1.9.1",
"webpack": "^1.13.2"
"babel-core": "6.17.0",
"babel-loader": "6.2.5",
"babel-preset-es2015": "6.16.0",
"eslint": "3.7.1",
"eslint-config-defaults": "9.0.0",
"gulp": "3.9.1",
"gulp-eslint": "3.0.1",
"gulp-sass-lint": "1.3.2",
"jasmine": "2.5.2",
"jasmine-core": "2.5.2",
"karma": "1.3.0",
"karma-jasmine": "1.0.2",
"karma-phantomjs-launcher": "1.0.2",
"karma-webpack": "1.8.0",
"phantom-jasmine": "0.3.0",
"sass-lint": "1.9.1",
"webpack": "1.13.2"
},
"dependencies": {
"jquery": "^3.1.1"
"jquery": "3.1.1"
}
}
# [ESToolbox](https://dbtedman.github.io/estoolbox/) `v0.0.5` [![Build Status](https://travis-ci.org/dbtedman/estoolbox.svg?branch=master)](https://travis-ci.org/dbtedman/estoolbox) [![NPM Version](https://img.shields.io/npm/v/estoolbox.svg)](https://www.npmjs.com/package/estoolbox)
# [ESToolbox](https://dbtedman.github.io/estoolbox/) `v0.1.0` [![Build Status](https://travis-ci.org/dbtedman/estoolbox.svg?branch=master)](https://travis-ci.org/dbtedman/estoolbox) [![NPM Version](https://img.shields.io/npm/v/estoolbox.svg)](https://www.npmjs.com/package/estoolbox)
A collection of libraries intended to augment the development of ES2015 targeted applications.
A collection of libraries intended to augment the development of Modern JS (ES6+) targeted applications.

@@ -25,3 +25,3 @@ ## Is it open?

```javascript
import Affix from "estoolbox/affix";
import {Affix} from "estoolbox";

@@ -44,2 +44,50 @@ Affix.top(".top-nav", ".content");

### Animated Transcript (preview)
Provides the ability to animate the display of a transcript alongside html5 videos.
### [Carousel](src/carousel.js) (preview)
Provides a responsive continuous image carousel.
```html
<div class="my-carousel carousel">
<button class="carousel-move-left"></button>
<div class="carousel-fixed-container">
<div class="carousel-flexible-content">
<ul>
<li>
<!-- Your carousel item content here. -->
</li>
<!-- ... -->
</ul>
</div>
</div>
<button class="carousel-move-right"></button>
</div>
```
```javascript
import {Carousel} from "estoolbox";
Carousel.run(".my-carousel");
```
```scss
@import "estoolbox/carousel";
.my-carousel {
@include carousel();
}
```
### Highlight Words (preview)
Provides the ability to highlight words in a given block of text.
### Media Upload (preview)
Provides the ability to handle drag and drop media uploads.
### [Router](src/router.js)

@@ -50,3 +98,3 @@

```javascript
import Router from "estoolbox/router";
import {Router} from "estoolbox";

@@ -53,0 +101,0 @@ Router.when("/about", () => {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc