This repository has been archived by the owner on Oct 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.93 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
52
53
54
55
56
57
58
59
60
61
62
{
"name": "ng2-img-max",
"version": "2.1.4",
"description": "Angular 2 module to resize images down to a certain width and height or to reduce the quality to fit a certain maximal filesize - all in the browser.",
"repository": {
"type": "git",
"url": "git+https://github.com/bergben/ng2-img-max.git"
},
"license": "MIT",
"main": "./dist/bundles/ng2-img-max.umd.js",
"module": "./dist/ng2-img-max.js",
"typings": "./dist/ng2-img-max.d.ts",
"scripts": {
"transpile": "ngc",
"package": "rollup -c",
"minify": "uglifyjs dist/bundles/ng2-img-max.umd.js --screw-ie8 --compress --mangle --comments --output dist/bundles/ng2-img-max.umd.min.js",
"build": "npm run transpile && npm run package && npm run minify"
},
"author": {
"name": "Benedikt Berger",
"email": "benedikt.berger@live.de"
},
"keywords": [
"angular",
"angular2",
"img-max",
"maximal",
"size",
"limit",
"resize"
],
"dependencies": {
"ng2-pica": "1.2.8"
},
"peerDependencies": {
"@angular/core": "^2.0.0",
"core-js": "^2.4.1",
"rxjs": "^5.0.0-beta.12"
},
"devDependencies": {
"@angular/common": "2.4.8",
"@angular/compiler": "^2.4.8",
"@angular/compiler-cli": "^2.4.8",
"@angular/core": "2.4.8",
"@angular/platform-browser": "2.4.8",
"@angular/platform-browser-dynamic": "2.4.8",
"@angular/router": "3.4.8",
"@types/node": "^7.0.5",
"core-js": "^2.4.1",
"reflect-metadata": "^0.1.3",
"rollup": "^0.41.4",
"rxjs": "5.1.1",
"tslint": "^4.4.2",
"typescript": "^2.1.6",
"uglify-js": "^2.7.5",
"zone.js": "^0.7.7"
},
"bugs": {
"url": "https://github.com/bergben/ng2-img-max/issues"
},
"homepage": "https://github.com/bergben/ng2-img-max#readme"
}