-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.38 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.38 KB
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": "@infomaker/cropjs",
"version": "2.2.1",
"description": "Image soft cropper for predefined crop definitions featuring automatic crop suggestions. Created by Infomaker Scandinavia AB",
"homepage": "http://www.infomaker.se",
"author": {
"name": "Danne Lundqvist <danne.lundqvist@infomaker.se>"
},
"repository": {
"type": "git",
"url": "https://github.com/Infomaker/cropjs.git"
},
"bugs": "https://github.com/Infomaker/cropjs/issues",
"keywords": [
"image",
"crop",
"soft crop"
],
"license": "MIT",
"scripts": {
"dev": "npm-run-all --parallel server gulp",
"build": "gulp build",
"gulp": "gulp watch",
"server": "node ./example/index.js",
"release:major": "npm version major --no-git-tag-version",
"release:minor": "npm version minor --no-git-tag-version",
"release:hotfix": "npm version patch --no-git-tag-version",
"postversion": "git add package.json package-lock.json && git commit -m \"Bump version to v$npm_package_version\""
},
"devDependencies": {
"@hapi/hapi": "^18.4.1",
"@hapi/inert": "^5.2.2",
"gulp": "^4.0.2",
"gulp-clean-css": "^4.2.0",
"gulp-cli": "^2.2.0",
"gulp-concat": "^2.6.0",
"gulp-header": "^2.0.9",
"gulp-rename": "^1.4.0",
"gulp-sass": "^4.0.2",
"gulp-uglify": "^3.0.2",
"node-sass": "^4.13.1",
"npm-run-all": "^4.1.5",
"tracking": "^1.1.3"
}
}