forked from HNeukermans/ng2-signalr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.46 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
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "ng2-signalr-patched",
"version": "6.1.2",
"description": "angular2 signalr library patched to provide additional configs to jQuery SignalR",
"main": "bundles/ng2-signalr.umd.js",
"module": "index.js",
"scripts": {
"build": "node build.js",
"test": "karma start --single-run --no-auto-watch",
"pack-lib": "npm pack ./dist",
"publish-lib": "npm publish ./dist",
"compodoc": "compodoc -p tsconfig.json",
"compodoc-serve": "compodoc -s",
"report-coverage": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"cover": "istanbul cover node_modules/jasmine/bin/jasmine.js"
},
"typings": "index.d.ts",
"author": "Hannes Neukermans / Kevin Diem",
"repository": {
"type": "git",
"url": "git+https://github.com/kgdiem/ng2-signalR.git"
},
"bugs": {
"url": "https://github.com/robisim74/ng2-signalr/issues"
},
"homepage": "https://github.com/kgdiem/ng2-signalR",
"keywords": [
"signalR",
"typescript",
"angular 2",
"angular 3",
"angular 4",
"angular 5",
"angular 6"
],
"license": "MIT",
"peerDependencies": {
"@angular/common": ">= 2.0.0 || >= 6.0.0",
"@angular/core": ">= 2.0.0 || >= 6.0.0",
"@angular/router": ">=3.0.0 || >= 6.0.0",
"jquery": ">= 2.0.0",
"signalr": ">= 2.2.1"
},
"devDependencies": {
"@angular/animations": "6.0.0",
"@angular/common": "6.0.0",
"@angular/compiler": "6.0.0",
"@angular/compiler-cli": "6.0.0",
"@angular/core": "6.0.0",
"@angular/platform-browser": "6.0.0",
"@angular/platform-browser-dynamic": "6.0.0",
"@angular/platform-server": "6.0.0",
"@angular/router": "6.0.0",
"@types/jasmine": "2.5.41",
"@types/node": "7.0.5",
"chalk": "1.1.3",
"codelyzer": "4.3.0",
"compodoc": "0.0.41",
"core-js": "2.4.1",
"coveralls": "^2.13.0",
"istanbul": "^0.4.5",
"jasmine": "^2.5.3",
"jasmine-core": "2.5.2",
"karma": "^1.4.1",
"karma-chrome-launcher": "2.0.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "1.1.0",
"karma-sourcemap-loader": "0.3.7",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "2.0.2",
"reflect-metadata": "0.1.9",
"rollup": "0.41.4",
"rxjs": "6.1.0",
"shelljs": "0.7.6",
"ts-helpers": "1.1.2",
"ts-loader": "2.0.0",
"tslint": "5.11.0",
"typescript": "2.7.2",
"uglify-js": "2.7.5",
"webpack": "2.2.1",
"zone.js": "0.7.6"
},
"dependencies": {
"eslint": "^4.7.2"
}
}