-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 811 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 811 Bytes
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
{
"name": "cropper",
"description": "a javascript image cropper",
"version": "1.0.0-beta",
"author": "hexson",
"scripts": {
"dev": "webpack-dev-server --hot --progress --profile",
"babel": "babel src/cropper.js -o src/cropper.min.js",
"build": "npm run babel && gulp"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.0",
"babel-preset-es2015": "^6.24.1",
"css-loader": "^0.28.4",
"del": "^3.0.0",
"extract-text-webpack-plugin": "^2.1.2",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.1",
"gulp-uglify": "^3.0.0",
"gulp-uglifycss": "^1.0.8",
"html-webpack-plugin": "^2.29.0",
"style-loader": "^0.18.2",
"through2": "^2.0.3",
"webpack": "^3.0.0",
"webpack-dev-server": "^2.5.0"
}
}