forked from HNeukermans/ng2-signalr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.06 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "ng2-signalr",
"version": "1.0.6",
"description": "signalr typescript library",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"types": "lib/index.d.ts",
"scripts": {
"dev": "tsc --watch",
"test": "karma start",
"build": "tsc",
"webpack": "webpack",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"report-coverage": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"prepublish": "tsc",
"ngc-build": "ngc -p ./tsconfig-ngc.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HNeukermans/ng2-signalR.git"
},
"keywords": [
"signalR",
"typescript",
"angular 2"
],
"author": "Hannes Neukermans",
"license": "MIT",
"bugs": {
"url": "https://github.com/HNeukermans/ng2-signalr/issues"
},
"homepage": "https://github.com/HNeukermans/ng2-signalr#readme",
"devDependencies": {
"@angular/common": "^2.4.7",
"@angular/compiler": ">=2.4.7",
"@angular/compiler-cli": "^2.4.7",
"@angular/platform-browser": "^2.4.7",
"@angular/platform-server": "^2.4.7",
"@angular/router": "^3.4.7",
"@types/jasmine": "^2.2.33",
"@types/js-base64": "^2.1.3",
"@types/lodash": "^4.14.40",
"awesome-typescript-loader": "3.0.0-beta.17",
"core-js": "^2.3.0",
"coveralls": "^2.11.15",
"es6-shim": "^0.35.0",
"istanbul-instrumenter-loader": "^1.0.0",
"jasmine": "^2.5.2",
"jasmine-core": "^2.4.1",
"jasmine-node": "^1.14.5",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"lodash": "^4.17.2",
"phantomjs-prebuilt": "^2.1.7",
"reflect-metadata": "^0.1.8",
"rxjs": "^5.0.2",
"ts-loader": "^1.3.3",
"tslint": "4.2.0",
"typescript": "^2.1.6",
"webpack": "2.2.0-rc.3",
"zone.js": "^0.7.4"
},
"peerDependencies": {},
"dependencies": {
"@angular/core": ">=2.0.0",
"@angular/router": ">=3.0.0"
}
}