gabrielbull/rubber-band-effect

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "rubber-band-effect",
  "author": "Gabriel Bull",
  "version": "0.1.1",
  "description": "Add rubber band effects to scrollable divs.",
  "main": "./lib/index.js",
  "keywords": [
    "rubber",
    "band",
    "effect",
    "scroll"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/gabrielbull/rubber-band-effect.git"
  },
  "scripts": {
    "eslint": "eslint ./src ./test",
    "prebuild": "npm run eslint && npm run test",
    "build": "babel ./src --out-dir ./lib",
    "build-publish": "npm run build && npm publish",
    "playground": "webpack-dev-server --config ./playground/webpack.config.js --colors --inline --port 3000",
    "test": "mocha test"
  },
  "devDependencies": {
    "babel-core": "^6.13.2",
    "babel-eslint": "^6.1.2",
    "babel-loader": "^6.2.4",
    "babel-plugin-transform-decorators-legacy": "^1.3.4",
    "babel-preset-es2015": "^6.13.2",
    "babel-preset-stage-0": "^6.5.0",
    "chai": "^3.5.0",
    "eslint": "^3.2.2",
    "html-webpack-plugin": "^2.22.0",
    "mocha": "^3.0.2",
    "webpack": "^1.13.1",
    "webpack-dev-server": "^1.14.1"
  }
}