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",
|
2019-06-14 09:17:25 +00:00
|
|
|
"test:lint": "eslint --ignore-pattern \"**/*.min.js\" 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",
|
2019-08-09 12:29:36 +00:00
|
|
|
"release:archive": "zip -rq release.zip package.json package-lock.json node_modules/ *.js src/ config/ locales/"
|
2016-05-25 14:13:49 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2019-03-02 11:12:25 +00:00
|
|
|
"co-body": "6.0.0",
|
2019-05-27 12:31:22 +00:00
|
|
|
"config": "3.1.0",
|
2019-03-02 11:12:25 +00:00
|
|
|
"koa": "2.7.0",
|
2019-06-17 15:20:41 +00:00
|
|
|
"koa-ejs": "4.2.0",
|
|
|
|
"koa-locales": "1.12.0",
|
2019-03-02 11:12:25 +00:00
|
|
|
"koa-router": "7.4.0",
|
|
|
|
"koa-static": "5.0.0",
|
2019-06-17 15:20:41 +00:00
|
|
|
"mongodb": "3.2.7",
|
2019-05-27 12:31:22 +00:00
|
|
|
"nodemailer": "6.2.1",
|
2019-06-17 15:20:41 +00:00
|
|
|
"openpgp": "4.5.3",
|
2019-03-02 11:12:25 +00:00
|
|
|
"winston": "3.2.1",
|
|
|
|
"winston-papertrail": "1.0.5"
|
2016-05-25 14:13:49 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2019-06-17 15:20:41 +00:00
|
|
|
"bootstrap": "^3.4.1",
|
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-05-27 12:31:22 +00:00
|
|
|
"eslint": "^5.16.0",
|
2019-06-17 15:20:41 +00:00
|
|
|
"jquery": "^3.4.1",
|
2019-05-27 12:31:22 +00:00
|
|
|
"mocha": "^6.1.4",
|
|
|
|
"sinon": "^7.3.2",
|
|
|
|
"supertest": "^4.0.2"
|
2016-05-25 14:13:49 +00:00
|
|
|
}
|
|
|
|
}
|