-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 742 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 742 Bytes
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
{
"name": "irc-server",
"version": "0.0.4",
"description": "IRC server implementation in Node.js",
"main": "index.js",
"directories": {
"example": "example"
},
"scripts": {
"test": "node test",
"start": "node example"
},
"keywords": [
"irc",
"irc-server"
],
"author": "Lsong",
"license": "MIT",
"dependencies": {
"split2": "^2.1.1",
"each-async": "^1.1.1",
"stream-combiner": "^0.2.2",
"flush-write-stream": "^2.0.0"
},
"devDependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/song940/node-irc.git"
},
"bugs": {
"url": "https://github.com/song940/node-irc/issues"
},
"homepage": "https://github.com/song940/node-irc#readme"
}