{
  "name": "easing-utils",
  "version": "1.0.0",
  "description": "A collection of configurable easing functions for Javascript that takes in a value from 0 to 1 and returns the eased value",
  "main": "lib/easing.js",
  "scripts": {
    "compile": "babel --out-file lib/easing.js src/easing.js",
    "test": "echo 'Error: no test specified' && exit 1",
    "prepublish": "npm run compile",
    "build-cdn": "webpack --config webpack.config.cdn.js",
    "gh-pages": "git checkout gh-pages && git reset --hard master && git rm .gitignore && webpack --config webpack.config.gh-pages.js && git add gh-pages/js/ && git commit -am 'Github pages' && git push -f origin gh-pages && git checkout -f -"
  },
  "types": "./index.d.ts",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/AndrewRayCode/easing-utils.git"
  },
  "keywords": [
    "javascript",
    "easing",
    "animation"
  ],
  "author": "Andrew Ray",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/AndrewRayCode/easing-utils/issues"
  },
  "homepage": "https://github.com/AndrewRayCode/easing-utils",
  "devDependencies": {
    "babel": "^6.5.2",
    "babel-cli": "^6.6.5",
    "babel-core": "^6.7.4",
    "babel-loader": "^6.2.4",
    "babel-plugin-add-module-exports": "^0.1.2",
    "babel-plugin-transform-runtime": "^6.6.0",
    "babel-preset-es2015": "^6.6.0",
    "babel-preset-react": "^6.5.0",
    "babel-preset-stage-0": "^6.5.0",
    "eslint": "^2.6.0",
    "eslint-config-airbnb": "^6.2.0",
    "eslint-plugin-import": "^1.4.0",
    "eslint-plugin-react": "^4.2.3",
    "react": "^0.14.8",
    "react-dom": "^0.14.8",
    "webpack": "^1.12.14",
    "webpack-notifier": "^1.3.0"
  }
}
