2013-04-22 16:51:32 +00:00
|
|
|
|
{
|
2013-09-24 12:29:51 -04:00
|
|
|
|
"name": "nodebb",
|
2015-06-05 13:20:42 -04:00
|
|
|
|
"license": "GPL-3.0",
|
2013-09-24 12:29:51 -04:00
|
|
|
|
"description": "NodeBB Forum",
|
2017-02-24 15:45:36 +00:00
|
|
|
|
"version": "1.4.4",
|
2013-09-24 12:29:51 -04:00
|
|
|
|
"homepage": "http://www.nodebb.org",
|
|
|
|
|
|
"repository": {
|
|
|
|
|
|
"type": "git",
|
2014-05-23 15:21:51 -04:00
|
|
|
|
"url": "https://github.com/NodeBB/NodeBB/"
|
2013-09-24 12:29:51 -04:00
|
|
|
|
},
|
|
|
|
|
|
"main": "app.js",
|
2013-10-12 11:06:43 -04:00
|
|
|
|
"scripts": {
|
2015-04-27 22:41:44 -04:00
|
|
|
|
"start": "node loader.js",
|
2016-08-16 19:40:39 +02:00
|
|
|
|
"lint": "eslint --cache .",
|
2017-02-03 23:55:33 -07:00
|
|
|
|
"pretest": "npm run lint",
|
2016-12-23 11:32:31 -05:00
|
|
|
|
"test": "istanbul cover node_modules/mocha/bin/_mocha -- -R dot",
|
2016-12-19 21:40:09 +03:00
|
|
|
|
"coveralls": "istanbul cover _mocha --report lcovonly -- -R dot && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
|
2013-10-12 11:06:43 -04:00
|
|
|
|
},
|
2013-09-24 12:29:51 -04:00
|
|
|
|
"dependencies": {
|
2016-08-12 12:52:44 -04:00
|
|
|
|
"async": "~1.5.0",
|
2015-12-31 12:15:31 -05:00
|
|
|
|
"autoprefixer": "^6.2.3",
|
2015-10-23 16:23:54 -04:00
|
|
|
|
"bcryptjs": "~2.3.0",
|
2014-10-03 20:21:45 -04:00
|
|
|
|
"body-parser": "^1.9.0",
|
2017-01-03 18:05:39 -08:00
|
|
|
|
"chart.js": "^2.4.0",
|
2015-05-25 16:06:49 -04:00
|
|
|
|
"colors": "^1.1.0",
|
2014-10-03 20:21:45 -04:00
|
|
|
|
"compression": "^1.1.0",
|
2014-08-31 22:42:29 -04:00
|
|
|
|
"connect-ensure-login": "^0.1.1",
|
2014-06-18 10:17:50 -04:00
|
|
|
|
"connect-flash": "^0.1.1",
|
2016-10-14 22:18:28 +03:00
|
|
|
|
"connect-mongo": "1.3.2",
|
2015-08-19 14:17:21 -04:00
|
|
|
|
"connect-multiparty": "^2.0.0",
|
2016-08-12 16:01:01 +03:00
|
|
|
|
"connect-redis": "~3.1.0",
|
2014-10-03 20:21:45 -04:00
|
|
|
|
"cookie-parser": "^1.3.3",
|
|
|
|
|
|
"cron": "^1.0.5",
|
2017-02-03 00:47:09 +00:00
|
|
|
|
"cropperjs": "^0.8.1",
|
2014-10-03 20:21:45 -04:00
|
|
|
|
"csurf": "^1.6.1",
|
2014-06-18 10:17:50 -04:00
|
|
|
|
"daemon": "~1.1.0",
|
2016-08-16 11:43:44 -04:00
|
|
|
|
"express": "^4.14.0",
|
2014-10-03 20:21:45 -04:00
|
|
|
|
"express-session": "^1.8.2",
|
2017-02-14 20:56:24 +03:00
|
|
|
|
"express-useragent": "1.0.7",
|
2016-10-17 19:49:29 +03:00
|
|
|
|
"html-to-text": "2.1.3",
|
|
|
|
|
|
"ip": "1.1.3",
|
|
|
|
|
|
"jimp": "0.2.27",
|
2016-08-26 15:36:42 -04:00
|
|
|
|
"jquery": "^3.1.0",
|
2016-05-24 23:04:57 -04:00
|
|
|
|
"json-2-csv": "^2.0.22",
|
2014-11-17 11:24:46 -05:00
|
|
|
|
"less": "^2.0.0",
|
2014-09-30 21:48:39 -04:00
|
|
|
|
"logrotate-stream": "^0.2.3",
|
2016-10-17 19:49:29 +03:00
|
|
|
|
"lru-cache": "4.0.1",
|
2015-02-18 21:09:33 -05:00
|
|
|
|
"mime": "^1.3.4",
|
2015-05-25 16:06:49 -04:00
|
|
|
|
"minimist": "^1.1.1",
|
2014-07-22 13:43:43 -04:00
|
|
|
|
"mkdirp": "~0.5.0",
|
2016-12-18 23:01:32 +03:00
|
|
|
|
"mongodb": "2.2.16",
|
2014-10-03 20:21:45 -04:00
|
|
|
|
"morgan": "^1.3.2",
|
2016-02-26 12:12:12 -05:00
|
|
|
|
"mousetrap": "^1.5.3",
|
2015-10-23 16:23:54 -04:00
|
|
|
|
"nconf": "~0.8.2",
|
2017-02-16 22:07:20 +03:00
|
|
|
|
"nodebb-plugin-composer-default": "4.4.1",
|
2017-01-21 14:23:36 +02:00
|
|
|
|
"nodebb-plugin-dbsearch": "1.0.5",
|
2016-07-15 19:53:35 +03:00
|
|
|
|
"nodebb-plugin-emoji-extended": "1.1.1",
|
2016-06-07 14:05:13 +02:00
|
|
|
|
"nodebb-plugin-emoji-one": "1.1.5",
|
2017-02-23 14:54:49 -05:00
|
|
|
|
"nodebb-plugin-markdown": "7.1.1",
|
2017-01-23 14:49:56 -05:00
|
|
|
|
"nodebb-plugin-mentions": "1.1.3",
|
2017-02-16 22:56:25 -07:00
|
|
|
|
"nodebb-plugin-soundpack-default": "1.0.0",
|
2016-08-10 10:44:48 -04:00
|
|
|
|
"nodebb-plugin-spam-be-gone": "0.4.10",
|
2016-07-07 13:10:30 -04:00
|
|
|
|
"nodebb-rewards-essentials": "0.0.9",
|
2016-10-14 10:59:16 +03:00
|
|
|
|
"nodebb-theme-lavender": "3.0.15",
|
2017-02-17 16:46:30 +03:00
|
|
|
|
"nodebb-theme-persona": "4.2.4",
|
2017-02-07 16:28:25 -05:00
|
|
|
|
"nodebb-theme-vanilla": "5.2.0",
|
2016-10-27 15:38:26 -04:00
|
|
|
|
"nodebb-widget-essentials": "2.0.13",
|
2016-10-17 19:58:05 +03:00
|
|
|
|
"nodemailer": "2.6.4",
|
2016-01-18 13:22:15 -05:00
|
|
|
|
"nodemailer-sendmail-transport": "1.0.0",
|
2016-02-22 11:02:39 -05:00
|
|
|
|
"nodemailer-smtp-transport": "^2.4.1",
|
2015-08-24 16:26:45 -04:00
|
|
|
|
"passport": "^0.3.0",
|
2014-07-23 10:50:59 -04:00
|
|
|
|
"passport-local": "1.0.0",
|
2015-12-31 12:15:31 -05:00
|
|
|
|
"postcss": "^5.0.13",
|
2016-11-02 14:57:14 -07:00
|
|
|
|
"postcss-clean": "^1.0.0",
|
2016-09-12 13:52:50 -06:00
|
|
|
|
"promise-polyfill": "^6.0.2",
|
2016-02-24 18:05:40 +02:00
|
|
|
|
"prompt": "^1.0.0",
|
2016-08-12 16:01:01 +03:00
|
|
|
|
"redis": "~2.6.2",
|
2014-10-03 20:21:45 -04:00
|
|
|
|
"request": "^2.44.0",
|
2016-01-11 18:31:33 +02:00
|
|
|
|
"rimraf": "~2.5.0",
|
2014-10-03 20:21:45 -04:00
|
|
|
|
"rss": "^1.0.0",
|
2016-11-28 12:52:26 -07:00
|
|
|
|
"sanitize-html": "^1.13.0",
|
2016-02-26 12:12:12 -05:00
|
|
|
|
"semver": "^5.1.0",
|
2014-10-03 20:21:45 -04:00
|
|
|
|
"serve-favicon": "^2.1.5",
|
2015-10-26 22:39:19 -04:00
|
|
|
|
"sitemap": "^1.4.0",
|
2017-02-02 17:49:27 +02:00
|
|
|
|
"socket.io": "1.7.2",
|
|
|
|
|
|
"socket.io-client": "1.7.2",
|
|
|
|
|
|
"socket.io-redis": "3.1.0",
|
2016-01-07 18:07:43 +02:00
|
|
|
|
"socketio-wildcard": "~0.3.0",
|
2014-12-18 20:23:31 -05:00
|
|
|
|
"string": "^3.0.0",
|
2017-01-10 13:47:31 -05:00
|
|
|
|
"templates.js": "0.3.6",
|
2016-08-12 16:01:01 +03:00
|
|
|
|
"toobusy-js": "^0.5.1",
|
2015-11-12 14:18:33 -05:00
|
|
|
|
"uglify-js": "^2.6.0",
|
2016-03-01 12:28:26 -05:00
|
|
|
|
"underscore": "^1.8.3",
|
2015-05-19 14:55:06 -04:00
|
|
|
|
"underscore.deep": "^0.5.1",
|
2016-10-17 20:02:04 +03:00
|
|
|
|
"validator": "^6.1.0",
|
2015-11-11 20:32:24 -05:00
|
|
|
|
"winston": "^2.1.0",
|
2016-02-24 18:05:40 +02:00
|
|
|
|
"xregexp": "~3.1.0"
|
2013-09-27 11:47:16 -04:00
|
|
|
|
},
|
2013-10-12 11:06:43 -04:00
|
|
|
|
"devDependencies": {
|
2016-10-14 16:06:05 +00:00
|
|
|
|
"coveralls": "^2.11.14",
|
2017-01-05 18:06:59 +00:00
|
|
|
|
"eslint": "^3.12.0",
|
2017-02-18 02:23:47 -07:00
|
|
|
|
"eslint-config-airbnb-base": "^11.1.0",
|
|
|
|
|
|
"eslint-plugin-import": "^2.2.0",
|
2017-01-05 18:06:59 +00:00
|
|
|
|
"grunt": "~1.0.0",
|
2016-04-05 19:46:44 -05:00
|
|
|
|
"grunt-contrib-watch": "^1.0.0",
|
2016-04-01 12:20:02 +00:00
|
|
|
|
"istanbul": "^0.4.2",
|
2017-01-05 18:06:59 +00:00
|
|
|
|
"mocha": "~3.2.0",
|
2016-10-16 16:43:38 +03:00
|
|
|
|
"mocha-lcov-reporter": "^1.2.0",
|
2016-10-16 17:51:35 +03:00
|
|
|
|
"xmlhttprequest": "1.8.0",
|
|
|
|
|
|
"xmlhttprequest-ssl": "1.5.3"
|
2013-10-12 11:06:43 -04:00
|
|
|
|
},
|
2013-09-24 12:29:51 -04:00
|
|
|
|
"bugs": {
|
2014-05-23 15:21:51 -04:00
|
|
|
|
"url": "https://github.com/NodeBB/NodeBB/issues"
|
2013-09-24 12:29:51 -04:00
|
|
|
|
},
|
|
|
|
|
|
"engines": {
|
2016-08-30 17:01:51 -04:00
|
|
|
|
"node": ">=4"
|
2013-09-24 12:29:51 -04:00
|
|
|
|
},
|
2014-02-22 11:18:16 -05:00
|
|
|
|
"maintainers": [
|
2013-09-24 12:29:51 -04:00
|
|
|
|
{
|
|
|
|
|
|
"name": "Andrew Rodrigues",
|
2015-07-20 15:29:16 -04:00
|
|
|
|
"email": "andrew@nodebb.org",
|
2013-10-01 11:17:57 -04:00
|
|
|
|
"url": "https://github.com/psychobunny"
|
2013-09-24 12:29:51 -04:00
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
"name": "Julian Lam",
|
2015-07-20 15:29:16 -04:00
|
|
|
|
"email": "julian@nodebb.org",
|
2013-10-01 11:17:57 -04:00
|
|
|
|
"url": "https://github.com/julianlam"
|
2013-09-24 12:29:51 -04:00
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
"name": "Barış Soner Uşaklı",
|
2015-07-20 15:29:16 -04:00
|
|
|
|
"email": "baris@nodebb.org",
|
2013-10-01 11:17:57 -04:00
|
|
|
|
"url": "https://github.com/barisusakli"
|
2013-09-24 12:29:51 -04:00
|
|
|
|
}
|
|
|
|
|
|
]
|
2016-11-24 11:09:09 -05:00
|
|
|
|
}
|