forked from FormidableLabs/react-swipeable
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 942 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 942 Bytes
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
{
"name": "react-swipeable",
"version": "3.8.0",
"description": "Swipe bindings for react",
"main": "lib/Swipeable.js",
"scripts": {
"build:lib": "babel src --out-dir lib",
"build:publish:examples": "./scripts/build_gh_pages.sh",
"prepublish": "npm run build:lib"
},
"keywords": [
"swipe",
"flick",
"swipeable",
"react",
"web",
"mobile",
"ios",
"android",
"react-component"
],
"author": "Josh Perez <josh@goatslacker.com>",
"repository": {
"type": "git",
"url": "http://github.com/dogfessional/react-swipeable.git"
},
"files": [
"lib",
"src"
],
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-plugin-transform-object-rest-spread": "^6.3.13",
"babel-preset-es2015-loose": "^6.1.4",
"babel-preset-react": "^6.3.13",
"react": ">=0.12.x"
},
"peerDependencies": {
"react": ">=0.12.0 || ^15.0.0-0"
}
}