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",
|
2021-05-08 16:00:15 +00:00
|
|
|
"test:unit": "mocha --config test/.mocharc.js ./test/unit/",
|
|
|
|
"test:integration": "mocha --config test/.mocharc.js ./test/integration",
|
2017-08-14 11:27:21 +00:00
|
|
|
"release": "npm run release:install && npm run release:archive",
|
2019-08-09 13:12:27 +00:00
|
|
|
"release:install": "rm -rf node_modules/ && npm ci --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": {
|
2021-05-08 16:00:15 +00:00
|
|
|
"co-body": "6.1.0",
|
|
|
|
"config": "3.3.6",
|
|
|
|
"koa": "2.13.1",
|
|
|
|
"koa-ejs": "4.3.0",
|
2019-06-17 15:20:41 +00:00
|
|
|
"koa-locales": "1.12.0",
|
2021-05-08 16:00:15 +00:00
|
|
|
"koa-router": "10.0.0",
|
2019-03-02 11:12:25 +00:00
|
|
|
"koa-static": "5.0.0",
|
2021-05-08 16:00:15 +00:00
|
|
|
"mongodb": "3.6.6",
|
|
|
|
"nodemailer": "6.6.0",
|
2019-08-09 12:45:50 +00:00
|
|
|
"openpgp": "4.5.5",
|
2021-05-08 16:00:15 +00:00
|
|
|
"winston": "3.3.3",
|
2019-03-02 11:12:25 +00:00
|
|
|
"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",
|
2021-05-08 16:00:15 +00:00
|
|
|
"chai": "^4.3.4",
|
2019-02-08 16:04:28 +00:00
|
|
|
"chai-as-promised": "^7.1.1",
|
2021-05-08 16:00:15 +00:00
|
|
|
"eslint": "^7.26.0",
|
|
|
|
"jquery": "^3.6.0",
|
|
|
|
"mocha": "^8.4.0",
|
|
|
|
"sinon": "^10.0.0",
|
|
|
|
"supertest": "^6.1.3"
|
2016-05-25 14:13:49 +00:00
|
|
|
}
|
|
|
|
}
|