forked from joshwcomeau/react-flip-move
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.37 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "react-flip-move",
"version": "2.4.1",
"description": "Effortless animation between DOM changes (eg. list reordering) using the FLIP technique.",
"main": "lib/index.js",
"files": [
"dist",
"lib",
"src"
],
"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",
"prepublish": "npm run build",
"test": "./node_modules/.bin/karma start --single-run",
"test:dev": "karma start karma.conf.js",
"storybook": "start-storybook -p 9001"
},
"author": "Joshua Comeau <[email protected]>",
"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": "^1.19.0",
"babel": "^6.1.18",
"babel-cli": "^6.2.0",
"babel-core": "^6.2.1",
"babel-eslint": "^5.0.0-beta4",
"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-react": "^6.3.13",
"babel-preset-stage-0": "^6.1.18",
"chai": "^3.5.0",
"css-loader": "^0.23.1",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^3.1.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",
"react": "^15.2.1",
"react-addons-test-utils": "^15.0.0",
"react-dom": "^15.0.0",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"style-loader": "^0.13.1",
"webpack": "^1.12.11"
},
"dependencies": {
"lodash.omit": "^4.3.0"
}
}