forked from dominictobias/react-image-crop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.62 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
{
"name": "react-image-crop",
"version": "1.0.4",
"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.18.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.7",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"cross-env": "^3.1.3",
"eslint": "^3.9.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.1",
"eslint-plugin-react": "^6.6.0",
"node-sass": "^3.11.2",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"webpack": "^1.13.3"
},
"peerDependencies": {
"react": "^15.3.2",
"object-assign": "*"
}
}