forked from mybigday/react-native-s3
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 929 Bytes
/
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": "react-native-s3",
"version": "0.0.9",
"description": "A React Native wrapper for AWS S3 SDK",
"main": "./src/index.js",
"files": [
"android/",
"ios/",
"src/"
],
"scripts": {
"lint": "eslint src/*.js example/*.js",
"prepublish": "./scripts/download-ios.sh 2.4.4 && rm -rf ./ios/RNS3.xcodeproj/xcuserdata ./ios/RNS3.xcodeproj/project.xcworkspace"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mybigday/react-native-s3.git"
},
"keywords": [
"react",
"native",
"aws",
"s3",
"transferutility"
],
"author": "Jhen <developer@jhen.me>",
"license": "MIT",
"eslintConfig": {
"extends": "mybigday"
},
"dependencies": {
"react-native-simple-store": "^1.0.1"
},
"devDependencies": {
"babel-eslint": "^5.0.0",
"eslint": "~2.2.0",
"eslint-config-mybigday": "0.0.1",
"eslint-plugin-react": "^4.1.0"
}
}