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
45 lines (45 loc) · 1.33 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.33 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
{
"name": "react-avatar-editor",
"version": "1.2.5",
"description": "Facebook like avatar / profile picture component. Resize and crop your uploaded image using a intutive user interface.",
"main": "index.es5.js",
"scripts": {
"demo": "node_modules/.bin/watchify example/app.js -o example/bundle.js -v",
"transform": "node_modules/.bin/babel index.js --out-file index.es5.js",
"build-watch": "node_modules/.bin/watchify index.js -s AvatarEditor -d -o dist/build.js -v",
"build-debug": "node_modules/.bin/browserify index.js -d -s AvatarEditor > dist/build.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",
"react": "0.13.x",
"http-server": "^0.7.4",
"watchify": "^3.2.2",
"reactify": "0.17.1",
"uglifyjs": "^2.4.10"
}
}