mirror of
https://github.com/darkwire/darkwire.io.git
synced 2025-07-18 02:44:01 +00:00
59 lines
1.7 KiB
JSON
59 lines
1.7 KiB
JSON
{
|
|
"name": "darkwire",
|
|
"version": "1.5.0",
|
|
"description": "Encrypted web socket chat",
|
|
"main": "index.js",
|
|
"dependencies": {
|
|
"babel": "^5.8.23",
|
|
"babelify": "^7.2.0",
|
|
"browserify": "^13.0.0",
|
|
"compression": "^1.6.0",
|
|
"express": "^4.13.3",
|
|
"forever": "^0.15.1",
|
|
"gulp": "^3.9.0",
|
|
"gulp-uglify": "^1.5.1",
|
|
"he": "^0.5.0",
|
|
"moment": "^2.11.2",
|
|
"mustache-express": "^1.2.2",
|
|
"sanitize-html": "^1.11.3",
|
|
"serve-favicon": "^2.3.0",
|
|
"shortid": "^2.2.4",
|
|
"slug": "^0.9.1",
|
|
"socket.io": "^1.4.0",
|
|
"underscore": "^1.8.3",
|
|
"uuid": "^2.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"babel-core": "^6.5.2",
|
|
"babel-preset-es2015": "^6.3.13",
|
|
"babel-register": "^6.5.2",
|
|
"compression": "^1.6.0",
|
|
"gulp": "^3.9.1",
|
|
"gulp-nodemon": "^2.0.6",
|
|
"jscs": "^2.10.1",
|
|
"jshint": "^2.9.1",
|
|
"karma": "^0.13.21",
|
|
"karma-browserify": "^5.0.2",
|
|
"karma-chrome-launcher": "^0.2.2",
|
|
"karma-html2js-preprocessor": "^0.1.0",
|
|
"karma-mocha": "^0.2.2",
|
|
"mocha": "^2.4.5",
|
|
"mocha-jscs": "^4.2.0",
|
|
"mocha-jshint": "^2.3.1",
|
|
"nightwatch": "^0.8.16",
|
|
"sinon": "^1.17.3",
|
|
"vinyl-buffer": "^1.0.0",
|
|
"vinyl-source-stream": "^1.1.0"
|
|
},
|
|
"scripts": {
|
|
"start": "node index.js",
|
|
"prod": "forever start -c \"npm start\" ./",
|
|
"dev": "npm run bundle && gulp start",
|
|
"bundle": "gulp bundle",
|
|
"test": "npm run bundle && gulp test",
|
|
"test-travis": "node_modules/mocha/bin/mocha test/unit/lint.js --compilers js:babel-core/register && node_modules/karma/bin/karma start --single-run && node_modules/nightwatch/bin/nightwatch --test test/acceptance/index.js --config test/acceptance/nightwatch.json -e chrome"
|
|
},
|
|
"author": "Daniel Seripap",
|
|
"license": "MIT"
|
|
}
|