forked from aminland/react-cropper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2 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
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
{
"name": "react-cropper",
"version": "1.0.1",
"description": "Cropper as React components",
"main": "dist/react-cropper.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ./",
"build": "babel ./src/react-cropper.js --out-file dist/react-cropper.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": "Fong Kuanghuei <[email protected]>",
"homepage": "http://roadmanfong.github.io/react-cropper/",
"bugs": {
"url": "https://github.com/roadmanfong/react-cropper/issues"
},
"keywords": [
"react",
"react-component",
"cropper",
"image"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/roadmanfong/react-cropper.git"
},
"dependencies": {
"cropperjs": "^1.1.1",
"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": "^15.0.0",
"react-dom": "^15.0.0",
"react-hot-loader": "^1.3.0",
"rimraf": "^2.5.4",
"style-loader": "^0.12.3",
"webpack": "^3.10.0"
},
"babel": {
"presets": [
"react",
"es2015"
],
"plugins": [
"transform-object-assign"
],
"ignore": [
"dist/**/*.js",
"webpack.config.js",
"webpack.config.dev.js",
"bundle.js"
]
}
}