UNPKG

react-motion-prefixed

Version:

A spring that solves your animation problems.

107 lines (106 loc) 3.42 kB
{ "name": "react-motion-prefixed", "version": "0.6.4", "description": "A spring that solves your animation problems.", "main": "lib/react-motion.js", "module": "lib/react-motion.esm.js", "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", "@babel/plugin-proposal-class-properties": "^7.12.1", "@babel/plugin-transform-modules-commonjs": "^7.12.1", "@babel/plugin-transform-runtime": "^7.12.1", "@babel/polyfill": "^7.12.1", "@babel/preset-env": "^7.12.1", "@babel/preset-flow": "^7.12.1", "@babel/preset-react": "^7.12.1", "@babel/runtime": "^7.12.1", "@rollup/plugin-babel": "^5.3.0", "@rollup/plugin-commonjs": "^20.0.0", "@rollup/plugin-node-resolve": "^13.0.5", "@rollup/plugin-replace": "^3.0.0", "babel-loader": "^8.0.6", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", "codemirror": "^5.5.0", "cross-env": "^7.0.2", "css-loader": "^6.3.0", "flow-bin": "^0.160.1", "flow-copy-source": "^2.0.9", "husky": "^7.0.2", "inject-loader": "^4.0.1", "isparta-loader": "^2.0.0", "jasmine-core": "^3.1.0", "karma": "^6.3.4", "karma-chrome-launcher": "^3.1.0", "karma-coverage": "^2.0.3", "karma-jasmine": "^4.0.1", "karma-jasmine-diff-reporter": "^2.0.0", "karma-webpack": "^5.0.0", "lint-staged": "^11.1.2", "lodash.range": "^3.0.1", "prettier": "^2.1.2", "react": "^17.0.2", "react-dom": "^17.0.2", "rollup": "^2.32.0", "rollup-plugin-uglify": "^6.0.4", "style-loader": "^3.3.0", "webpack": "^5.1.3", "webpack-cli": "^4.1.0", "webpack-dev-server": "^4.2.1" }, "scripts": { "start": "node server.js", "prebuild:dist": "rm -rf build", "build:dist": "rollup -c", "prebuild:lib": "rm -rf lib", "build:lib": "babel src --out-dir lib", "build:flow": "flow-copy-source -v src lib", "build": "npm run build:dist && npm run build:lib && npm run build:flow", "build-demos": "webpack", "lint": "eslint --ext .js,.jsx .", "flow_check": "flow check", "prepublishOnly": "npm run build", "test": "cross-env NODE_ENV=test karma start ./karma.conf.js --single-run", "test:travis": "cross-env NODE_ENV=test karma start ./karma.conf.js --single-run", "test:dev": "cross-env NODE_ENV=test karma start ./karma.conf.js --no-single-run --auto-watch", "test:cov": "cross-env NODE_ENV=test karma start ./karma.conf.js --single-run --reporters coverage", "gh-pages": "git fetch origin && git checkout gh-pages && git reset --hard origin/gh-pages && git rebase origin/master --force-rebase && npm run build-demos && git add . && git commit --amend --no-edit && git push origin gh-pages --force && git checkout master", "precommit": "lint-staged" }, "lint-staged": { "*.js": [ "prettier --write", "git add" ] }, "prettier": { "singleQuote": true, "trailingComma": "all" }, "repository": { "type": "git", "url": "https://github.com/chenglou/react-motion.git" }, "keywords": [ "react", "component", "react-component", "transitiongroup", "spring", "tween", "motion", "animation", "transition", "ui" ], "author": [ "nkbt", "chenglou" ], "license": "MIT", "dependencies": { "performance-now": "^2.1.0", "prop-types": "^15.5.8", "raf": "^3.1.0" } }