-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.32 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
{
"name": "ngconf-2016-zones",
"version": "0.0.1",
"description": "ngconf 2016 testing and zones talk - examples",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/juliemr/ngconf-2016-zones"
},
"scripts": {
"postinstall": "typings install --ambient",
"clean": "rimraf built/",
"copy": "cp src/{*.html,*.css,*.js} built/",
"copytemplates": "cp src/app/{*.html,*.css} built/app/",
"build": "tsc && npm run copy",
"watch": "tsc --watch",
"serve": "http-server -p 9090 -c-1",
"test": "karma start karma.conf.js"
},
"dependencies": {
"@angular/common": "2.0.0-rc.1",
"@angular/compiler": "2.0.0-rc.1",
"@angular/core": "2.0.0-rc.1",
"@angular/platform-browser": "2.0.0-rc.1",
"@angular/platform-browser-dynamic": "2.0.0-rc.1",
"@angular/router": "2.0.0-rc.1",
"clang-format": "^1.0.35",
"es6-promise": "^3.0.2",
"es6-shim": "^0.35.0",
"reflect-metadata": "0.1.2",
"rxjs": "5.0.0-beta.6",
"systemjs": "0.19.26",
"zone.js": "0.6.12"
},
"devDependencies": {
"http-server": "^0.8.5",
"jasmine": "2.3.2",
"karma": "^0.13.22",
"karma-chrome-launcher": "^0.2.1",
"karma-cli": "^0.0.4",
"karma-jasmine": "^0.3.6",
"rimraf": "^2.4.3",
"typescript": "1.8.10",
"typings": "^0.6.6"
}
}