keyserver/package.json

51 lines
1.4 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_ENV=development} && node index.js",
"test": ": ${NODE_ENV=development} && 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": "^4.6.0",
"co-body": "^5.1.1",
2016-05-29 14:52:28 +00:00
"config": "^1.20.4",
"koa": "^1.2.0",
2017-01-20 19:17:50 +00:00
"koa-router": "^5.4.0",
2016-06-10 23:06:14 +00:00
"koa-static": "^2.0.0",
2017-08-14 03:57:55 +00:00
"mongodb": "^2.2.31",
"nodemailer": "^2.4.2",
"nodemailer-openpgp": "^1.0.2",
"npmlog": "^4.0.2",
"openpgp": "^2.3.0"
2016-05-25 14:13:49 +00:00
},
"devDependencies": {
"chai": "^4.1.1",
2016-05-25 14:13:49 +00:00
"co-mocha": "^1.1.2",
"eslint": "^4.4.1",
"mocha": "^3.2.0",
"sinon": "^1.17.4",
"supertest": "^3.0.0"
},
"greenkeeper": {
"ignore": [
"nodemailer",
"sinon"
]
2016-05-25 14:13:49 +00:00
}
}