forked from thelounge/thelounge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.17 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "thelounge",
"description": "The self-hosted Web IRC client",
"version": "2.6.0-rc.4",
"publishConfig": {
"tag": "next"
},
"preferGlobal": true,
"bin": {
"lounge": "index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/thelounge/lounge.git"
},
"homepage": "https://thelounge.github.io/",
"scripts": {
"coverage": "nyc mocha",
"start": "node index start",
"start-dev": "npm-run-all --parallel watch start",
"build": "npm-run-all build:*",
"build:webpack": "webpack",
"watch": "webpack --watch",
"test": "npm-run-all -c test:* lint",
"test:mocha": "mocha",
"lint": "npm-run-all -c lint:*",
"lint:js": "eslint . --report-unused-disable-directives",
"lint:css": "stylelint \"client/**/*.css\""
},
"keywords": [
"lounge",
"browser",
"web",
"chat",
"client",
"irc",
"server"
],
"license": "MIT",
"engines": {
"node": ">=4.2.0"
},
"dependencies": {
"bcryptjs": "2.4.3",
"cheerio": "0.22.0",
"colors": "1.1.2",
"commander": "2.11.0",
"express": "4.16.2",
"express-handlebars": "3.0.0",
"fs-extra": "4.0.2",
"irc-framework": "2.9.1",
"ldapjs": "1.0.1",
"lodash": "4.17.4",
"moment": "2.19.2",
"package-json": "4.0.1",
"read": "1.0.7",
"request": "2.83.0",
"semver": "5.4.1",
"socket.io": "2.0.4",
"spdy": "3.4.7",
"ua-parser-js": "0.7.17",
"urijs": "1.19.0",
"web-push": "3.2.4"
},
"devDependencies": {
"babel-core": "6.26.0",
"babel-loader": "7.1.2",
"babel-preset-env": "1.6.1",
"chai": "4.1.2",
"copy-webpack-plugin": "4.2.0",
"css.escape": "1.5.1",
"emoji-regex": "6.5.1",
"eslint": "4.11.0",
"font-awesome": "4.7.0",
"fuzzy": "0.1.3",
"handlebars": "4.0.11",
"handlebars-loader": "1.6.0",
"intersection-observer": "0.4.3",
"jquery": "3.2.1",
"jquery-textcomplete": "1.8.4",
"jquery-ui": "1.12.1",
"mocha": "4.0.1",
"mousetrap": "1.6.1",
"npm-run-all": "4.1.2",
"nyc": "11.3.0",
"socket.io-client": "2.0.4",
"stylelint": "8.2.0",
"stylelint-config-standard": "17.0.0",
"webpack": "3.8.1"
}
}