forked from mosch/react-avatar-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.29 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.29 KB
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
{
"name": "react-avatar-editor",
"version": "6.0.0",
"description": "Facebook like avatar / profile picture component. Resize and crop your uploaded image using a intuitive user interface.",
"main": "dist/index.js",
"jsnext:main": "index.js",
"scripts": {
"demo": "webpack",
"build": "standard index.js && babel --minified --no-comments index.js -o dist/index.js",
"watch": "babel 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-cli": "^6.10.1",
"babel-loader": "^6.2.4",
"babel-plugin-transform-es2015-modules-umd": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"standard": "^7.1.2",
"webpack": "^1.13.1"
},
"dependencies": {
"react": "^15.3.2",
"react-dom": "^15.3.2"
},
"files": [
"dist",
"index.js"
]
}