-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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
{
"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.ts",
"repository": {
"type": "git",
"url": "https://github.com/kamilkp/ng2-vs-for.git"
},
"peerDependencies": {
"@angular/core": "^4.0.0-beta.3"
},
"devDependencies": {
"@angular/common": "^4.0.0-beta.3",
"@angular/compiler": "^4.0.0-beta.3",
"@angular/core": "^4.0.0-beta.3",
"@angular/platform-browser": "^4.0.0-beta.3",
"@angular/platform-browser-dynamic": "^4.0.0-beta.3",
"concurrently": "^1.0.0",
"es6-promise": "^3.0.2",
"es6-shim": "^0.35.0",
"lite-server": "^1.3.1",
"rxjs": "^5.0.1",
"systemjs": "0.19.6",
"typescript": "^1.7.3",
"zone.js": "^0.7.2"
}
}