wildduck/package.json

84 lines
2.4 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-03-09 19:50:41 +08:00
"version": "1.23.4",
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/",
"show": "NODE_CONFIG_ONLY=true node server.js"
},
"keywords": [
"imap",
"mail server"
],
"author": "Andris Reinman",
"license": "EUPL-1.1+",
"devDependencies": {
2020-01-27 20:22:35 +08:00
"ajv": "6.11.0",
"apidoc": "0.20.0",
2018-08-28 14:48:42 +08:00
"browserbox": "0.9.1",
2018-10-01 18:28:27 +08:00
"chai": "4.2.0",
2020-01-03 19:30:42 +08:00
"eslint": "6.8.0",
2018-08-28 14:48:42 +08:00
"eslint-config-nodemailer": "1.2.0",
2020-01-03 19:30:42 +08:00
"eslint-config-prettier": "6.9.0",
2019-03-26 20:17:43 +08:00
"grunt": "1.0.4",
2018-11-05 15:25:43 +08:00
"grunt-cli": "1.3.2",
2019-07-05 18:56:11 +08:00
"grunt-eslint": "22.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-01-03 19:30:42 +08:00
"mailparser": "2.7.7",
2020-01-27 20:22:35 +08:00
"mocha": "7.0.1",
"request": "2.88.0",
"supertest": "4.0.2"
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",
2020-01-27 20:22:35 +08:00
"generate-password": "1.5.0",
"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-01-27 20:22:35 +08:00
"iconv-lite": "0.5.1",
2018-08-28 14:48:42 +08:00
"ioredfour": "1.0.2-ioredis-02",
2019-09-25 21:39:48 +08:00
"ioredis": "4.14.1",
2018-10-19 15:15:16 +08:00
"isemail": "3.2.0",
2020-01-27 20:22:35 +08:00
"joi": "14.3.1",
2019-04-29 21:18:45 +08:00
"js-yaml": "3.13.1",
2018-08-28 14:48:42 +08:00
"key-fingerprint": "1.1.0",
"libbase64": "1.2.1",
"libmime": "4.2.1",
2018-08-28 14:48:42 +08:00
"libqp": "1.1.0",
2020-01-27 20:22:35 +08:00
"mailsplit": "4.6.4",
2019-08-07 16:41:49 +08:00
"mobileconfig": "2.3.1",
2020-01-03 19:30:42 +08:00
"mongo-cursor-pagination": "7.2.0",
2020-01-27 20:22:35 +08:00
"mongodb": "3.5.2",
"mongodb-extended-json": "1.11.0",
2019-09-28 02:26:17 +08:00
"node-forge": "0.9.1",
2020-01-03 19:30:42 +08:00
"nodemailer": "6.4.2",
2018-08-28 14:48:42 +08:00
"npmlog": "4.1.2",
2020-01-27 20:22:35 +08:00
"openpgp": "4.8.1",
"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",
"seq-index": "1.1.0",
2019-01-09 04:37:36 +08:00
"smtp-server": "3.5.0",
2018-08-28 14:48:42 +08:00
"speakeasy": "2.0.0",
"u2f": "0.1.3",
"utf7": "1.0.2",
2020-01-27 20:22:35 +08:00
"uuid": "3.4.0",
2020-01-03 19:30:42 +08:00
"wild-config": "1.5.0",
"yargs": "15.1.0"
2018-08-28 14:48:42 +08:00
},
"repository": {
"type": "git",
"url": "git://github.com/wildduck-email/wildduck.git"
}
2017-03-06 05:45:50 +08:00
}