forked from likeconan/react-avatar-image-cropper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.59 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
{
"name": "react-avatar-image-cropper",
"version": "1.1.7",
"description": "This is a light library without any dependencies for cropping image for avatar",
"main": "./lib/react-avatar-image-cropper.js",
"scripts": {
"build": "babel ./src --out-dir ./lib --source-maps --presets es2015,react,stage-0 ",
"prepublish": "babel ./src --out-dir ./lib --source-maps --presets es2015,react,stage-0 --plugins babel-plugin-add-module-exports && browserify ./lib/react-avatar-image-cropper.js -o ./dist/avatar-image-cropper.js --transform browserify-global-shim --standalone AvatarImageCropper && uglifyjs ./dist/avatar-image-cropper.js --compress --mangle --output ./dist/avatar-image-cropper.min.js --source-map ./dist/avatar-image-cropper.min.js.map",
"test": "echo \"Error: no test specified\" && exit 1"
},
"browserify-global-shim": {
"react": "React",
"react-dom": "ReactDOM"
},
"keywords": [
"react-component",
"react",
"avatar cropper",
"image cropper",
"avatar image cropper",
"tweeter like cropper"
],
"repository": {
"type": "git",
"url": "git+https://github.com/likeconan/react-avatar-image-cropper.git"
},
"author": "Conan Lee",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"browserify": "^14.3.0",
"browserify-global-shim": "^1.0.3",
"react": "^15.4.2",
"uglify-js": "^2.7.5"
},
"dependencies": {
"prop-types": "^15.5.9"
}
}