forked from DxTa/react-avatar-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.3 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
{
"name": "react-avatar-editor",
"version": "3.2.2",
"description": "Facebook like avatar / profile picture component. Resize and crop your uploaded image using a intuitive user interface.",
"main": "dist/index.js",
"scripts": {
"demo": "watchify -t reactify example/app.js -o example/bundle.js -v",
"build": "babel --modules umd index.js | uglifyjs > dist/index.js",
"build-debug": "babel --modules umd index.js > dist/index.js",
"watch": "babel --modules umd index.js -w -o dist/index.js"
},
"author": {
"name": "Moritz Schwoerer",
"email": "mr.mosch@gmail.com"
},
"contributors": [
{
"name": "Daniel Lehr",
"email": "daniellehr@gmx.de"
}
],
"repository": {
"type": "git",
"url": "git://github.com/mosch/react-avatar-editor.git"
},
"license": "MIT",
"keywords": [
"react-component",
"reactjs",
"react",
"canvas",
"avatar",
"editor",
"profile",
"image"
],
"devDependencies": {
"babel": "^5.5.8",
"http-server": "^0.7.4",
"react": "^0.14.0",
"react-dom": "^0.14.0",
"reactify": "0.17.1",
"uglifyjs": "^2.4.10",
"watchify": "^3.2.2"
}
}