UNPKG

react-film

Version:

React component for showing carousel just like a film strip

66 lines (65 loc) 2.05 kB
{ "name": "react-film", "version": "3.1.0", "description": "React component for showing carousel just like a film strip", "keywords": [ "carousel", "film", "react", "slideshow", "slide show" ], "main": "lib/index.js", "module": "lib/esm/index.js", "files": [ "lib/**/*", "umd/**/*" ], "scripts": { "build": "npm run build:babel", "build:babel": "concurrently \"npm run build:babel:*\"", "build:babel:cjs": "babel --config-file ./babel.cjs.config.json --out-dir lib --ignore **/*.spec.js,**/*.test.js --verbose src/", "build:babel:esm": "babel --config-file ./babel.esm.config.json --out-dir lib/esm --ignore **/*.spec.js,**/*.test.js --verbose src/", "precommit": "eslint", "prestart": "npm run build:babel", "start": "concurrently \"npm run start:*\"", "start:babel:cjs": "npm run build:babel:cjs -- --skip-initial-build --watch", "start:babel:esm": "npm run build:babel:esm -- --skip-initial-build --watch" }, "author": "Ping Yip (ping.yip@hotmail.com)", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/spyip/react-film.git" }, "bugs": { "url": "https://github.com/spyip/react-film/issues" }, "homepage": "https://github.com/spyip/react-film#readme", "devDependencies": { "@babel/cli": "^7.15.7", "@babel/core": "^7.15.8", "@babel/plugin-transform-runtime": "^7.15.8", "@babel/preset-env": "^7.15.8", "@babel/preset-react": "^7.14.5", "babel-plugin-transform-inline-environment-variables": "^0.4.3", "eslint": "^7.32.0", "eslint-plugin-prettier": "^4.0.0", "eslint-plugin-react": "^7.26.1", "eslint-plugin-react-hooks": "^4.2.0", "jest": "^27.2.5", "prettier": "^2.4.1" }, "dependencies": { "@emotion/css": "11.1.3", "classnames": "2.3.1", "core-js": "3.12.1", "math-random": "2.0.1", "memoize-one": "5.2.1", "prop-types": "15.7.2" }, "peerDependencies": { "react": ">= 16.8.6", "react-dom": ">= 16.8.6" } }