wildduck/package.json

89 lines
2.5 KiB
JSON
Raw Normal View History

2017-03-06 05:45:50 +08:00
{
2018-08-28 14:48:42 +08:00
"name": "wildduck",
2020-09-25 17:58:00 +08:00
"version": "1.30.0",
2018-08-28 14:48:42 +08:00
"description": "IMAP/POP3 server built with Node.js and MongoDB",
"main": "server.js",
"scripts": {
"test": "mongo --eval 'db.dropDatabase()' wildduck-test && redis-cli -n 13 flushdb && NODE_ENV=test grunt",
"apidoc": "apidoc -i lib/api/ -o docs/api/",
2018-08-28 14:48:42 +08:00
"show": "NODE_CONFIG_ONLY=true node server.js"
},
"keywords": [
"imap",
"mail server"
],
"author": "Andris Reinman",
"license": "EUPL-1.1+",
"devDependencies": {
"ajv": "6.12.5",
"apidoc": "0.25.0",
2018-10-01 18:28:27 +08:00
"chai": "4.2.0",
2020-06-17 18:32:54 +08:00
"docsify-cli": "4.4.1",
"eslint": "7.9.0",
2018-08-28 14:48:42 +08:00
"eslint-config-nodemailer": "1.2.0",
2020-04-24 16:51:33 +08:00
"eslint-config-prettier": "6.11.0",
"grunt": "1.3.0",
2018-11-05 15:25:43 +08:00
"grunt-cli": "1.3.2",
2020-05-27 16:55:36 +08:00
"grunt-eslint": "23.0.0",
2018-08-28 14:48:42 +08:00
"grunt-mocha-test": "0.13.3",
"grunt-shell-spawn": "0.4.0",
2018-09-18 15:20:06 +08:00
"grunt-wait": "0.3.0",
2020-09-25 17:58:00 +08:00
"imapflow": "1.0.51",
"mailparser": "3.0.0",
"mocha": "8.1.3",
"request": "2.88.2",
2020-09-25 21:49:38 +08:00
"supertest": "5.0.0"
2018-08-28 14:48:42 +08:00
},
"dependencies": {
2018-10-18 15:37:32 +08:00
"@phc/pbkdf2": "1.1.14",
2018-09-11 20:49:35 +08:00
"accesscontrol": "2.2.1",
2018-08-28 14:48:42 +08:00
"base32.js": "0.1.0",
"bcryptjs": "2.4.3",
2018-10-18 15:37:32 +08:00
"gelf": "2.0.1",
"generate-password": "1.5.1",
"he": "1.2.0",
2019-04-29 21:18:45 +08:00
"html-to-text": "5.1.1",
2018-08-28 14:48:42 +08:00
"humanname": "0.2.2",
2020-07-16 16:15:04 +08:00
"iconv-lite": "0.6.2",
2020-06-17 18:32:54 +08:00
"ioredfour": "1.0.2-ioredis-03",
"ioredis": "4.17.3",
2018-10-19 15:15:16 +08:00
"isemail": "3.2.0",
"joi": "17.2.1",
2020-05-27 16:55:36 +08:00
"js-yaml": "3.14.0",
2018-08-28 14:48:42 +08:00
"key-fingerprint": "1.1.0",
"libbase64": "1.2.1",
"libmime": "5.0.0",
2018-08-28 14:48:42 +08:00
"libqp": "1.1.0",
"mailsplit": "5.0.0",
2019-08-07 16:41:49 +08:00
"mobileconfig": "2.3.1",
"mongo-cursor-pagination": "7.3.1",
"mongodb": "3.6.2",
2020-01-27 20:22:35 +08:00
"mongodb-extended-json": "1.11.0",
"node-forge": "0.10.0",
"nodemailer": "6.4.11",
2018-08-28 14:48:42 +08:00
"npmlog": "4.1.2",
"openpgp": "4.10.8",
2020-01-27 20:22:35 +08:00
"pem": "1.14.4",
2019-10-22 03:46:00 +08:00
"pwnedpasswords": "1.0.5",
2020-01-03 19:30:42 +08:00
"qrcode": "1.4.4",
"restify": "8.5.1",
2018-08-28 14:48:42 +08:00
"restify-logger": "2.0.1",
"saslprep": "1.0.3",
2018-08-28 14:48:42 +08:00
"seq-index": "1.1.0",
"smtp-server": "3.7.0",
2018-08-28 14:48:42 +08:00
"speakeasy": "2.0.0",
"u2f": "0.1.3",
2020-07-16 21:57:13 +08:00
"unixcrypt": "1.0.11",
"uuid": "8.3.0",
2020-05-08 15:43:59 +08:00
"wild-config": "1.5.1",
"yargs": "16.0.3"
2018-08-28 14:48:42 +08:00
},
"repository": {
"type": "git",
"url": "git://github.com/wildduck-email/wildduck.git"
},
"engines": {
"node": ">=10.0.0"
2018-08-28 14:48:42 +08:00
}
2017-03-06 05:45:50 +08:00
}