{
    "name": "framesync",
    "license": "MIT",
    "version": "5.3.0",
    "description": "A frame-synced render loop for JavaScript",
    "author": "Matt Perry",
    "homepage": "https://popmotion.io",
    "main": "dist/framesync.cjs.js",
    "types": "lib/index.d.ts",
    "module": "dist/es/index.js",
    "jsnext:main": "dist/es/index.js",
    "unpkg": "./dist/framesync.min.js",
    "exports": {
        "import": "./dist/es/index.js",
        "require": "./dist/framesync.cjs.js",
        "default": "./dist/es/index.js"
    },
    "scripts": {
        "build": "tsc -p . && rollup -c && yarn measure",
        "postbuild": "babel $npm_package_module --out-file $npm_package_module --no-babelrc --plugins annotate-pure-calls",
        "watch": "rollup -c -w",
        "lint": "tslint -c tslint.json 'src/**/*.{ts}'",
        "test": "jest --maxWorkers=2",
        "measure": "gzip -c dist/framesync.min.js | wc -c",
        "prepublishOnly": "npm run test && npm run build"
    },
    "files": [
        "lib",
        "dist"
    ],
    "repository": {
        "type": "git",
        "url": "git+https://github.com/Popmotion/popmotion.git"
    },
    "keywords": [
        "animation",
        "raf"
    ],
    "bugs": {
        "url": "https://github.com/Popmotion/popmotion/issues"
    },
    "devDependencies": {
        "babel-cli": "^6.26.0",
        "babel-core": "^6.26.3",
        "babel-plugin-annotate-pure-calls": "^0.2.2"
    },
    "jest": {
        "moduleFileExtensions": [
            "ts",
            "js"
        ],
        "transform": {
            "\\.(ts)$": "../../../node_modules/ts-jest/preprocessor.js"
        },
        "testRegex": "/_tests/.*\\.(ts|js)$",
        "rootDir": "src"
    },
    "prettier": {
        "printWidth": 80,
        "tabWidth": 4,
        "semi": false,
        "trailingComma": "es5"
    },
    "dependencies": {
        "tslib": "^2.1.0"
    }
}
