keyserver/package.json

50 lines
1.3 KiB
JSON
Raw Normal View History

2016-05-25 14:13:49 +00:00
{
"name": "mailvelope-keyserver",
"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": {
"node": ">=8"
2016-05-25 14:13:49 +00:00
},
"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",
2017-01-21 11:30:26 +00:00
"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/"
2016-05-25 14:13:49 +00:00
},
"dependencies": {
"addressparser": "^1.0.1",
"co-body": "^6.0.0",
"config": "^3.0.1",
"ejs": "^2.6.1",
"email-templates": "^5.0.3",
"koa": "^2.3.0",
"koa-router": "^7.2.1",
"koa-static": "^5.0.0",
"mongodb": "^3.1.13",
"nodemailer": "^5.1.1",
"openpgp": "^4.4.6",
"winston": "^3.2.1",
2017-08-18 10:04:43 +00:00
"winston-papertrail": "^1.0.5"
2016-05-25 14:13:49 +00:00
},
"devDependencies": {
"chai": "^4.1.1",
"eslint": "^5.13.0",
"mocha": "^5.2.0",
"sinon": "^7.2.3",
"supertest": "^3.0.0"
},
"greenkeeper": {
"ignore": [
"sinon"
]
2016-05-25 14:13:49 +00:00
}
}