-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.04 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
{
"name": "fortune-ws",
"description": "WebSocket implementation for Fortune.js.",
"version": "1.0.4",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:fortunejs/fortune-ws.git"
},
"scripts": {
"lint": "eslint lib",
"postpublish": "npm run tag",
"tag": "git tag `npm v fortune-ws version` && git push origin --tags",
"test": "npm run lint && node test/server.js & browserify test/client.js | tape-run"
},
"dependencies": {
"msgpack-lite": "^0.1.26",
"ws": "^6.0.0"
},
"optionalDependencies": {
"bufferutil": "^4.0.0",
"utf-8-validate": "^5.0.1"
},
"devDependencies": {
"browserify": "^16.2.3",
"chalk": "^2.4.1",
"eslint": "^5.6.0",
"eslint-config-boss": "^1.0.6",
"fortune": "^5.5.3",
"tapdance": "^5.1.0",
"tape-run": "^4.0.0"
},
"main": "lib/index.js",
"browser": "lib/browser.js",
"eslintConfig": {
"extends": "boss/es5"
},
"engines": {
"node": ">=10"
},
"keywords": [
"ws",
"websocket",
"fortune"
]
}