makeup-roving-tabindex
Advanced tools
Comparing version 0.3.6 to 0.3.7
@@ -99,5 +99,3 @@ 'use strict'; // requires NodeList.forEach polyfill for IE | ||
var RovingTabindex = | ||
/*#__PURE__*/ | ||
function () { | ||
var RovingTabindex = /*#__PURE__*/function () { | ||
function RovingTabindex(el) { | ||
@@ -137,5 +135,3 @@ _classCallCheck(this, RovingTabindex); | ||
var LinearRovingTabindex = | ||
/*#__PURE__*/ | ||
function (_RovingTabindex) { | ||
var LinearRovingTabindex = /*#__PURE__*/function (_RovingTabindex) { | ||
_inherits(LinearRovingTabindex, _RovingTabindex); | ||
@@ -142,0 +138,0 @@ |
{ | ||
"name": "makeup-roving-tabindex", | ||
"description": "Implements a roving tab index on given collection of elements", | ||
"version": "0.3.6", | ||
"version": "0.3.7", | ||
"main": "index.js", | ||
"repository": "https://github.com/makeup-js/makeup-roving-tabindex.git", | ||
"repository": "https://github.com/makeup/makeup-js/tree/master/packages/makeup-roving-tabindex", | ||
"author": "Ian McBurnie <ianmcburnie@hotmail.com>", | ||
"license": "MIT", | ||
"scripts": { | ||
"start": "npm run build && parallelshell \"npm run server\" \"npm run watch\"", | ||
"test": "karma start --autoWatch false --singleRun true", | ||
"prepublishOnly": "npm run clean && npm run lint && npm run build && npm run test && npm run transpile:module", | ||
"prep": "npm run prepublishOnly", | ||
"build": "npm run transpile:module && npm run build:docs", | ||
"build:docs": "npm run transpile:docs && npm run bundle:docs", | ||
"fix": "eslint src/index.js --fix", | ||
"lint": "eslint src/index.js > lint.txt && eslint docs/src/index.js > lint.txt", | ||
"clean": "npm run clean:docs && npm run clean:tests", | ||
"clean:docs": "rimraf docs/transpiled/index.js", | ||
"clean:tests": "rimraf lint.txt coverage", | ||
"transpile:module": "babel src/index.js --out-file index.js", | ||
"transpile:docs": "mkdirp docs/transpiled && babel docs/src/index.js --out-file docs/transpiled/index.js", | ||
"bundle:docs": "webpack --config webpack.docs.js", | ||
"server": "browser-sync start -s --ss docs --index docs/index.html --files docs/index.html docs/bundled/docs.min.js", | ||
"watch": "onchange src/index.js docs/src/index.js -- npm run build", | ||
"version": "npm run prepublishOnly && git add -A docs/bundled" | ||
"compile": "babel src/index.js --out-file index.js", | ||
"clean": "rimraf *.log .DS_Store" | ||
}, | ||
@@ -34,32 +19,5 @@ "keywords": [ | ||
], | ||
"devDependencies": { | ||
"@babel/cli": "^7", | ||
"@babel/core": "^7", | ||
"@babel/preset-env": "^7", | ||
"@ebay/browserslist-config": "^1", | ||
"babel-plugin-transform-object-assign": "^6", | ||
"browser-sync": "^2", | ||
"core-js-pure": "^3", | ||
"coveralls": "^3", | ||
"eslint": "^6", | ||
"eslint-config-ebay": "^1", | ||
"istanbul-instrumenter-loader": "^3", | ||
"jasmine-core": "^3", | ||
"karma": "^4", | ||
"karma-chrome-launcher": "^3", | ||
"karma-coverage": "^2", | ||
"karma-coverage-istanbul-reporter": "^2", | ||
"karma-jasmine": "^3", | ||
"karma-webpack": "^4", | ||
"mkdirp": "^1", | ||
"nodelist-foreach-polyfill": "^1", | ||
"onchange": "^6", | ||
"parallelshell": "3.0.1", | ||
"rimraf": "^3", | ||
"webpack": "^4", | ||
"webpack-cli": "^3" | ||
}, | ||
"dependencies": { | ||
"custom-event": "^1", | ||
"makeup-navigation-emitter": "~0.3.5", | ||
"makeup-navigation-emitter": "~0.3.7", | ||
"nodelist-foreach-polyfill": "^1" | ||
@@ -70,4 +28,4 @@ }, | ||
"index.js", | ||
"yarn.lock" | ||
"package-lock.json" | ||
] | ||
} |
# makeup-roving-tabindex | ||
<p> | ||
<a href="https://travis-ci.org/makeup-js/makeup-roving-tabindex"><img src="https://api.travis-ci.org/makeup-js/makeup-roving-tabindex.svg?branch=master" alt="Build Status" /></a> | ||
<a href='https://coveralls.io/github/makeup-js/makeup-roving-tabindex?branch=master'><img src='https://coveralls.io/repos/makeup-js/makeup-roving-tabindex/badge.svg?branch=master&service=github' alt='Coverage Status' /></a> | ||
<a href="https://david-dm.org/makeup-js/makeup-roving-tabindex"><img src="https://david-dm.org/makeup-js/makeup-roving-tabindex.svg" alt="Dependency status" /></a> | ||
<a href="https://david-dm.org/makeup-js/makeup-roving-tabindex#info=devDependencies"><img src="https://david-dm.org/makeup-js/makeup-roving-tabindex/dev-status.svg" alt="devDependency status" /></a> | ||
</p> | ||
Implements a roving tab index on given collection of elements | ||
A vanilla JavaScript port of <a href="https://github.com/ianmcburnie/jquery-roving-tabindex">jquery-roving-tabindex</a>. | ||
## Experimental | ||
@@ -97,12 +88,4 @@ | ||
* [makeup-navigation-emitter](https://github.com/makeup-js/makeup-navigation-emitter) | ||
* [custom-event-polyfill](https://github.com/krambuhl/custom-event-polyfill) (for IE) | ||
* [nodelist-foreach-polyfill](https://github.com/imagitama/nodelist-foreach-polyfill) (for IE) | ||
## CI Build | ||
https://travis-ci.org/makeup-js/makeup-roving-tabindex | ||
## Code Coverage | ||
https://coveralls.io/github/makeup-js/makeup-roving-tabindex | ||
* [makeup-navigation-emitter](https://github.com/makeup/makeup-js/tree/master/packages/makeup-navigation-emitter) | ||
* [custom-event-polyfill](https://github.com/krambuhl/custom-event-polyfill) (for IE11) | ||
* [nodelist-foreach-polyfill](https://github.com/imagitama/nodelist-foreach-polyfill) (for IE11) |
No repository
Supply chain riskPackage does not have a linked source code repository. Without this field, a package will have no reference to the location of the source code use to generate the package.
Found 1 instance in 1 package
No repository
Supply chain riskPackage does not have a linked source code repository. Without this field, a package will have no reference to the location of the source code use to generate the package.
Found 1 instance in 1 package
0
236
14314
91