forked from mybigday/react-native-s3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.22 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
{
"name": "react-native-s3",
"version": "0.0.26",
"description": "A React Native wrapper for AWS S3 SDK",
"main": "./src/index.js",
"files": [
"android/",
"ios/",
"src/"
],
"scripts": {
"lint": "eslint src test example/*.js",
"test": "npm run lint && mocha",
"prepublish": "npm test && ./scripts/download-ios.sh 2.5.2 && 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 <[email protected]>",
"license": "MIT",
"eslintConfig": {
"extends": "mybigday"
},
"dependencies": {
"react-native-simple-store": "^1.0.1",
"snake-case": "^2.1.0"
},
"devDependencies": {
"babel-core": "^6.17.0",
"babel-eslint": "^5.0.0",
"babel-polyfill": "^6.16.0",
"babel-preset-react-native": "^1.9.0",
"eslint": "~2.2.0",
"eslint-config-mybigday": "0.0.1",
"eslint-plugin-react": "^4.1.0",
"expect": "^1.20.2",
"mocha": "^3.1.2",
"react": "^15.3.2",
"react-native": "^0.35.0",
"react-native-mock": "^0.2.7"
}
}