-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path#package.json#
More file actions
39 lines (39 loc) · 1 KB
/
#package.json#
File metadata and controls
39 lines (39 loc) · 1 KB
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
{
"name": "card_swiper",
"version": "0.0.1",
"description": "Tinder like component for react native",
"main": "CardSwiper.js",
"scripts": {
"build": "babel s --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"
},
"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"
}
}