2017-03-06 05:45:50 +08:00
|
|
|
{
|
2017-07-21 20:36:09 +08:00
|
|
|
"name": "wildduck",
|
2017-11-23 17:51:37 +08:00
|
|
|
"version": "1.0.90",
|
2017-07-21 20:36:09 +08:00
|
|
|
"description": "IMAP server built with Node.js and MongoDB",
|
|
|
|
"main": "server.js",
|
|
|
|
"scripts": {
|
2017-11-23 17:51:37 +08:00
|
|
|
"toc": "markdown-toc -i docs/api.md",
|
2017-07-26 20:50:54 +08:00
|
|
|
"test": "mongo --eval 'db.dropDatabase()' wildduck-test && redis-cli -n 13 flushdb && NODE_ENV=test grunt"
|
2017-07-21 20:36:09 +08:00
|
|
|
},
|
2017-11-23 17:51:37 +08:00
|
|
|
"keywords": ["imap", "mail server"],
|
2017-07-21 20:36:09 +08:00
|
|
|
"author": "Andris Reinman",
|
|
|
|
"license": "EUPL-1.1",
|
|
|
|
"devDependencies": {
|
|
|
|
"browserbox": "^0.9.1",
|
2017-09-01 19:50:53 +08:00
|
|
|
"chai": "^4.1.2",
|
2017-07-21 20:36:09 +08:00
|
|
|
"eslint-config-nodemailer": "^1.2.0",
|
|
|
|
"grunt": "^1.0.1",
|
|
|
|
"grunt-cli": "^1.2.0",
|
2017-08-31 22:28:11 +08:00
|
|
|
"grunt-eslint": "^20.1.0",
|
2017-10-03 16:18:23 +08:00
|
|
|
"grunt-mocha-test": "^0.13.3",
|
2017-07-26 20:50:54 +08:00
|
|
|
"grunt-shell-spawn": "^0.3.10",
|
|
|
|
"grunt-wait": "^0.1.0",
|
2017-10-20 18:43:44 +08:00
|
|
|
"icedfrisby": "^1.5.0",
|
2017-10-19 16:19:16 +08:00
|
|
|
"mailparser": "^2.1.0",
|
|
|
|
"mocha": "^4.0.1",
|
|
|
|
"request": "^2.83.0"
|
2017-07-21 20:36:09 +08:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2017-09-12 16:02:22 +08:00
|
|
|
"addressparser": "1.0.1",
|
|
|
|
"bcryptjs": "2.4.3",
|
2017-10-26 15:21:32 +08:00
|
|
|
"bugsnag": "2.0.1",
|
2017-09-12 16:02:22 +08:00
|
|
|
"generate-password": "1.3.0",
|
|
|
|
"he": "1.1.1",
|
|
|
|
"html-to-text": "3.3.0",
|
|
|
|
"humanname": "0.2.2",
|
|
|
|
"humanparser": "1.5.0",
|
|
|
|
"iconv-lite": "0.4.19",
|
2017-10-03 16:18:23 +08:00
|
|
|
"ioredfour": "1.0.2-ioredis",
|
2017-10-26 15:21:32 +08:00
|
|
|
"ioredis": "3.2.1",
|
2017-11-19 20:18:23 +08:00
|
|
|
"joi": "13.0.2",
|
2017-09-12 16:02:22 +08:00
|
|
|
"js-yaml": "3.10.0",
|
|
|
|
"libbase64": "0.2.0",
|
|
|
|
"libmime": "3.1.0",
|
|
|
|
"libqp": "1.1.0",
|
|
|
|
"linkify-it": "2.0.3",
|
|
|
|
"mailsplit": "4.0.2",
|
2017-11-23 17:51:37 +08:00
|
|
|
"markdown-toc": "^1.2.0",
|
2017-09-12 16:02:22 +08:00
|
|
|
"mobileconfig": "2.1.0",
|
2017-11-09 03:29:10 +08:00
|
|
|
"mongo-cursor-pagination": "5.0.0",
|
2017-10-18 17:42:51 +08:00
|
|
|
"mongodb": "2.2.33",
|
2017-11-19 20:18:23 +08:00
|
|
|
"nodemailer": "4.4.0",
|
2017-09-12 16:02:22 +08:00
|
|
|
"npmlog": "4.1.2",
|
2017-11-08 22:23:35 +08:00
|
|
|
"openpgp": "2.5.13",
|
|
|
|
"qrcode": "1.0.0",
|
2017-11-23 17:51:37 +08:00
|
|
|
"restify": "6.3.4",
|
2017-09-12 16:02:22 +08:00
|
|
|
"seq-index": "1.1.0",
|
2017-10-05 20:14:43 +08:00
|
|
|
"smtp-server": "3.3.0",
|
2017-09-12 16:02:22 +08:00
|
|
|
"speakeasy": "2.0.0",
|
2017-10-26 15:21:32 +08:00
|
|
|
"tlds": "1.199.0",
|
2017-11-03 20:30:23 +08:00
|
|
|
"u2f": "0.1.3",
|
2017-09-12 16:02:22 +08:00
|
|
|
"utf7": "1.0.2",
|
|
|
|
"uuid": "3.1.0",
|
2017-10-26 15:21:32 +08:00
|
|
|
"wild-config": "1.3.6"
|
2017-07-21 20:36:09 +08:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git://github.com/wildduck-email/wildduck.git"
|
|
|
|
},
|
|
|
|
"optionalDependencies": {
|
2017-11-03 20:11:59 +08:00
|
|
|
"@ronomon/crypto-async": "2.2.1",
|
2017-09-12 16:02:22 +08:00
|
|
|
"modern-syslog": "1.1.4"
|
2017-07-21 20:36:09 +08:00
|
|
|
}
|
2017-03-06 05:45:50 +08:00
|
|
|
}
|