-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.04 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
{
"name": "card-swiper",
"version": "0.1.0",
"description": "Tinder like component for react native",
"main": "CardSwiper.js",
"scripts": {
"build": "babel src --out-file card_swiper.js",
"start": "babel src --out-dir dist --presets es2015,react",
"watch": "babel src --out-dir dist --watch --presets es2015,react"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matts310/ReactNativeCardSwiper.git"
},
"keywords": [
"react-component",
"react-native",
"ios",
"android",
"swiper",
"tinder",
"card"
],
"author": "Matthew Schwartz",
"license": "MIT",
"bugs": {
"url": "https://github.com/matts310/ReactNativeCardSwiper/issues"
},
"homepage": "https://github.com/matts310/ReactNativeCardSwiper#readme",
"dependencies": {
"clamp": "^1.0.1",
"react-native": "0.19.0"
},
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-plugin-transform-class-properties": "^6.4.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13"
}
}