-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
51 lines (51 loc) · 1.98 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": "plone-imagecropping",
"version": "3.0.0-dev.0",
"description": "Image Cropping for Plone",
"license": "GPL-2.0-only",
"dependencies": {
"@patternslib/patternslib": "9.9.5",
"@plone/mockup": "5.1.5",
"bootstrap": "5.3.2",
"cropperjs": "1.6.1"
},
"devDependencies": {
"@patternslib/dev": "^3.5.1",
"babel-loader": "^9.1.2",
"clean-css-cli": "^5.6.1",
"npm-run-all": "^4.1.5",
"sass": "^1.69.0",
"sass-loader": "^13.2.0"
},
"resolutions": {},
"resolutions-comments": {},
"scripts": {
"build": "npm-run-all build:webpack build:css",
"build:webpack": "NODE_ENV=production webpack --config webpack.config.js",
"build:css": "npm-run-all css-compile css-minify",
"watch:webpack": "NODE_ENV=development webpack --config webpack.config.js --watch",
"watch:scss": "nodemon --watch resources/scss/ --ext scss --exec \"yarn build:css\"",
"start": "NODE_ENV=development webpack serve --config webpack.config.js",
"css-compile": "sass --load-path=node_modules --style expanded --source-map --embed-sources --no-error-css resources/scss/cropscaleselect.scss:src/plone/app/imagecropping/browser/static/cropscaleselect.css",
"css-minify": "cleancss -O1 --format breakWith=lf --source-map --source-map-inline-sources --output src/plone/app/imagecropping/browser/static/cropscaleselect.min.css src/plone/app/imagecropping/browser/static/cropscaleselect.css"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
]
},
"publishConfig": {
"access": "public"
},
"author": {
"name": "Plone Foundation",
"email": "[email protected]"
},
"homepage": "https://github.com/plone/plone.app.imagecropping",
"repository": {
"type": "git",
"url": "https://github.com/plone/plone.app.imagecropping.git"
}
}