-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.8 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
{
"name": "@inpyjamas/ws-broadcast",
"version": "0.2.1",
"description": "A simple (zero config) websocket server to be run as cli or as node module",
"main": "lib/index.js",
"scripts": {
"test": "jest --detectOpenHandles --forceExit",
"test:manual-module": "nodemon --inspect ./test/manual/as-module/index.js",
"start": "node .",
"dev": "DEBUG=websocket nodemon ./lib/index.js",
"dev-cli": "DEBUG=websocket nodemon ./lib/cli.js",
"dev-cli-fish": "env DEBUG=websocket nodemon ./lib/cli.js"
},
"contributors": [
"Constantin Wolf <[email protected]>",
"Fabian Morón Zirfas <[email protected]>",
"Fabian Opitz <[email protected]>",
"Marten Biehl <[email protected]>",
"Thomas Geissl <[email protected]>"
],
"license": "MIT",
"dependencies": {
"commander": "^2.19.0",
"debug": "^4.1.1",
"lodash.merge": "^4.6.1",
"read-config": "^2.0.0",
"ws": "^6.1.4"
},
"bin": {
"ws-broadcast": "./lib/cli.js"
},
"devDependencies": {
"cz-conventional-changelog": "2.1.0",
"eslint": "5.16.0",
"eslint-config-unobtrusive": "1.2.5",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-jest": "22.21.0",
"eslint-plugin-node": "8.0.1",
"jest": "26.6.3",
"nodemon": "1.19.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"directories": {
"example": "examples",
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ixds/ws-broadcast.git"
},
"keywords": [
"broadcast",
"websocket",
"zero",
"config",
"cli"
],
"author": "",
"bugs": {
"url": "https://github.com/ixds/ws-broadcast/issues"
},
"homepage": "https://github.com/ixds/ws-broadcast#readme"
}