48 lines
1.4 KiB
JSON
48 lines
1.4 KiB
JSON
{
|
|
"name": "mailvelope-keyserver",
|
|
"version": "3.0.0",
|
|
"license": "AGPL-3.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/mailvelope/keyserver.git"
|
|
},
|
|
"engines": {
|
|
"node": ">=10",
|
|
"npm": ">=6"
|
|
},
|
|
"scripts": {
|
|
"start": "node index.js",
|
|
"test": "npm run test:lint && npm run test:unit && npm run test:integration",
|
|
"test:lint": "eslint --ignore-pattern \"**/*.min.js\" config src test *.js",
|
|
"test:unit": "mocha --config test/.mocharc.js ./test/unit/",
|
|
"test:integration": "mocha --config test/.mocharc.js ./test/integration",
|
|
"release": "npm run release:install && npm run release:archive",
|
|
"release:install": "rm -rf node_modules/ && npm ci --production",
|
|
"release:archive": "zip -rq release.zip package.json package-lock.json node_modules/ *.js src/ config/ locales/"
|
|
},
|
|
"dependencies": {
|
|
"co-body": "6.1.0",
|
|
"config": "3.3.6",
|
|
"koa": "2.13.1",
|
|
"koa-ejs": "4.3.0",
|
|
"koa-locales": "1.12.0",
|
|
"koa-router": "10.0.0",
|
|
"koa-static": "5.0.0",
|
|
"mongodb": "3.6.6",
|
|
"nodemailer": "6.6.0",
|
|
"openpgp": "4.5.5",
|
|
"winston": "3.3.3",
|
|
"winston-papertrail": "1.0.5"
|
|
},
|
|
"devDependencies": {
|
|
"bootstrap": "^3.4.1",
|
|
"chai": "^4.3.4",
|
|
"chai-as-promised": "^7.1.1",
|
|
"eslint": "^7.26.0",
|
|
"jquery": "^3.6.0",
|
|
"mocha": "^8.4.0",
|
|
"sinon": "^10.0.0",
|
|
"supertest": "^6.1.3"
|
|
}
|
|
}
|