-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.27 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
{
"name": "@archetypical/auto-hub-connection",
"version": "1.0.5",
"description": "Auto reconnecting wrapper for SignalR client",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "tslint -p tsconfig.json",
"test": "jest -c jestconfig.json --coverage",
"prepare": "yarn run build && yarn run lint",
"prepublishOnly": "yarn test"
},
"author": {
"name": "Archetypical Software"
},
"license": "LGPL-3.0-or-later",
"devDependencies": {
"@types/jest": "^23.3.13",
"@types/node": "^12.7.2",
"jest": "^23.6.0",
"prettier": "^1.15.3",
"ts-jest": "^23.10.5",
"ts-loader": "^5.3.2",
"tslint": "^5.12.0",
"tslint-config-prettier": "^1.17.0",
"typescript": "^3.2.2"
},
"dependencies": {
"@aspnet/signalr": "^1.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ArchetypicalSoftware/auto-hub-connection"
},
"files": [
"lib/**/*",
"LICENSE",
"README.md"
],
"keywords": [
"SignalR",
"HubConnection",
"Automatic",
"Reconnect",
"Automated",
"Connect"
],
"jest": {
"testEnvironment": "node"
},
"homepage": "https://github.com/ArchetypicalSoftware/auto-hub-connection",
"typings": "./lib/index.d.ts"
}