forked from sekoyo/react-image-crop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.65 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
{
"name": "react-image-crop",
"version": "2.0.5",
"description": "A responsive image cropping tool for React",
"repository": "https://github.com/DominicTobias/react-image-crop",
"main": "index.js",
"jsnext:main": "lib/ReactCrop.jsx",
"style": "dist/ReactCrop.css",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack --progress --colors --watch --config demo/webpack.config.js & npm run sass-watch",
"sass-watch": "node-sass lib/ReactCrop.scss dist/ReactCrop.css --watch",
"release-js": "cross-env NODE_ENV=production webpack",
"release-css": "node-sass lib/ReactCrop.scss dist/ReactCrop.css",
"release": "npm run release-js && npm run release-css"
},
"author": "Dominic Tobias <[email protected]>",
"keywords": [
"react",
"reactjs",
"image",
"crop",
"react-component"
],
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.0",
"babel-loader": "^6.4.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"cross-env": "^3.2.4",
"eslint": "^3.18.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"node-sass": "^4.5.1",
"prop-types": "^15.5.8",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"webpack": "^2.2.1"
},
"peerDependencies": {
"prop-types": "^15.5.8",
"react": "^15.2.2"
}
}