{
  "name": "additween",
  "version": "3.0.0",
  "description": "Additive tweening library for smooth animations",
  "main": "dist/additween.min.js",
  "module": "dist/additween.mjs",
  "types": "dist/typings/index.d.ts",
  "files": [
    "dist"
  ],
  "scripts": {
    "prepublishOnly": "cross-env NODE_ENV=production npm run build",
    "clean": "rimraf dist",
    "build": "run-s build:*",
    "build:minified": "cross-env NODE_ENV=production rollup --config",
    "build:normal": "rollup --config",
    "build:typings": "tsc -p tsconfig.build.json --emitDeclarationOnly",
    "typecheck": "tsc --noEmit",
    "lint": "eslint .",
    "format": "prettier --write '**/*.{ts,tsx,js,jsx,css,md,yml}'",
    "test": "jest --coverage"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/bhovhannes/additween.git"
  },
  "keywords": [
    "additive",
    "tweening",
    "animation",
    "state",
    "easing"
  ],
  "author": "Hovhannes Babayan <bhovhannes@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/bhovhannes/additween/issues"
  },
  "homepage": "https://github.com/bhovhannes/additween#readme",
  "devDependencies": {
    "@babel/core": "7.12.7",
    "@babel/plugin-proposal-class-properties": "7.12.1",
    "@babel/plugin-transform-runtime": "7.12.1",
    "@babel/preset-env": "7.12.7",
    "@babel/preset-typescript": "7.12.7",
    "@babel/runtime": "7.12.5",
    "@jest/globals": "26.6.2",
    "@rollup/plugin-babel": "5.2.1",
    "@rollup/plugin-commonjs": "16.0.0",
    "@rollup/plugin-node-resolve": "10.0.0",
    "@typescript-eslint/eslint-plugin": "4.8.1",
    "@typescript-eslint/parser": "4.8.1",
    "babel-eslint": "10.1.0",
    "cross-env": "7.0.2",
    "eslint": "7.14.0",
    "eslint-config-prettier": "6.15.0",
    "eslint-plugin-jest": "24.1.3",
    "husky": "4.3.0",
    "jest": "26.6.3",
    "lint-staged": "10.5.1",
    "npm-run-all": "4.1.5",
    "prettier": "2.1.2",
    "rimraf": "3.0.2",
    "rollup": "2.33.1",
    "rollup-plugin-terser": "7.0.2",
    "typescript": "4.1.2"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  }
}
