-
Notifications
You must be signed in to change notification settings - Fork 151
/
package.json
56 lines (56 loc) · 1.14 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
51
52
53
54
55
56
{
"name": "react-native-aws3",
"version": "0.0.9",
"description": "Pure JavaScript react native library for uploading to AWS S3",
"author": {
"name": "Ben Reinhart"
},
"keywords": [
"react",
"react-native",
"react-component",
"aws",
"s3",
"image",
"upload",
"ios",
"android"
],
"main": "index.js",
"files": [
"lib",
"src",
"index.js"
],
"jest": {
"testPathIgnorePatterns": [
"node_modules/"
]
},
"scripts": {
"build": "babel src --out-dir lib",
"clean": "rm -rf lib",
"prepublish": "yarn run clean && yarn run test && yarn run build",
"test": "jest",
"test-watch": "jest --watch"
},
"dependencies": {
"buffer": "^4.5.1",
"crypto-js": "^3.1.6"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-jest": "^19.0.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-stage-3": "^6.22.0",
"jest": "^19.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/benjreinhart/react-native-aws3"
},
"bugs": {
"url": "https://github.com/benjreinhart/react-native-aws3/issues"
},
"license": "MIT"
}