forked from juliemr/ng2-test-seed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 888 Bytes
/
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
{
"name": "ng2-test-seed",
"version": "0.0.1",
"description": "Setup seed for Angular 2 application",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/angular/ng-test-seed.git"
},
"scripts": {
"clean": "rimraf src/**/*.js src/**/*.js.map",
"build": "tsc",
"watch": "tsc --watch",
"serve": "http-server -p 9090 -c-1",
"test": "karma start karma.conf.js"
},
"devDependencies": {
"angular2": "2.0.0-beta.0",
"systemjs": "0.19.6",
"es6-promise": "^3.0.2",
"es6-shim": "^0.33.3",
"reflect-metadata": "0.1.2",
"rxjs": "5.0.0-beta.0",
"zone.js": "0.5.10",
"http-server": "^0.8.5",
"jasmine": "2.3.2",
"karma": "^0.12.23",
"karma-chrome-launcher": "^0.1.4",
"karma-cli": "^0.0.4",
"karma-jasmine": "^0.3.6",
"rimraf": "^2.4.3",
"typescript": "1.6.2"
}
}