hardlounge/package.json

90 lines
2.2 KiB
JSON
Raw Normal View History

2014-03-04 11:31:52 -05:00
{
"name": "thelounge",
2015-04-29 15:55:13 -04:00
"description": "The self-hosted Web IRC client",
2017-07-30 18:50:15 -04:00
"version": "2.4.0",
2014-08-13 17:35:20 -04:00
"preferGlobal": true,
"bin": {
"lounge": "index.js"
2014-08-13 17:35:20 -04:00
},
"repository": {
"type": "git",
"url": "https://github.com/thelounge/lounge.git"
2014-08-13 17:35:20 -04:00
},
2016-05-06 13:51:38 -04:00
"homepage": "https://thelounge.github.io/",
2014-08-13 17:35:20 -04:00
"scripts": {
"coverage": "nyc mocha",
"start": "node index start",
2016-12-18 10:53:28 -05:00
"start-dev": "npm-run-all --parallel watch start",
"build": "npm-run-all build:*",
2016-06-04 16:55:21 -04:00
"build:font-awesome": "node scripts/build-fontawesome.js",
2017-03-19 04:02:39 -04:00
"build:webpack": "webpack --progress",
"watch": "webpack --watch",
2016-12-18 10:53:28 -05:00
"test": "npm-run-all -c test:* lint",
"test:mocha": "mocha",
2016-12-18 10:53:28 -05:00
"lint": "npm-run-all -c lint:*",
"lint:js": "eslint .",
"lint:css": "stylelint \"**/*.css\"",
"prepublishOnly": "NODE_ENV=production npm run build"
2014-03-24 09:44:41 -04:00
},
"keywords": [
2016-11-19 05:05:46 -05:00
"lounge",
2014-04-20 13:13:33 -04:00
"browser",
2014-06-26 12:14:45 -04:00
"web",
2014-03-24 09:44:41 -04:00
"chat",
2014-04-22 14:26:05 -04:00
"client",
2014-03-24 09:44:41 -04:00
"irc",
2014-06-26 12:14:45 -04:00
"server"
2014-03-24 09:44:41 -04:00
],
2014-08-25 19:13:47 -04:00
"license": "MIT",
2016-04-26 06:51:11 -04:00
"engines": {
"node": ">=4.2.0"
},
2014-06-17 09:38:08 -04:00
"dependencies": {
"bcryptjs": "2.4.3",
"cheerio": "0.22.0",
2016-04-16 07:32:38 -04:00
"colors": "1.1.2",
"commander": "2.11.0",
"event-stream": "3.3.4",
"express": "4.15.4",
"express-handlebars": "3.0.0",
"fs-extra": "4.0.1",
"irc-framework": "2.9.1",
2017-01-28 08:16:37 -05:00
"ldapjs": "1.0.1",
"lodash": "4.17.4",
"moment": "2.18.1",
2016-02-12 06:27:17 -05:00
"read": "1.0.7",
"request": "2.81.0",
"semver": "5.4.1",
"socket.io": "1.7.4",
"spdy": "3.4.7",
"ua-parser-js": "0.7.14",
2017-07-10 15:47:03 -04:00
"urijs": "1.18.12",
"web-push": "3.2.2"
2014-06-17 09:38:08 -04:00
},
"devDependencies": {
"babel-core": "6.26.0",
"babel-loader": "7.1.2",
"babel-preset-env": "1.6.0",
"chai": "4.1.2",
"css.escape": "1.5.1",
2017-08-23 10:19:04 -04:00
"emoji-regex": "6.5.1",
"eslint": "4.6.1",
"font-awesome": "4.7.0",
"fuzzy": "0.1.3",
"handlebars": "4.0.10",
"handlebars-loader": "1.6.0",
2017-08-22 17:04:55 -04:00
"intersection-observer": "0.4.2",
"jquery": "3.2.1",
"jquery-textcomplete": "1.8.4",
2016-12-18 10:53:28 -05:00
"jquery-ui": "1.12.1",
"mocha": "3.5.2",
"mousetrap": "1.6.1",
"npm-run-all": "4.1.1",
"nyc": "11.2.1",
"socket.io-client": "1.7.4",
"stylelint": "8.1.1",
"stylelint-config-standard": "17.0.0",
"webpack": "3.5.6"
2014-03-24 09:44:41 -04:00
}
2014-03-04 11:31:52 -05:00
}