react-easy-flip
Version:
A lightweight React library for smooth FLIP animations
75 lines (74 loc) • 2.01 kB
JSON
{
"name": "react-easy-flip",
"version": "4.0.3",
"description": "A lightweight React library for smooth FLIP animations",
"source": "src/index.ts",
"types": "lib/index.d.ts",
"main": "lib/index.js",
"module": "lib/index.es.js",
"scripts": {
"build": "microbundle -f es,cjs --jsx React.createElement --no-sourcemap",
"build:dev": "microbundle -f es,cjs --jsx React.createElement",
"prepare": "yarn build",
"format": "prettier --write src/**/*.{ts,tsx,js,jsx}",
"lint": "eslint src/ --ext .js,.ts,.tsx,.jsx",
"lint:fix": "eslint --fix src/ --ext .js,.ts,.tsx,.jsx",
"develop": "yarn start"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/jlkiri/react-easy-flip.git"
},
"keywords": [
"react",
"FLIP",
"animation",
"transition"
],
"author": "Kirill Vasiltsov",
"license": "MIT",
"bugs": {
"url": "https://github.com/jlkiri/react-easy-flip/issues"
},
"homepage": "https://github.com/jlkiri/react-easy-flip#readme",
"peerDependencies": {
"react": ">= 16.8.0",
"react-dom": ">= 16.8.0"
},
"devDependencies": {
"@testing-library/react-hooks": "^3.1.1",
"@types/jest": "^24.9.0",
"@types/node": "^12.12.5",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.3",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.2.0",
"jest": "^24.9.0",
"microbundle": "^0.12.0",
"prettier": "^1.19.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts": "3.2.0",
"react-test-renderer": "^16.11.0",
"ts-jest": "^24.3.0",
"typescript": "^3.9.7"
},
"files": [
"lib/**/*"
],
"browserslist": {
"production": [
"> 1%",
"last 2 versions",
"not dead"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}