forked from imgeng/imageengine-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.29 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.29 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": "@imageengine/imageengine-angular",
"version": "0.0.11",
"description": "An Angular (12) component for easing usage of ImageEngine's Image CDN. Includes functionality to derive sizing directives directly from the elements real display sizes and ancillary functionality such as lazy loading of off-screen images, viewport dimensions change responsiveness (as in, refetch of assets files if the directives/sizing changes)",
"homepage": "https://github.com/imgeng/imageengine-angular",
"repository": {
"type": "git",
"url": "git+https://github.com/imgeng/imageengine-angular.git"
},
"author": "Micael Nussbaumer",
"license": "MIT",
"scripts": {
"test": "jest"
},
"peerDependencies": {
"@angular/common": "^12.1.1",
"@angular/core": "^12.1.1"
},
"dependencies": {
"imageengine-helpers": "^0.0.3",
"tslib": "^2.2.0"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"jest": "^27.0.6",
"jest-preset-angular": "^9.0.4"
},
"jest": {
"preset": "jest-preset-angular",
"setupFilesAfterEnv": [
"<rootDir>/setup-jest.ts"
],
"roots": [
"<rootDir>/src"
]
},
"bugs": {
"url": "https://github.com/imgeng/imageengine-angular/issues"
},
"main": "index.js",
"keywords": [
"imageengine",
"angular"
]
}