-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
48 lines (48 loc) · 1.52 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
{
"name": "react-crop",
"version": "4.0.2",
"description": "An image cropper that moves the cropper rather than the image",
"repository": "https://github.com/instructure-react/react-crop",
"main": "index.js",
"scripts": {
"build": "NODE_ENV=production webpack --config webpack.dist.config.js",
"compile-index": "cp lib/cropper.css . && babel lib/index.src.js --out-file index.js",
"compile-box": "babel lib/draggable-resizable-box.js --out-file draggable-resizable-box.js",
"compile": "npm run compile-index && npm run compile-box && webpack",
"docs": "webpack-dev-server --content-base docs/",
"prepublish": "npm run compile && npm run build"
},
"keywords": [
"react",
"image",
"crop",
"react-component"
],
"author": "Matthew Sessions <[email protected]> (http://www.matthewsessions.com/)",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.9.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"css-loader": "^0.26.1",
"node-libs-browser": "0.5.2",
"react": "^15.4.1",
"react-dom": "15.4.1",
"style-loader": "^0.13.1",
"webpack": "1.12.0",
"webpack-dev-server": "1.10.1"
},
"dependencies": {
"autoprefixer": "5.2.0",
"data-uri-to-blob": "0.0.4",
"postcss-cli": "2.0.0"
},
"peerDependencies": {
"react": ">=0.14.0"
}
}