UNPKG

bi-cycle

Version:

Bi-cycle assists in making infinite carousels and sliders by handling the index logic for you.

94 lines (93 loc) 1.99 kB
{ "name": "bi-cycle", "version": "0.1.6", "description": "Bi-cycle assists in making infinite carousels and sliders by handling the index logic for you.", "main": "dist/bi-cycle.js", "directories": { "test": "tests" }, "dependencies": { "ramda": "^0.21.0" }, "devDependencies": { "ava": "^0.16.0", "babel-loader": "^6.2.4", "babel-polyfill": "^6.13.0", "babel-preset-es2015": "^6.6.0", "babel-preset-stage-0": "^6.5.0", "babel-register": "^6.11.6", "tap-nyan": "0.0.2", "webpack": "^2.1.0-beta.21", "xo": "^0.16.0" }, "scripts": { "build": "webpack", "test": "npm run spec && npm run lint", "lint": "xo src/*.js", "spec": "ava --tap | tap-nyan" }, "repository": { "type": "git", "url": "git+https://github.com/Wildhoney/Bi-cycle.git" }, "keywords": [ "cycling", "cycle", "increment", "decrement", "index", "carousel", "slider", "carousels", "sliders", "slideshow", "slideshows", "traverse", "traversal", "repeat", "repetition" ], "author": "Adam Timberlake <adam.timberlake@gmail.com>", "license": "MIT", "bugs": { "url": "https://github.com/Wildhoney/Bi-cycle/issues" }, "homepage": "https://github.com/Wildhoney/Bi-cycle#readme", "ava": { "files": [ "tests/*.test.js" ], "babel": "inherit", "require": [ "babel-register", "babel-polyfill" ] }, "xo": { "space": 4, "esnext": true, "rules": { "padded-blocks": "off", "max-lines": [ 2, 500 ], "babel/object-curly-spacing": [ 2, "always" ], "babel/array-bracket-spacing": "off", "no-unused-vars": [ 1 ], "max-nested-callbacks": [ 1, 5 ], "default-case": "off", "no-unused-expressions": "off", "no-case-declarations": "off", "import/no-named-as-default": "off" } } }