thelounge/package.json
2016-11-19 12:05:46 +02:00

73 lines
2 KiB
JSON

{
"name": "thelounge",
"description": "The self-hosted Web IRC client",
"version": "2.1.0",
"preferGlobal": true,
"bin": {
"lounge": "index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/thelounge/lounge.git"
},
"homepage": "https://thelounge.github.io/",
"scripts": {
"coverage": "istanbul cover node_modules/mocha/bin/_mocha",
"start": "node index",
"build": "npm-run-all build:*",
"build:font-awesome": "node scripts/build-fontawesome.js",
"build:libs": "uglifyjs client/js/libs/*.js client/js/libs/jquery/*.js client/js/libs/handlebars/*.js -o client/js/libs.min.js --source-map client/js/libs.min.js.map --source-map-url libs.min.js.map -p relative",
"build:handlebars": "handlebars client/views/ -e tpl -f client/js/lounge.templates.js",
"test": "npm-run-all -c test:mocha lint",
"test:mocha": "mocha",
"lint": "npm-run-all -c lint:js lint:css",
"lint:js": "npm-run-all -c lint:js:es5 lint:js:es6",
"lint:js:es5": "eslint --parser-options=\"ecmaVersion:5\" client/",
"lint:js:es6": "eslint --ignore-pattern client/ .",
"lint:css": "stylelint \"**/*.css\"",
"prepublish": "npm run build"
},
"keywords": [
"lounge",
"browser",
"web",
"chat",
"client",
"irc",
"server"
],
"license": "MIT",
"engines": {
"node": ">=4.2.0"
},
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"cheerio": "0.20.0",
"colors": "1.1.2",
"commander": "2.9.0",
"event-stream": "3.3.2",
"express": "4.13.4",
"fs-extra": "0.30.0",
"irc-framework": "2.5.0",
"lodash": "4.11.2",
"moment": "2.13.0",
"read": "1.0.7",
"request": "2.74.0",
"semver": "5.1.0",
"socket.io": "1.4.5",
"spdy": "3.3.2",
"ldapjs": "1.0.0"
},
"devDependencies": {
"chai": "3.5.0",
"eslint": "3.6.0",
"font-awesome": "4.6.3",
"handlebars": "4.0.5",
"istanbul": "0.4.5",
"mocha": "3.0.2",
"npm-run-all": "3.1.0",
"stylelint": "7.3.1",
"uglify-js": "2.7.3"
}
}