forked from rintoj/ngx-virtual-scroller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.43 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": "angular2-virtual-scroll",
"version": "0.1.5",
"description": "Angular 2 module for virtual -infinite- list. Supports multi-column",
"main": "dist/virtual-scroll.js",
"types": "dist/virtual-scroll.d.ts",
"scripts": {
"cleanup": "rimraf dist",
"build": "npm run cleanup && npm run ngc",
"lint": "tslint src/**/*.ts",
"prepublish": "npm run build",
"start": "npm run watch",
"test": "npm test",
"ngc": "ngc",
"tslint": "tslint",
"watch": "ngc -- -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rintoj/angular2-virtual-scroll.git"
},
"keywords": [
"virtual scroll",
"scroll",
"angular 2"
],
"author": "Rinto Jose",
"license": "MIT",
"bugs": {
"url": "https://github.com/rintoj/angular2-virtual-scroll/issues"
},
"homepage": "https://github.com/rintoj/angular2-virtual-scroll#readme",
"devDependencies": {
"@angular/common": "~2.4.0",
"@angular/compiler": "~2.4.0",
"@angular/compiler-cli": "^2.4.1",
"@angular/core": "~2.4.0",
"@angular/forms": "~2.4.0",
"@angular/http": "~2.4.0",
"@angular/platform-browser": "~2.4.0",
"@angular/platform-browser-dynamic": "~2.4.0",
"@angular/router": "~3.4.0",
"@types/node": "6.0.45",
"codelyzer": "^2.0.0",
"core-js": "^2.4.1",
"rimraf": "2.5.4",
"rxjs": "5.0.1",
"tslint": "^4.4.2",
"typescript": "^2.1.6",
"zone.js": "^0.7.4"
}
}