656aa9b6ed
This reverts commit 190738fd0d
.
50 lines
1.3 KiB
JSON
50 lines
1.3 KiB
JSON
{
|
|
"name": "mailvelope-keyserver",
|
|
"version": "2.0.0",
|
|
"license": "AGPL-3.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/mailvelope/keyserver.git"
|
|
},
|
|
"engines": {
|
|
"node": ">=8"
|
|
},
|
|
"scripts": {
|
|
"start": "node index.js",
|
|
"test": "npm run test:lint && npm run test:unit && npm run test:integration",
|
|
"test:lint": "eslint config src test *.js",
|
|
"test:unit": "mocha --opts test/mocha.opts ./test/unit/",
|
|
"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/"
|
|
},
|
|
"dependencies": {
|
|
"addressparser": "^1.0.1",
|
|
"co-body": "^5.1.1",
|
|
"config": "^1.20.4",
|
|
"koa": "^2.3.0",
|
|
"koa-router": "^7.2.1",
|
|
"koa-static": "^4.0.1",
|
|
"mongodb": "^2.2.31",
|
|
"nodemailer": "^2.4.2",
|
|
"nodemailer-openpgp": "^1.0.2",
|
|
"openpgp": "^2.3.0",
|
|
"winston": "^2.3.1",
|
|
"winston-papertrail": "^1.0.5"
|
|
},
|
|
"devDependencies": {
|
|
"chai": "^4.1.1",
|
|
"eslint": "^4.4.1",
|
|
"mocha": "^3.2.0",
|
|
"sinon": "^1.17.4",
|
|
"supertest": "^3.0.0"
|
|
},
|
|
"greenkeeper": {
|
|
"ignore": [
|
|
"nodemailer",
|
|
"sinon"
|
|
]
|
|
}
|
|
}
|