forked from smooth80/bouncer.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2 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
72
73
{
"name": "@jacekpietal/bouncer.js",
"version": "2.26.0",
"description": "ʕ•ᴥ•ʔ bouncer.js - static files and websockets server on same process",
"main": "index.js",
"repository": "[email protected]:Prozi/bouncer.js.git",
"author": "Jacek Pietal <[email protected]>",
"license": "MIT",
"typings": "./bouncer-js.d.ts",
"bin": {
"bouncer.js": "./bin/index.js"
},
"private": false,
"scripts": {
"build": "tsc --build tsconfig.json",
"test": "jest",
"start": "npm run demo",
"demo": "node bin demo --chat --debug",
"docs": "docma",
"docs:patch": "sed -i -E 's/id=(.*)--+/id=\\1-/' docs/content/*.html",
"docs:show": "docma serve",
"lint": "eslint --fix $(find . -name '*.js' | grep -v node_modules)",
"format": "prettier {.,**}/*.js --write",
"prepare:npm": "rm -rf node_modules && npm i && npm audit fix",
"prepare:yarn": "rm -rf node_modules && yarn",
"groom": "npm run prepare:npm && npm run prepare:yarn",
"precommit": "yarn build;yarn format;yarn docs"
},
"dependencies": {
"latermom": "^1.0.4",
"mime-types": "^2.1.30",
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v19.2.0"
},
"homepage": "https://prozi.github.io/bouncer.js/",
"devDependencies": {
"@jacekpietal/docma": "^3.3.3",
"dustjs-linkedin": "^2.7.5",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^26.6.3",
"prettier": "^2.3.0",
"typescript": "^4.2.4",
"ws": "^7.4.5",
"@angular/core": "*"
},
"keywords": [
"nodejs",
"chat",
"angular",
"frontend",
"backend",
"websockets",
"socket-io",
"socket-io-client",
"javascript-library",
"http-server",
"handshake",
"static-server",
"angular-service",
"uws",
"uwebsockets",
"rooms",
"static-server-nodejs",
"micro-websockets"
],
"resolutions": {
"underscore": "^1.12.1",
"ecstatic": "^4.1.4",
"clean-css": "^4.1.11",
"braces": "^2.3.1"
}
}