You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

98 lines
3.2 KiB

{
"name": "react-flip-move",
"version": "2.9.14",
"description": "Effortless animation between DOM changes (eg. list reordering) using the FLIP technique.",
"main": "lib/index.js",
"typings": "typings/react-flip-move.d.ts",
"files": [
"dist",
"lib",
"src",
"typings"
],
"scripts": {
"lint": "eslint src",
"build:lib": "babel src --out-dir lib",
"build:umd": "webpack src/index.js dist/react-flip-move.js --config webpack.config.production.js",
"build:umd:min": "webpack src/index.js dist/react-flip-move.min.js --config webpack.config.production.min.js",
"build": "npm run build:lib && npm run build:umd && npm run build:umd:min",
"flow": "flow",
"flow-coverage": "flow-coverage-report -i 'src/**/*.js' -t html -t json -t text",
"prebuild": "npm run lint && flow check && npm run typescript && npm run test",
"prepublishOnly": "npm run build",
"test": "./node_modules/.bin/karma start --single-run",
"test:dev": "karma start karma.conf.js",
"tslint": "tslint typings/*.tsx typings/*.ts",
"typescript": "npm run tslint && tsc typings/test.tsx --noEmit --jsx react --target es6 --module es2015 --moduleResolution node",
"storybook": "start-storybook -p 9001",
"storybook:preact": "REACT_IMPL=preact npm run storybook"
},
"author": "Joshua Comeau <joshwcomeau@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/joshwcomeau/react-flip-move.git"
},
"keywords": [
"react",
"react-dom",
"animation",
"magic-move",
"component",
"react-component",
"flip",
"web-animations"
],
"peerDependencies": {
"react": "0.13.x || 0.14.x || 15.x.x",
"react-dom": "0.13.x || 0.14.x || 15.x.x"
},
"devDependencies": {
"@kadira/storybook": "2.30.1",
"@types/react": "15.0.24",
"babel": "6.1.18",
"babel-cli": "6.2.0",
"babel-core": "6.2.1",
"babel-eslint": "7.2.3",
"babel-loader": "6.2.1",
"babel-plugin-add-module-exports": "0.1.1",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-object-assign": "6.3.13",
"babel-preset-es2015": "6.1.18",
"babel-preset-flow": "6.23.0",
"babel-preset-react": "6.3.13",
"babel-preset-stage-0": "6.1.18",
"chai": "3.5.0",
"create-react-class": "15.5.2",
"eslint": "3.10.0",
"eslint-config-airbnb": "12.0.0",
"eslint-plugin-flowtype": "2.32.1",
"eslint-plugin-import": "1.16.0",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-react": "6.10.3",
"eslint-plugin-sort-class-members": "1.1.1",
"flow-bin": "0.45.0",
"flow-coverage-report": "0.3.0",
"karma": "0.13.19",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "0.2.2",
"karma-mocha": "0.2.1",
"karma-sinon": "1.0.4",
"karma-sinon-chai": "1.1.0",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "1.7.0",
"lodash": "4.3.0",
"mocha": "2.4.5",
"preact": "8.1.0",
"preact-compat": "3.16.0",
"prop-types": "15.5.8",
"react": "15.5.4",
"react-dom": "15.5.4",
"sinon": "1.17.3",
"sinon-chai": "2.8.0",
"tslint": "5.2.0",
"typescript": "2.3.2",
"webpack": "1.12.11"
}
}