-
-
Notifications
You must be signed in to change notification settings - Fork 753
/
package.json
71 lines (71 loc) · 1.74 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
{
"name": "@feathersjs/socketio-client",
"description": "The client for Socket.io through feathers-socketio",
"version": "5.0.0-beta.0",
"homepage": "https://feathersjs.com",
"main": "lib/index.js",
"keywords": [
"feathers",
"feathers-plugin"
],
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/daffl"
},
"repository": {
"type": "git",
"url": "git://github.com/feathersjs/feathers.git"
},
"author": {
"name": "Feathers contributors",
"email": "hello@feathersjs.com",
"url": "https://feathersjs.com"
},
"contributors": [],
"bugs": {
"url": "https://github.com/feathersjs/feathers/issues"
},
"engines": {
"node": ">= 12"
},
"scripts": {
"prepublish": "npm run compile",
"compile": "shx rm -rf lib/ && tsc",
"test": "mocha --config ../../.mocharc.json --recursive test/**.test.ts test/**/*.test.ts"
},
"directories": {
"lib": "lib"
},
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"src/**",
"lib/**",
"*.d.ts",
"*.js"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@feathersjs/transport-commons": "^5.0.0-beta.0"
},
"devDependencies": {
"@feathersjs/adapter-memory": "^5.0.0-beta.0",
"@feathersjs/commons": "^5.0.0-beta.0",
"@feathersjs/feathers": "^5.0.0-beta.0",
"@feathersjs/socketio": "^5.0.0-beta.0",
"@feathersjs/tests": "^5.0.0-beta.0",
"@feathersjs/transport-commons": "^5.0.0-pre.0",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.37",
"mocha": "^8.3.2",
"shx": "^0.3.3",
"socket.io-client": "^4.0.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"gitHead": "3b953f85cc1c2184a032bebac302f8de8a2f0d4d"
}