-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.35 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
{
"author": "Put.io <[email protected]>",
"bugs": {
"url": "https://github.com/putdotio/putio-sockjs/issues"
},
"dependencies": {
"@putdotio/api-client": "8.27.1",
"exponential-backoff": "^3.1.0",
"nanoevents": "^5.1.8",
"sockjs-client": "^1.5.0"
},
"devDependencies": {
"@putdotio/prettier-config": "^1.0.0",
"@types/sockjs-client": "^1.1.1",
"coveralls": "^3.1.0",
"husky": "^4.2.5",
"jest-mock-extended": "^1.0.9",
"tsdx": "^0.14.1",
"tslib": "^2.0.1",
"typescript": "^4.1.2"
},
"engines": {
"node": ">=10"
},
"files": [
"dist",
"src"
],
"homepage": "https://github.com/putdotio/putio-sockjs",
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"license": "MIT",
"main": "dist/index.js",
"module": "dist/putio-sockjs.esm.js",
"name": "@putdotio/socket-client",
"peerDependencies": {},
"prettier": "@putdotio/prettier-config",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/putdotio/putio-sockjs.git"
},
"scripts": {
"build": "tsdx build",
"coveralls": "tsdx test --coverage && cat ./coverage/lcov.info | coveralls",
"lint": "tsdx lint",
"prepare": "tsdx build",
"start": "tsdx watch",
"test": "tsdx test"
},
"typings": "dist/index.d.ts",
"version": "4.4.2"
}