{
  "name": "raf-schd",
  "version": "2.1.2",
  "description": "A simple scheduler based on requestAnimationFrame",
  "main": "lib/index.js",
  "module": "esm/index.js",
  "sideEffects": false,
  "files": [
    "/lib",
    "/esm",
    "/src"
  ],
  "author": "Alex Reardon <alexreardon@gmail.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/alexreardon/raf-schd.git"
  },
  "keywords": [
    "performance",
    "raf",
    "requestAnimationFrame",
    "cancelAnimationFrame"
  ],
  "scripts": {
    "build": "yarn run build:clean && yarn run build:lib && yarn run build:esm && yarn run build:flow",
    "test": "jest",
    "validate": "yarn run lint && yarn run typecheck",
    "lint": "eslint src test",
    "typecheck": "flow check",
    "build:clean": "rimraf lib esm",
    "build:lib": "cross-env NODE_ENV=cjs babel src -d lib",
    "build:esm": "babel src --out-dir esm",
    "build:flow": "echo \"// @flow\n\nexport * from '../src';\" > lib/index.js.flow",
    "prepublish": "yarn run build"
  },
  "devDependencies": {
    "babel-cli": "6.26.0",
    "babel-eslint": "8.2.2",
    "babel-jest": "^22.4.3",
    "babel-preset-env": "^1.6.1",
    "babel-preset-flow": "6.23.0",
    "cross-env": "^5.1.4",
    "eslint": "4.19.1",
    "eslint-plugin-flowtype": "^2.46.1",
    "eslint-plugin-jest": "21.15.0",
    "flow-bin": "0.68.0",
    "jest": "22.4.3",
    "raf-stub": "2.0.2",
    "rimraf": "^2.6.2"
  },
  "dependencies": {}
}
