UNPKG

2.04 kBJSONView Raw
1{
2 "name": "thelounge",
3 "description": "The self-hosted Web IRC client",
4 "version": "2.3.0",
5 "preferGlobal": true,
6 "bin": {
7 "lounge": "index.js"
8 },
9 "repository": {
10 "type": "git",
11 "url": "https://github.com/thelounge/lounge.git"
12 },
13 "homepage": "https://thelounge.github.io/",
14 "scripts": {
15 "coverage": "nyc mocha",
16 "start": "node index start",
17 "start-dev": "npm-run-all --parallel watch start",
18 "build": "npm-run-all build:*",
19 "build:font-awesome": "node scripts/build-fontawesome.js",
20 "build:webpack": "webpack --progress",
21 "watch": "webpack --watch",
22 "test": "npm-run-all -c test:* lint",
23 "test:mocha": "mocha",
24 "lint": "npm-run-all -c lint:*",
25 "lint:js": "eslint .",
26 "lint:css": "stylelint \"**/*.css\"",
27 "prepublishOnly": "NODE_ENV=production npm run build"
28 },
29 "keywords": [
30 "lounge",
31 "browser",
32 "web",
33 "chat",
34 "client",
35 "irc",
36 "server"
37 ],
38 "license": "MIT",
39 "engines": {
40 "node": ">=4.2.0"
41 },
42 "dependencies": {
43 "bcryptjs": "2.4.3",
44 "cheerio": "0.22.0",
45 "colors": "1.1.2",
46 "commander": "2.9.0",
47 "event-stream": "3.3.4",
48 "express": "4.15.2",
49 "express-handlebars": "3.0.0",
50 "fs-extra": "3.0.1",
51 "irc-framework": "2.8.1",
52 "ldapjs": "1.0.1",
53 "lodash": "4.17.4",
54 "moment": "2.18.1",
55 "read": "1.0.7",
56 "request": "2.81.0",
57 "semver": "5.3.0",
58 "socket.io": "1.7.3",
59 "spdy": "3.4.4"
60 },
61 "devDependencies": {
62 "babel-core": "6.24.1",
63 "babel-loader": "7.0.0",
64 "babel-preset-env": "1.4.0",
65 "chai": "3.5.0",
66 "eslint": "3.19.0",
67 "font-awesome": "4.7.0",
68 "fuzzy": "0.1.3",
69 "handlebars": "4.0.8",
70 "handlebars-loader": "1.5.0",
71 "jquery": "3.2.1",
72 "jquery-textcomplete": "1.8.0",
73 "jquery-ui": "1.12.1",
74 "mocha": "3.3.0",
75 "mousetrap": "1.6.1",
76 "npm-run-all": "4.0.2",
77 "nyc": "10.3.2",
78 "socket.io-client": "1.7.3",
79 "stylelint": "7.10.1",
80 "urijs": "1.18.10",
81 "webpack": "2.5.1"
82 }
83}