-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
49 lines (49 loc) · 1.33 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
{
"name": "ws-wrapper",
"version": "2.2.0",
"description": "Lightweight WebSocket wrapper lib with socket.io-like event handling, requests, and channels",
"main": "./lib/wrapper.js",
"browser": "./dist/index.js",
"dependencies": {
"eventemitter3": "^5.0.1"
},
"devDependencies": {
"@babel/cli": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"koa": "^2.15.3",
"koa-router": "^12.0.1",
"module-concat": ">=2 <3",
"prettier": "^3.3.2",
"ws": "^8.17.1"
},
"scripts": {
"prepublish": "npm run concat && npm run babel",
"format": "prettier --config .prettierrc --write \"**/*.js\"",
"lint": "eslint . --ignore-pattern dist",
"concat": "node ./node_modules/module-concat ./lib/wrapper.js ./dist/index.js",
"babel": "babel dist/index.js --out-file dist/index.js --presets=@babel/preset-env",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bminer/ws-wrapper.git"
},
"keywords": [
"websocket",
"ws",
"event",
"handling",
"channels",
"request",
"namespace"
],
"author": "Blake C. Miner",
"license": "MIT",
"bugs": {
"url": "https://github.com/bminer/ws-wrapper/issues"
},
"homepage": "https://github.com/bminer/ws-wrapper#readme"
}