-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.23 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": "test_angular2",
"version": "1.0.0",
"scripts": {
"tsc": "tsc",
"tsc:w": "tsc -w",
"lite": "lite-server --port 3000",
"test": "karma start karma.conf.js",
"coverage": "http-server -c-1 -o -p 4000 ./coverage/*",
"runTests": "concurrent \"npm run test\" \"npm run coverage\"",
"start": "concurrent \"npm run tsc:w\" \"npm run lite\""
},
"license": "MIT",
"dependencies": {
"angular2": "^2.0.0-beta.7",
"bootstrap": "^3.3.6",
"es6-promise": "^3.0.2",
"es6-shim": "^0.33.13",
"fbjs": "^0.7.2",
"flux": "^2.1.1",
"reflect-metadata": "^0.1.2",
"rxjs": "^5.0.0-beta.2",
"systemjs": "^0.19.22",
"zone.js": "^0.5.15"
},
"devDependencies": {
"concurrently": "^2.0.0",
"events": "^1.1.0",
"http-server": "^0.9.0",
"jasmine": "^2.4.1",
"jasmine-core": "^2.4.1",
"jasmine-sinon": "^0.4.0",
"karma": "^0.13.21",
"karma-chrome-launcher": "^0.2.2",
"karma-coverage": "^0.5.3",
"karma-jasmine": "^0.3.7",
"karma-sinon": "^1.0.4",
"karma-spec-reporter": "0.0.24",
"lite-server": "^2.1.0",
"remap-istanbul": "^0.5.1",
"sinon": "^1.17.3",
"systemjs": "^0.19.22",
"traceur": "0.0.102",
"typescript": "^1.8.2"
}
}