UNPKG

addimated

Version:

An always interruptable, declarative animation library for React

117 lines (116 loc) 2.93 kB
{ "name": "addimated", "version": "0.0.0", "description": "An always interruptable, declarative animation library for React", "keywords": [ "Additive", "Animated", "Animation", "React" ], "homepage": "https://github.com/vincentriemer/addimated", "bugs": { "url": "https://github.com/vincentriemer/addimated/issues" }, "repository": { "type": "git", "url": "https://github.com/vincentriemer/addimated.git" }, "license": "MIT", "author": { "name": "Vincent Riemer", "url": "https://github.com/vincentriemer" }, "files": [ "lib", "lib-commonjs", "src", "scripts/unstableWarning.js", "scripts/paths.js", "LICENSE.md", "THIRD-PARTY-LICENSES.txt", "index.d.ts" ], "main": "lib-commonjs/exports.js", "module": "lib/exports.js", "scripts": { "build": "node scripts/build.js", "bundle:commonjs": "BABEL_ENV=commonjs babel src --out-dir lib-commonjs --source-maps", "bundle:module": "BABEL_ENV=module babel src --out-dir lib --source-maps", "postinstall": "node scripts/unstableWarning.js", "prepublishOnly": "yarn build" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "dependencies": { "bezier-easing": "^2.1.0", "invariant": "^2.2.4", "normalize-css-color": "^1.0.2", "warning": "^4.0.2" }, "devDependencies": { "@babel/cli": "^7.2.3", "@babel/core": "^7.2.2", "@babel/plugin-proposal-class-properties": "^7.3.0", "@babel/plugin-proposal-object-rest-spread": "^7.3.0", "@babel/plugin-transform-flow-strip-types": "^7.2.3", "@babel/plugin-transform-runtime": "^7.2.0", "@babel/polyfill": "^7.2.5", "@babel/preset-env": "^7.3.1", "@babel/runtime": "^7.3.1", "@types/react": "^16.7.20", "@types/react-native": "^0.57.29", "babel-preset-fbjs": "^3.1.2", "esm": "^3.1.1", "flow-bin": "^0.91.0", "flow-copy-source": "^2.0.2", "husky": "^1.3.1", "import-sort-cli": "^5.2.0", "import-sort-parser-babylon": "^5.2.0", "import-sort-style-module": "^5.0.0", "lint-staged": "^8.1.0", "listr": "^0.14.3", "node": "^11.0.0", "prettier": "^1.16.1", "progress-estimator": "^0.2.2", "react": "16.8.0-alpha.1", "rollup": "^1.1.2", "shelljs": "^0.8.3", "sort-package-json": "^1.17.1" }, "peerDependencies": { "@babel/runtime": "^7.0.0", "react": "16.8.0-alpha.1" }, "publishConfig": { "access": "public" }, "importSort": { ".js": { "parser": "babylon", "style": "module" }, ".mjs": { "parser": "babylon", "style": "module" } }, "lint-staged": { "*.{mjs,js}": [ "import-sort --write", "git add" ], "*.{mjs,js,json,md}": [ "prettier --write", "git add" ], "package.json": [ "sort-package-json", "git add" ] }, "source": "src/exports.js" }