forked from oliviertassinari/react-swipeable-views
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.55 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-swipeable-views",
"version": "0.3.6",
"description": "A React component for swipeable views",
"main": "lib/index.js",
"scripts": {
"lint": "eslint --ext .js,.jsx .",
"test": "exit 0",
"build": "rm -rf lib && mkdir lib && babel src --out-dir lib",
"docs:development": "cd docs && grunt build",
"docs:production": "cd docs && NODE_ENV=docs-production grunt dist",
"prepublish": "NODE_ENV=production npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/oliviertassinari/react-swipeable-views.git"
},
"keywords": [
"react",
"react-component",
"swipe",
"swipeable",
"slider"
],
"author": "Olivier Tassinari <[email protected]> (https://github.com/oliviertassinari)",
"bugs": {
"url": "https://github.com/oliviertassinari/react-swipeable-views/issues"
},
"peerDependencies": {
"react": "^0.14.0",
"react-addons-pure-render-mixin": "^0.14.0",
"react-dom": "^0.14.0",
"react-motion": "^0.3.0"
},
"license": "MIT",
"devDependencies": {
"autoprefixer-loader": "^3.1.0",
"babel-cli": "^6.3.17",
"babel-core": "^6.3.26",
"babel-eslint": "^5.0.0-beta6",
"babel-loader": "^6.2.0",
"babel-plugin-react-display-name": "^2.0.0",
"babel-plugin-react-transform": "^2.0.0",
"babel-plugin-transform-object-assign": "^6.3.13",
"babel-plugin-transform-react-constant-elements": "^6.3.13",
"babel-plugin-transform-react-inline-elements": "^6.3.13",
"babel-plugin-transform-react-remove-prop-types": "^0.1.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-runtime": "^6.3.19",
"css-loader": "^0.23.0",
"eslint": "^1.5.1",
"eslint-plugin-react": "^3.4.2",
"extract-text-webpack-plugin": "^1.0.1",
"grunt": "^0.4.5",
"grunt-contrib-clean": "^0.7.0",
"grunt-eslint": "^17.2.0",
"grunt-webpack": "^1.0.11",
"html-webpack-plugin": "^1.6.1",
"ip": "^1.0.1",
"jit-grunt": "^0.9.1",
"less": "^2.5.3",
"less-loader": "^2.2.1",
"material-ui": "^0.14.0",
"react": "^0.14.0",
"react-addons-pure-render-mixin": "^0.14.0",
"react-dom": "^0.14.0",
"react-motion": "^0.3.0",
"react-tap-event-plugin": "^0.2.1",
"react-transform-catch-errors": "^1.0.0",
"react-transform-hmr": "^1.0.1",
"redbox-react": "^1.1.1",
"stats-webpack-plugin": "^0.2.1",
"style-loader": "^0.13.0",
"time-grunt": "^1.2.1",
"unused-files-webpack-plugin": "^1.3.0",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.12.0"
}
}