2016-05-25 14:13:49 +00:00
|
|
|
{
|
|
|
|
"name": "mailvelope-keyserver",
|
2019-03-04 17:28:56 +00:00
|
|
|
"version": "3.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": {
|
2019-03-02 11:12:25 +00:00
|
|
|
"node": ">=10",
|
|
|
|
"npm": ">=6"
|
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/",
|
2019-02-08 16:04:28 +00:00
|
|
|
"test:integration": "mocha --exit --opts test/mocha.opts ./test/integration",
|
2017-08-14 11:27:21 +00:00
|
|
|
"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": {
|
2019-03-02 11:12:25 +00:00
|
|
|
"addressparser": "1.0.1",
|
|
|
|
"co-body": "6.0.0",
|
|
|
|
"config": "3.0.1",
|
|
|
|
"koa": "2.7.0",
|
|
|
|
"koa-router": "7.4.0",
|
|
|
|
"koa-static": "5.0.0",
|
|
|
|
"mongodb": "3.1.13",
|
|
|
|
"nodemailer": "5.1.1",
|
|
|
|
"openpgp": "4.4.9",
|
|
|
|
"winston": "3.2.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",
|
2019-02-08 16:04:28 +00:00
|
|
|
"chai-as-promised": "^7.1.1",
|
2019-03-02 11:12:25 +00:00
|
|
|
"eslint": "^5.15.0",
|
2019-02-07 12:53:49 +00:00
|
|
|
"mocha": "^5.2.0",
|
2019-03-02 11:12:25 +00:00
|
|
|
"sinon": "^7.2.6",
|
2017-01-30 00:24:15 +00:00
|
|
|
"supertest": "^3.0.0"
|
2016-05-25 14:13:49 +00:00
|
|
|
}
|
|
|
|
}
|