-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
39 lines (39 loc) · 1.03 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
{
"name": "angular2-library-example",
"version": "1.0.6",
"description": "An example repository for building your own Angular 2 library",
"main": "angular2-library-example.js",
"scripts": {
"watch": "tsc -p src -w",
"build": "rm -rf lib && tsc -p src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jhades/angular2-library-seed.git"
},
"keywords": [
"Angular",
"2",
"Library",
"Seed"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/jhades/angular2-library-seed/issues"
},
"homepage": "https://github.com/jhades/angular2-library-seed#readme",
"devDependencies": {
"typescript": "^1.7.5"
},
"dependencies": {
"@angular/common": "2.0.0-rc.1",
"@angular/compiler": "2.0.0-rc.1",
"@angular/core": "2.0.0-rc.1",
"@angular/http": "2.0.0-rc.1",
"@angular/platform-browser": "2.0.0-rc.1",
"@angular/platform-browser-dynamic": "2.0.0-rc.1",
"rxjs": "5.0.0-beta.6",
"zone.js":"^0.6.12"
}
}