-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
51 lines (51 loc) · 1.65 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
{
"name": "ng-conf-testing",
"version": "1.0.0",
"description": "Angular2 Testing Workshop for ngConf",
"main": "index.js",
"scripts": {
"postinstall": "typings install",
"start": "npm run build && http-server -c-1 -o -s -p 8875 .",
"dev": "npm run test && http-server -c-1 -o -s -p 8875 .",
"build": "rm -rf dist && tsc -p src",
"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 -s -p 9875 ./coverage"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/Elecash/ng-conf-testing.git"
},
"author": "Raul Jimenez <[email protected]> (http://twofuckingedevelopers.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Elecash/ng-conf-testing/issues"
},
"homepage": "https://github.com/Elecash/ng-conf-testing#readme",
"dependencies": {
"@angular/common": "2.0.0-rc.2",
"@angular/compiler": "2.0.0-rc.2",
"@angular/core": "2.0.0-rc.2",
"@angular/http": "2.0.0-rc.2",
"@angular/platform-browser": "2.0.0-rc.2",
"@angular/platform-browser-dynamic": "2.0.0-rc.2",
"es6-promise": "3.1.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.9.0",
"jasmine-core": "2.4.1",
"karma": "0.13.22",
"karma-chrome-launcher": "0.2.2",
"karma-coverage": "0.5.3",
"karma-jasmine": "0.3.6",
"remap-istanbul": "0.6.3",
"typescript": "1.8.10",
"typings": "0.8.1"
}
}