-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.33 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
57
58
59
60
61
62
63
64
{
"name": "rc-upload-s3",
"version": "0.1.1",
"description": "Wrapper for rc-upload with support for AWS S3 based uploading",
"files": [
"lib"
],
"main": "./lib/index",
"scripts": {
"compile": "babel -d lib/ src/",
"prepublish": "rm -rf lib && npm run compile",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "[email protected]:edgji/rc-upload-s3.git"
},
"keywords": [
"react",
"react-component",
"react-upload",
"rc-upload",
"upload",
"aws",
"s3"
],
"author": "Jose Garcia",
"license": "MIT",
"peerDependency": {
"aws-sdk": "^2.6.7",
"rc-upload": "^2.1.0"
},
"dependencies": {
"babel-runtime": "^6.11.6"
},
"devDependencies": {
"aws-sdk": "^2.6.7",
"babel-cli": "^6.16.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"rc-upload": "~2.1.0",
"react": "^15.3.2",
"react-dom": "^15.3.2"
},
"babel": {
"presets": [
"es2015",
"react",
"stage-0"
],
"plugins": [
"add-module-exports",
[
"transform-runtime",
{
"polyfill": false
}
]
]
}
}