2016-05-25 14:13:49 +00:00
|
|
|
{
|
|
|
|
"name": "mailvelope-keyserver",
|
2017-08-14 11:27:21 +00:00
|
|
|
"version": "2.0.0",
|
2016-05-25 14:13:49 +00:00
|
|
|
"license": "AGPL-3.0",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/mailvelope/keyserver.git"
|
|
|
|
},
|
|
|
|
"engines": {
|
2017-08-14 11:27:21 +00:00
|
|
|
"node": ">=8"
|
2016-05-25 14:13:49 +00:00
|
|
|
},
|
|
|
|
"scripts": {
|
2017-08-18 13:36:55 +00:00
|
|
|
"start": "node index.js",
|
|
|
|
"test": "npm run test:lint && npm run test:unit && npm run test:integration",
|
2017-08-15 07:22:15 +00:00
|
|
|
"test:lint": "eslint config src test *.js",
|
2017-01-21 11:30:26 +00:00
|
|
|
"test:unit": "mocha --opts test/mocha.opts ./test/unit/",
|
2017-08-14 11:27:21 +00:00
|
|
|
"test:integration": "mocha --opts test/mocha.opts ./test/integration",
|
|
|
|
"release": "npm run release:install && npm run release:archive",
|
|
|
|
"release:install": "rm -rf node_modules/ && npm install --production",
|
|
|
|
"release:archive": "zip -rq release.zip package.json package-lock.json node_modules/ *.js src/ config/"
|
2016-05-25 14:13:49 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2016-05-27 17:57:48 +00:00
|
|
|
"addressparser": "^1.0.1",
|
2017-08-27 08:32:25 +00:00
|
|
|
"co-body": "^5.1.1",
|
2016-05-29 14:52:28 +00:00
|
|
|
"config": "^1.20.4",
|
2017-08-16 03:49:43 +00:00
|
|
|
"koa": "^2.3.0",
|
|
|
|
"koa-router": "^7.2.1",
|
|
|
|
"koa-static": "^4.0.1",
|
2017-08-14 03:57:55 +00:00
|
|
|
"mongodb": "^2.2.31",
|
2016-05-27 17:57:48 +00:00
|
|
|
"nodemailer": "^2.4.2",
|
2016-06-02 14:19:54 +00:00
|
|
|
"nodemailer-openpgp": "^1.0.2",
|
2017-08-18 10:01:34 +00:00
|
|
|
"openpgp": "^2.3.0",
|
2017-08-18 10:04:43 +00:00
|
|
|
"winston": "^2.3.1",
|
|
|
|
"winston-papertrail": "^1.0.5"
|
2016-05-25 14:13:49 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2017-08-05 07:58:26 +00:00
|
|
|
"chai": "^4.1.1",
|
2017-08-15 07:22:15 +00:00
|
|
|
"eslint": "^4.4.1",
|
2017-10-17 09:16:24 +00:00
|
|
|
"mocha": "^3.2.0",
|
2017-08-16 09:39:55 +00:00
|
|
|
"sinon": "^1.17.4",
|
2017-01-30 00:24:15 +00:00
|
|
|
"supertest": "^3.0.0"
|
2017-08-14 04:18:16 +00:00
|
|
|
},
|
|
|
|
"greenkeeper": {
|
|
|
|
"ignore": [
|
2017-08-16 09:39:55 +00:00
|
|
|
"nodemailer",
|
|
|
|
"sinon"
|
2017-08-14 04:18:16 +00:00
|
|
|
]
|
2016-05-25 14:13:49 +00:00
|
|
|
}
|
|
|
|
}
|