-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
52 lines (52 loc) · 1.35 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
{
"name": "@trademe/ng-defer-load",
"version": "14.1.0",
"description": "Angular directive to load elements lazily",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"clean": "rimraf ./compiled && rimraf ./dist",
"prebuild": "npm run clean",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"build": "ng-packagr -p ng-package.json",
"prepublishOnly": "npm run lint && npm run build"
},
"author": "Vamsi Vempati, Michael Zoellner, Nick Webster",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/TradeMe/ng-defer-load"
},
"keywords": [
"angular",
"lazyload",
"defer",
"deferload",
"intersection",
"intersectionobserver"
],
"dependencies": {
"tslib": "^2.3.0"
},
"peerDependencies": {
"@angular/common": "^14.2.12",
"@angular/core": "^14.2.12",
"@angular/platform-browser": "^14.2.12",
"rxjs": "~7.5.7",
"zone.js": "~0.11.8"
},
"devDependencies": {
"@angular/common": "^14.2.12",
"@angular/core": "^14.2.12",
"@angular/platform-browser": "^14.2.12",
"rxjs": "~7.5.7",
"zone.js": "~0.11.8",
"@angular/compiler": "^14.2.12",
"@angular/compiler-cli": "^14.2.12",
"ng-packagr": "^14.2.2",
"rimraf": "^3.0.0",
"tslint": "^6.1.3",
"typescript": "~4.8.4",
"tslib": "^2.3.0"
}
}