UNPKG

glider-js

Version:

A fast, lightweight carousel alternative

57 lines (56 loc) 1.33 kB
{ "name": "glider-js", "version": "1.6.6", "description": "A fast, lightweight carousel alternative", "main": "glider.js", "directories": { "doc": "docs" }, "scripts": { "start": "http-server docs/", "test": "\"echo \\\"Error: no test specified\\\" && exit 1\"" }, "repository": { "type": "git", "url": "git+https://github.com/NickPiscitelli/Glider.js.git" }, "keywords": [ "carousel", "scrolling", "list", "paging" ], "author": "Nick Piscitelli", "license": "MIT", "bugs": { "url": "https://github.com/NickPiscitelli/Glider.js/issues" }, "homepage": "https://github.com/NickPiscitelli/Glider.js#readme", "devDependencies": { "http-server": "^0.11.1", "husky": "1.2.0", "lint-staged": "8.1.0", "prettier": "1.15.2", "standard": "12.0.1", "uglify-js": "^3.4.9" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "linters": { "glider.js": [ "prettier --write", "standard --fix", "uglifyjs --compress --mangle --comments -o glider.min.js --", "uglifyjs --compress --mangle --comments -o docs/assets/js/glider.min.js --", "git add glider.min.js docs/assets/js/glider.min.js" ] }, "ignore": [ "*.min.js" ] } }