-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1.13 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
{
"name": "@linkfuture/cropper",
"version": "0.0.13",
"description": "Freehand image cropper",
"main": "./src/cropper.js",
"private": false,
"scripts": {
"watch": "webpack --watch",
"build-demo": "webpack --config config/webpack.dev.js",
"release": "webpack --config config/webpack.prod.js",
"start": "webpack-dev-server --open --config config/webpack.dev.js"
},
"keywords": [
"linkfuture",
"image",
"freehand",
"cropper"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cyokin/lf-freehand-cropper.git"
},
"author": {
"name": "Cyokin Zhang",
"email": "[email protected]",
"url": "http://cyokin.wordpress.com/"
},
"license": "MIT",
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.0.0",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.12.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.35.0",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2",
"webpack-merge": "^4.2.1"
},
"dependencies": {
"copy-webpack-plugin": "^5.0.3",
"paper": "^0.12.2"
}
}