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",
2019-10-03 22:02:00 +08:00
"version": "1.23.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/",
"show": "NODE_CONFIG_ONLY=true node server.js"
},
"keywords": [
"imap",
"mail server"
],
"author": "Andris Reinman",
"license": "EUPL-1.1+",
"devDependencies": {
2019-07-18 16:01:29 +08:00
"ajv": "6.10.2",
2018-11-14 19:32:40 +08:00
"apidoc": "0.17.7",
2018-08-28 14:48:42 +08:00
"browserbox": "0.9.1",
2018-10-01 18:28:27 +08:00
"chai": "4.2.0",
2019-10-01 16:22:10 +08:00
"eslint": "6.5.1",
2018-08-28 14:48:42 +08:00
"eslint-config-nodemailer": "1.2.0",
2019-09-12 19:25:42 +08:00
"eslint-config-prettier": "6.3.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",
2019-05-07 15:27:30 +08:00
"mailparser": "2.7.1",
2019-10-01 16:22:10 +08:00
"mocha": "6.2.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",
2019-07-05 18:56:11 +08:00
"generate-password": "1.4.2",
"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",
2019-07-05 18:56:11 +08:00
"iconv-lite": "0.5.0",
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",
2019-10-01 16:22:10 +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",
2019-05-21 19:00:47 +08:00
"libmime": "4.1.3",
2018-08-28 14:48:42 +08:00
"libqp": "1.1.0",
2019-05-07 15:27:30 +08:00
"mailsplit": "4.4.1",
2019-08-07 16:41:49 +08:00
"mobileconfig": "2.3.1",
2018-08-28 14:48:42 +08:00
"mongo-cursor-pagination": "7.1.0",
2019-09-12 19:25:42 +08:00
"mongodb": "3.3.2",
2019-09-25 21:39:48 +08:00
"mongodb-extended-json": "1.10.2",
2019-09-28 02:26:17 +08:00
"node-forge": "0.9.1",
2019-07-18 16:01:29 +08:00
"nodemailer": "6.3.0",
2018-08-28 14:48:42 +08:00
"npmlog": "4.1.2",
2019-09-12 19:25:42 +08:00
"openpgp": "4.6.2",
2019-09-25 21:39:48 +08:00
"pem": "1.14.3",
"pwnedpasswords": "1.0.4",
2019-09-25 21:39:48 +08:00
"qrcode": "1.4.2",
2019-08-07 16:41:49 +08:00
"restify": "8.4.0",
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",
"uuid": "3.3.3",
2019-01-25 21:19:51 +08:00
"wild-config": "1.4.0",
"yargs": "14.0.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
}