{
  "name": "glider-js",
  "version": "1.7.8",
  "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.15.3"
  },
  "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"
    ]
  }
}
