forked from rintoj/ngx-virtual-scroller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.11 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
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "ngx-virtual-scroller",
"version": "1.0.16",
"description": "Angular 4+ module for virtual -infinite- list. Supports horizontal/vertical, variable heights, & multi-column",
"main": "dist/virtual-scroller.js",
"types": "dist/virtual-scroller.d.ts",
"scripts": {
"cleanup": "rimraf dist",
"build": "npm run cleanup && npm run ngc",
"build:docs": "cd demo && npm run build && copyfiles dist/* ../docs -f && cd .. && replace \"<base href=\\\"/\\\">\" \"<base href=\\\"/ngx-virtual-scroller/\\\">\" docs/index.html",
"lint": "tslint src/**/*.ts",
"prepublish": "npm run build:docs && npm run build",
"start": "npm run watch",
"test": "npm test",
"ngc": "ngc",
"tslint": "tslint",
"watch": "ngc -- -w",
"update-npm-versions": "npm-check --skip-unused --update-all --save-exact --ignore typescript"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rintoj/ngx-virtual-scroller.git"
},
"keywords": [
"virtual scroll",
"scroll",
"ngx",
"angular",
"angular 2"
],
"contributors": [
{
"name": "Rinto Jose"
},
{
"name": "Devin Garner"
},
{
"name": "Pavel Kukushkin"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/rintoj/ngx-virtual-scroller/issues"
},
"homepage": "https://github.com/rintoj/ngx-virtual-scroller#readme",
"devDependencies": {
"@angular/cli": "^1.3.0",
"@angular/common": "^4.3.0",
"@angular/compiler": "^4.3.0",
"@angular/compiler-cli": "^4.3.0",
"@angular/core": "^4.3.0",
"@angular/forms": "^4.3.0",
"@angular/http": "^4.3.0",
"@angular/platform-browser": "^4.3.0",
"@angular/platform-browser-dynamic": "^4.3.0",
"@angular/router": "^4.3.0",
"@types/node": "^8.0.14",
"codelyzer": "^2.0.0",
"core-js": "^2.4.1",
"replace-x": "^1.5.0",
"replace": "^1.0.0",
"copyfiles": "^2.1.0",
"rimraf": "^2.6.1",
"rxjs": "^5.4.2",
"tslint": "^5.5.0",
"typescript": "2.4.1",
"zone.js": "^0.8.13"
},
"dependencies": {
"@types/tween.js": "^16.6.1",
"@tweenjs/tween.js": "^17.1.0"
}
}