forked from anubhav04/react-image-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.34 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "react-cropper-image-editor",
"version": "1.0.8",
"description": "Image editor built on top of CropperJs",
"main": "dist/react-image-editor.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ./",
"build": "babel ./src/react-image-editor.js --out-file dist/react-image-editor.js",
"clean": "rimraf dist && mkdir dist",
"prepublish": "npm run clean && npm run build",
"prebuild": "npm run lint",
"build-example": "npm run build && webpack --config webpack.config.js",
"start": "babel-node server.js"
},
"author": "Anubhav Chaturvedi<anubhav.techanthusiast@gmail.com>",
"homepage": "https://github.com/anubhav04/react-image-editor",
"keywords": [
"react",
"react-component",
"image cropper",
"image rotate",
"image editor",
"react image editor",
"image editor react",
"image editor for react",
"image editor for reactjs",
"image rotator for react",
"image rotator for reactjs",
"image cropper for react",
"image cropper for reactjs",
"crop image react",
"crop image reactjs"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/anubhav04/react-image-editor.git"
},
"dependencies": {
"cropperjs": "v1.0.0-rc.3",
"prop-types": "^15.5.8"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0 || ^16.0.0"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.6",
"babel-eslint": "^6.0.2",
"babel-loader": "^6.2.4",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"css-loader": "^0.17.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.0.1",
"eslint-plugin-react": "^7.1.0",
"extract-text-webpack-plugin": "^0.8.2",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-hot-loader": "^1.3.0",
"rimraf": "^2.5.4",
"style-loader": "^0.12.3",
"webpack": "^1.12.11",
"webpack-dev-server": "^1.14.1"
},
"babel": {
"presets": [
"react",
"es2015"
],
"plugins": [
"transform-object-assign"
],
"ignore": [
"dist/**/*.js",
"webpack.config.js",
"webpack.config.dev.js",
"bundle.js"
]
}
}