2014-03-04 08:31:52 -08:00
|
|
|
{
|
2016-02-10 04:55:10 +00:00
|
|
|
"name": "thelounge",
|
2015-04-29 12:55:13 -07:00
|
|
|
"description": "The self-hosted Web IRC client",
|
2017-06-09 02:06:51 -04:00
|
|
|
"version": "2.3.1",
|
2014-08-13 14:35:20 -07:00
|
|
|
"preferGlobal": true,
|
|
|
|
"bin": {
|
2016-02-10 04:55:10 +00:00
|
|
|
"lounge": "index.js"
|
2014-08-13 14:35:20 -07:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2016-02-10 04:55:10 +00:00
|
|
|
"url": "https://github.com/thelounge/lounge.git"
|
2014-08-13 14:35:20 -07:00
|
|
|
},
|
2016-05-06 20:51:38 +03:00
|
|
|
"homepage": "https://thelounge.github.io/",
|
2014-08-13 14:35:20 -07:00
|
|
|
"scripts": {
|
2016-12-29 02:51:26 -05:00
|
|
|
"coverage": "nyc mocha",
|
2017-02-17 22:23:01 -05:00
|
|
|
"start": "node index start",
|
2016-12-18 17:53:28 +02:00
|
|
|
"start-dev": "npm-run-all --parallel watch start",
|
2016-09-22 08:58:47 -07:00
|
|
|
"build": "npm-run-all build:*",
|
2016-06-04 16:55:21 -04:00
|
|
|
"build:font-awesome": "node scripts/build-fontawesome.js",
|
2017-03-19 10:02:39 +02:00
|
|
|
"build:webpack": "webpack --progress",
|
2017-01-07 18:04:46 -05:00
|
|
|
"watch": "webpack --watch",
|
2016-12-18 17:53:28 +02:00
|
|
|
"test": "npm-run-all -c test:* lint",
|
2016-10-18 23:30:46 -04:00
|
|
|
"test:mocha": "mocha",
|
2016-12-18 17:53:28 +02:00
|
|
|
"lint": "npm-run-all -c lint:*",
|
|
|
|
"lint:js": "eslint .",
|
2016-05-02 00:55:45 -04:00
|
|
|
"lint:css": "stylelint \"**/*.css\"",
|
2017-01-07 18:29:56 -05:00
|
|
|
"prepublishOnly": "NODE_ENV=production npm run build"
|
2014-03-24 14:44:41 +01:00
|
|
|
},
|
|
|
|
"keywords": [
|
2016-11-19 12:05:46 +02:00
|
|
|
"lounge",
|
2014-04-20 19:13:33 +02:00
|
|
|
"browser",
|
2014-06-26 09:14:45 -07:00
|
|
|
"web",
|
2014-03-24 14:44:41 +01:00
|
|
|
"chat",
|
2014-04-22 20:26:05 +02:00
|
|
|
"client",
|
2014-03-24 14:44:41 +01:00
|
|
|
"irc",
|
2014-06-26 09:14:45 -07:00
|
|
|
"server"
|
2014-03-24 14:44:41 +01:00
|
|
|
],
|
2014-08-25 16:13:47 -07:00
|
|
|
"license": "MIT",
|
2016-04-26 13:51:11 +03:00
|
|
|
"engines": {
|
|
|
|
"node": ">=4.2.0"
|
|
|
|
},
|
2014-06-17 15:38:08 +02:00
|
|
|
"dependencies": {
|
2017-03-23 08:47:51 +01:00
|
|
|
"bcryptjs": "2.4.3",
|
2016-11-19 10:49:16 +02:00
|
|
|
"cheerio": "0.22.0",
|
2016-04-16 14:32:38 +03:00
|
|
|
"colors": "1.1.2",
|
2016-02-12 13:27:17 +02:00
|
|
|
"commander": "2.9.0",
|
2016-11-19 10:49:16 +02:00
|
|
|
"event-stream": "3.3.4",
|
2017-03-11 11:20:40 +02:00
|
|
|
"express": "4.15.2",
|
2017-04-21 09:26:02 +01:00
|
|
|
"express-handlebars": "3.0.0",
|
2017-05-04 23:54:24 +00:00
|
|
|
"fs-extra": "3.0.1",
|
2017-04-30 22:25:07 +00:00
|
|
|
"irc-framework": "2.8.1",
|
2017-01-28 15:16:37 +02:00
|
|
|
"ldapjs": "1.0.1",
|
2016-12-31 22:37:27 +00:00
|
|
|
"lodash": "4.17.4",
|
2017-03-22 00:11:25 +00:00
|
|
|
"moment": "2.18.1",
|
2016-02-12 13:27:17 +02:00
|
|
|
"read": "1.0.7",
|
2017-03-04 04:54:00 +00:00
|
|
|
"request": "2.81.0",
|
2016-11-19 10:49:16 +02:00
|
|
|
"semver": "5.3.0",
|
2017-02-17 06:04:49 +00:00
|
|
|
"socket.io": "1.7.3",
|
2017-05-23 01:20:56 +00:00
|
|
|
"spdy": "3.4.7"
|
2014-06-17 15:38:08 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2017-06-08 21:48:44 +00:00
|
|
|
"babel-core": "6.25.0",
|
2017-06-20 10:47:08 +00:00
|
|
|
"babel-loader": "7.1.0",
|
2017-05-20 19:35:17 +00:00
|
|
|
"babel-preset-env": "1.5.2",
|
2017-06-05 19:52:01 +00:00
|
|
|
"chai": "4.0.2",
|
2017-04-08 15:34:31 +03:00
|
|
|
"eslint": "4.0.0",
|
2016-11-19 10:49:16 +02:00
|
|
|
"font-awesome": "4.7.0",
|
2016-12-30 00:32:27 -05:00
|
|
|
"fuzzy": "0.1.3",
|
2017-05-21 11:42:40 +00:00
|
|
|
"handlebars": "4.0.10",
|
2017-04-21 03:48:20 +00:00
|
|
|
"handlebars-loader": "1.5.0",
|
2017-03-20 19:07:33 +00:00
|
|
|
"jquery": "3.2.1",
|
2016-12-11 05:43:26 +05:30
|
|
|
"jquery-textcomplete": "1.8.0",
|
2016-12-18 17:53:28 +02:00
|
|
|
"jquery-ui": "1.12.1",
|
2017-05-14 18:29:06 +00:00
|
|
|
"mocha": "3.4.2",
|
2017-04-02 19:46:29 +00:00
|
|
|
"mousetrap": "1.6.1",
|
2017-02-22 22:48:30 +00:00
|
|
|
"npm-run-all": "4.0.2",
|
2017-06-01 02:32:03 +00:00
|
|
|
"nyc": "11.0.2",
|
2017-02-17 06:04:49 +00:00
|
|
|
"socket.io-client": "1.7.3",
|
2017-06-15 22:40:26 +00:00
|
|
|
"stylelint": "7.11.1",
|
2017-06-21 14:58:14 +03:00
|
|
|
"stylelint-config-standard": "16.0.0",
|
2017-03-30 09:10:14 +00:00
|
|
|
"urijs": "1.18.10",
|
2017-06-19 16:04:40 +00:00
|
|
|
"webpack": "3.0.0"
|
2014-03-24 14:44:41 +01:00
|
|
|
}
|
2014-03-04 08:31:52 -08:00
|
|
|
}
|