-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 880 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 880 Bytes
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
{
"name": "socketio-promises",
"version": "1.0.0",
"description": "A socket.io wrapper that makes many of the functions promise based",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"run": "node dist/index.js",
"start": "npm-run-all build run",
"build-tests": "npm-run-all build test",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DisStreamChat/socketio-wrapper.git"
},
"keywords": [
"socketio",
"websockets",
"promises"
],
"author": "David Snyder",
"license": "MIT",
"bugs": {
"url": "https://github.com/DisStreamChat/socketio-wrapper/issues"
},
"homepage": "https://github.com/DisStreamChat/socketio-wrapper#readme",
"dependencies": {
"@types/socket.io": "^2.1.11"
},
"devDependencies": {
"socket.io": "^2.3.0"
}
}