forked from kamilkp/ng2-vs-for
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.18 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.18 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
46
{
"name": "ng2-vs-for",
"version": "1.1.1",
"scripts": {
"tsc": "tsc",
"tsc:w": "tsc -w",
"lite": "lite-server",
"start": "concurrent \"npm run tsc:w\" \"npm run lite\" "
},
"license": "MIT",
"description": "Virtual Scroll for Angular 2 ngFor directive",
"author": {
"name": "Kamil Pekala",
"email": "kamilkp@gmail.com",
"url": "http://github.com/kamilkp"
},
"main": "src/ng2-vs-for.module.ts",
"repository": {
"type": "git",
"url": "https://github.com/kamilkp/ng2-vs-for.git"
},
"dependencies": {
"core-js": "^2.4.0",
"reflect-metadata": "^0.1.3",
"rxjs": "5.0.0-beta.6",
"systemjs": "0.19.27",
"zone.js": "^0.6.13"
},
"peerDependencies": {
"@angular/core": "^2.0.0-rc.5"
},
"devDependencies": {
"@angular/forms": "^0.3.0",
"@angular/common": "^2.0.0-rc.5",
"@angular/compiler": "^2.0.0-rc.5",
"@angular/core": "^2.0.0-rc.5",
"@angular/platform-browser": "^2.0.0-rc.5",
"@angular/platform-browser-dynamic": "^2.0.0-rc.5",
"concurrently": "^1.0.0",
"lite-server": "^1.3.1",
"rxjs": "^5.0.0-beta.6",
"systemjs": "0.19.6",
"typescript": "^1.7.3",
"zone.js": "^0.6.13"
}
}