This repository has been archived by the owner on May 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
69 lines (69 loc) · 1.63 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
{
"name": "maid-irc",
"version": "0.3.6",
"description": "A modern web IRC client. Built on Node.",
"author": "Madison Tries <[email protected]> (https://github.com/Phalanxia)",
"homepage": "http://madi.moe/Maid-IRC/",
"preferGlobal": true,
"bin": {
"maid": "src/index.js"
},
"dependencies": {
"body-parser": "^1.15.0",
"commander": "^2.9.0",
"compression": "^1.6.1",
"express": "^4.13.4",
"express-minify": "^0.2.0",
"irc": "^0.4.1",
"jade": "^1.11.0",
"method-override": "^2.3.5",
"semver": "^5.1.0",
"serve-favicon": "^2.3.0",
"socket.io": "^1.4.5",
"yamljs": "^0.2.5"
},
"devDependencies": {
"babel-eslint": "^5.0.0",
"errorhandler": "~1.4.2",
"eslint": "^2.2.0",
"eslint-config-airbnb": "^6.0.2",
"grunt": "~0.4.5",
"grunt-babel": "^5.0.3",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-compress": "^1.0.0",
"grunt-contrib-concat": "^1.0.0",
"grunt-contrib-copy": "^0.8.1",
"grunt-contrib-handlebars": "^0.11.0",
"grunt-contrib-less": "^1.2.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-shell": "~1.2.1",
"morgan": "~1.9.1"
},
"keywords": [
"irc",
"web",
"client",
"server",
"app",
"application",
"chat",
"webirc",
"webchat",
"deprecated"
],
"repository": {
"type": "git",
"url": "https://github.com/Phalanxia/Maid-IRC.git"
},
"license": "MIT",
"engines": {
"node": ">=4.1.0"
},
"scripts": {
"start": "node src/index.js start",
"build": "grunt build",
"package": "grunt package"
},
"readmeFilename": "Readme.md",
"bugs": "https://github.com/Phalanxia/Maid-IRC/issues"
}