thelounge/package.json
Daniel 3a2d97af6a Supersede mkdirp with fs-extra.
Ensure USERS_PATH exists at start.

Remove unnecessary USER_PATH check.

Use fs-extra's copy to write default config.
2016-06-11 19:35:40 +01:00

72 lines
1.8 KiB
JSON

{
"name": "thelounge",
"description": "The self-hosted Web IRC client",
"version": "2.0.0-pre.2",
"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": {
"start": "node index",
"build": "npm run build:font-awesome && npm run build:grunt && npm run build:handlebars",
"build:font-awesome": "node scripts/build-fontawesome.js",
"build:grunt": "grunt",
"build:handlebars": "handlebars client/views/ -e tpl -f client/js/lounge.templates.js",
"test": "npm-run-all -c test:mocha lint",
"test:mocha": "mocha -r test/fixtures/env.js test/**/*.js",
"lint": "npm-run-all -c lint:js lint:css",
"lint:js": "eslint .",
"lint:css": "stylelint \"**/*.css\"",
"prepublish": "npm run build"
},
"keywords": [
"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.0.0",
"lodash": "4.11.2",
"moment": "2.13.0",
"read": "1.0.7",
"request": "2.72.0",
"semver": "5.1.0",
"socket.io": "1.4.5",
"spdy": "3.3.2"
},
"devDependencies": {
"chai": "3.5.0",
"eslint": "2.11.1",
"font-awesome": "4.6.3",
"grunt": "1.0.1",
"grunt-contrib-uglify": "1.0.1",
"grunt-contrib-watch": "1.0.0",
"handlebars": "4.0.5",
"mocha": "2.4.5",
"npm-run-all": "2.1.1",
"stylelint": "6.2.2"
}
}