-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.51 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
47
48
49
50
51
52
{
"name": "angular2-testing",
"version": "1.0.0",
"description": "Angular 2 testing with Karma, Jasmine and Istanbul",
"main": "index.js",
"scripts": {
"start": "http-server -c-1 -o -p 8875 .",
"build": "rm -rf dist && tsc -p src && cp node_modules/@ngrx/store/dist/store.js dist/store.js",
"pretest": "npm run build",
"test": "karma start karma.conf.js",
"posttest": "node_modules/.bin/remap-istanbul -i coverage/coverage-final.json -o coverage -t html",
"coverage": "http-server -c-1 -o -p 9875 ./coverage"
},
"author": "Raul Jimenez <elecash@gmail.com> (http://twofuckingedevelopers.com/)",
"license": "MIT",
"dependencies": {
"@ngrx/store": "^1.2.1",
"angular2": "2.0.0-beta.1",
"es6-promise": "3.0.2",
"es6-shim": "0.34.1",
"reflect-metadata": "0.1.3",
"rxjs": "5.0.0-beta.1",
"zone.js": "0.5.10"
},
"devDependencies": {
"http-server": "0.8.5",
"jasmine-core": "2.4.1",
"karma": "0.13.19",
"karma-chrome-launcher": "0.2.2",
"karma-coverage": "0.5.3",
"karma-jasmine": "0.3.6",
"remap-istanbul": "0.5.1",
"systemjs": "0.19.17",
"typescript": "1.7.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Elecash/angular2-testing.git"
},
"keywords": [
"angular2",
"karma",
"jasmine",
"istanbul",
"unit-testing",
"typescript"
],
"bugs": {
"url": "https://github.com/Elecash/angular2-testing/issues"
},
"homepage": "https://github.com/Elecash/angular2-testing#readme"
}