Files
NodeBB/package.json

91 lines
2.3 KiB
JSON
Raw Normal View History

2013-04-22 16:51:32 +00:00
{
2013-09-24 12:29:51 -04:00
"name": "nodebb",
"license": "GPLv3 or later",
"description": "NodeBB Forum",
2014-08-28 21:05:15 -04:00
"version": "0.5.0-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",
"scripts": {
"start": "./nodebb start",
"stop": "./nodebb stop",
2014-04-16 16:13:48 -04:00
"test": "mocha ./tests -t 10000"
},
2013-09-24 12:29:51 -04:00
"dependencies": {
"async": "~0.9.0",
"bcryptjs": "~2.0.1",
"body-parser": "^1.0.1",
"compression": "^1.0.1",
"connect-ensure-login": "^0.1.1",
"connect-flash": "^0.1.1",
"connect-multiparty": "^1.0.1",
"cookie-parser": "^1.0.1",
"cron": "~1.0.4",
"csurf": "^1.1.0",
"daemon": "~1.1.0",
2014-07-23 10:45:48 -04:00
"express": "4.6.1",
2014-07-02 16:09:57 -04:00
"express-session": "^1.0.2",
2014-07-23 10:45:48 -04:00
"gm": "1.16.0",
2013-09-24 12:29:51 -04:00
"gravatar": "1.0.6",
"less": "~1.7.3",
"mkdirp": "~0.5.0",
"morgan": "^1.0.0",
2013-09-24 12:29:51 -04:00
"nconf": "~0.6.7",
2014-07-30 19:07:43 -04:00
"nodebb-plugin-dbsearch": "0.0.13",
"nodebb-plugin-markdown": "~0.5.0",
2014-09-03 13:18:15 -04:00
"nodebb-plugin-mentions": "~0.6.0",
"nodebb-plugin-soundpack-default": "~0.1.1",
2014-07-23 15:43:56 -04:00
"nodebb-theme-lavender": "~0.0.74",
"nodebb-theme-vanilla": "~0.0.111",
"nodebb-widget-essentials": "~0.1.0",
"npm": "^1.4.6",
"passport": "~0.2.0",
2014-07-23 10:50:59 -04:00
"passport-local": "1.0.0",
2013-09-24 12:29:51 -04:00
"prompt": "~0.2.11",
2014-07-23 10:45:48 -04:00
"request": "~2.38.0",
"rimraf": "~2.2.6",
"rss": "~0.3.2",
"semver": "~2.3.1",
"serve-favicon": "^2.0.1",
"sitemap": "~0.7.3",
"socket.io": "~0.9.16",
"socket.io-wildcard": "~0.1.1",
"string": "~1.9.0",
"templates.js": "0.0.13",
"uglify-js": "git+https://github.com/julianlam/UglifyJS2.git",
2014-04-15 11:55:54 -04:00
"underscore": "~1.6.0",
"validator": "~3.16.1",
"winston": "~0.7.2",
"xregexp": "~2.0.0"
},
"devDependencies": {
"mocha": "~1.13.0"
},
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": {
"node": ">=0.10"
2013-09-24 12:29:51 -04:00
},
"maintainers": [
2013-09-24 12:29:51 -04:00
{
"name": "Andrew Rodrigues",
2013-10-01 11:17:57 -04:00
"email": "andrew@designcreateplay.com",
"url": "https://github.com/psychobunny"
2013-09-24 12:29:51 -04:00
},
{
"name": "Julian Lam",
2013-10-01 11:17:57 -04:00
"email": "julian@designcreateplay.com",
"url": "https://github.com/julianlam"
2013-09-24 12:29:51 -04:00
},
{
"name": "Barış Soner Uşaklı",
2013-10-01 11:17:57 -04:00
"email": "baris@designcreateplay.com",
"url": "https://github.com/barisusakli"
2013-09-24 12:29:51 -04:00
}
]
}