-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1017 Bytes
/
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
{
"name": "nekocafe",
"version": "1.2.0",
"description": "Minimal websocket chat",
"license": "MIT",
"preferGlobal": true,
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"dev": "watchify lib/client.js -o dist/bundle.js -v",
"build": "browserify lib/client.js -o dist/bundle.js",
"start": "node lib/server.js 80"
},
"directories": {
"bin": "./bin"
},
"browserify": {
"transform": [
"es2020"
]
},
"dependencies": {
"choo": "^6.0.0",
"express": "^4.14.0",
"oembed-any": "^0.1.1",
"socket.io": "^1.4.8",
"typed-promisify": "^0.2.0"
},
"devDependencies": {
"browserify": "^13.0.1",
"es2020": "^1.1.7",
"watchify": "^3.7.0"
},
"repository": {
"type": "git",
"url": "https://github.com/notenoughneon/nekocafe.git"
},
"keywords": [
"chat"
],
"author": "Emma Kuo",
"bugs": {
"url": "https://github.com/notenoughneon/nekocafe/issues"
},
"homepage": "https://github.com/notenoughneon/nekocafe"
}